@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
@@ -9,8 +9,8 @@
9
9
  "version": "1.59.0",
10
10
  "dependencies": {
11
11
  "@salesforce/agentforce-conversation-client": "^9.4.0",
12
- "@salesforce/platform-sdk": "^10.19.0",
13
- "@salesforce/ui-bundle": "^10.19.0",
12
+ "@salesforce/platform-sdk": "^10.24.0",
13
+ "@salesforce/ui-bundle": "^10.24.0",
14
14
  "@tailwindcss/vite": "^4.1.17",
15
15
  "class-variance-authority": "^0.7.1",
16
16
  "clsx": "^2.1.1",
@@ -35,8 +35,8 @@
35
35
  "@graphql-eslint/eslint-plugin": "^4.1.0",
36
36
  "@graphql-tools/utils": "^11.0.0",
37
37
  "@playwright/test": "^1.49.0",
38
- "@salesforce/graphiti": "^10.19.0",
39
- "@salesforce/vite-plugin-ui-bundle": "^10.19.0",
38
+ "@salesforce/graphiti": "^10.24.0",
39
+ "@salesforce/vite-plugin-ui-bundle": "^10.24.0",
40
40
  "@testing-library/jest-dom": "^6.6.3",
41
41
  "@testing-library/react": "^16.1.0",
42
42
  "@testing-library/user-event": "^14.5.2",
@@ -2155,13 +2155,13 @@
2155
2155
  }
2156
2156
  },
2157
2157
  "node_modules/@graphql-tools/apollo-engine-loader": {
2158
- "version": "8.0.30",
2159
- "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.30.tgz",
2160
- "integrity": "sha512-hUydKGGECrWloERMmfoMzHZi12X99AM9geCGF5XVsv4iMRl/Iyuet24th4kC9bZ8MlAdCwAwtUsCyv9uRfYwSA==",
2158
+ "version": "8.0.31",
2159
+ "resolved": "https://registry.npmjs.org/@graphql-tools/apollo-engine-loader/-/apollo-engine-loader-8.0.31.tgz",
2160
+ "integrity": "sha512-ToqJ24QuNtGPG7XDQP7KWFMFacz7/Q7FtsNhWBNffljSloG6w6UrvAf85Ono+8d32OI5Es8tKhn2K1IBtzhj4Q==",
2161
2161
  "dev": true,
2162
2162
  "license": "MIT",
2163
2163
  "dependencies": {
2164
- "@graphql-tools/utils": "^11.1.0",
2164
+ "@graphql-tools/utils": "^11.1.1",
2165
2165
  "@whatwg-node/fetch": "^0.10.13",
2166
2166
  "sync-fetch": "0.6.0",
2167
2167
  "tslib": "^2.4.0"
@@ -2193,14 +2193,14 @@
2193
2193
  }
2194
2194
  },
2195
2195
  "node_modules/@graphql-tools/code-file-loader": {
2196
- "version": "8.1.32",
2197
- "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.32.tgz",
2198
- "integrity": "sha512-gR5mNQjn0BugDL8a4A+ovS2KEvU52RNOGnbwiq9oWAEHiSv7iqJu77bpWARTzlE1ZFPK5MSQe9218+1t5PbXmQ==",
2196
+ "version": "8.1.33",
2197
+ "resolved": "https://registry.npmjs.org/@graphql-tools/code-file-loader/-/code-file-loader-8.1.33.tgz",
2198
+ "integrity": "sha512-FKMZ6ktSNeewLfjIkW96Kw73NBLkK37C6Gh1kv5QtJy/tumuZYt8uTq9bM3P1Y82OscGyVC6/4V12TVaEraYCw==",
2199
2199
  "dev": true,
2200
2200
  "license": "MIT",
2201
2201
  "dependencies": {
2202
- "@graphql-tools/graphql-tag-pluck": "8.3.31",
2203
- "@graphql-tools/utils": "^11.1.0",
2202
+ "@graphql-tools/graphql-tag-pluck": "8.3.32",
2203
+ "@graphql-tools/utils": "^11.1.1",
2204
2204
  "globby": "^11.0.3",
2205
2205
  "tslib": "^2.4.0",
2206
2206
  "unixify": "^1.0.0"
@@ -2253,13 +2253,13 @@
2253
2253
  }
2254
2254
  },
2255
2255
  "node_modules/@graphql-tools/executor": {
2256
- "version": "1.5.3",
2257
- "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.3.tgz",
2258
- "integrity": "sha512-mgBFC0bsrZPZLu9EnydpMnAuQ8Iiq0CEbUcsmvXsm2/iYektGHDN/+bmb7hicA6dWZtdPfklYJmr21WD0GnOfA==",
2256
+ "version": "1.5.4",
2257
+ "resolved": "https://registry.npmjs.org/@graphql-tools/executor/-/executor-1.5.4.tgz",
2258
+ "integrity": "sha512-6CdAENBTtVIXmOoJWJvYNFpE0b8zzwAMZ+VGkyLY2QT5dRGCjZTnGpDIFtxQa8IvRjnPpY3iUptgPlqTLOw3VA==",
2259
2259
  "dev": true,
2260
2260
  "license": "MIT",
2261
2261
  "dependencies": {
2262
- "@graphql-tools/utils": "^11.1.0",
2262
+ "@graphql-tools/utils": "^11.1.1",
2263
2263
  "@graphql-typed-document-node/core": "^3.2.0",
2264
2264
  "@repeaterjs/repeater": "^3.0.4",
2265
2265
  "@whatwg-node/disposablestack": "^0.0.6",
@@ -2337,17 +2337,17 @@
2337
2337
  }
2338
2338
  },
2339
2339
  "node_modules/@graphql-tools/executor-legacy-ws": {
2340
- "version": "1.1.28",
2341
- "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.28.tgz",
2342
- "integrity": "sha512-O4uj93GG9iUb3s32eyhUohvyfA8mLhN8FvGzEdK628hFQPhZN75yurtVFrR08DHex71mQ3wYCCFkErpwdJbDDQ==",
2340
+ "version": "1.1.29",
2341
+ "resolved": "https://registry.npmjs.org/@graphql-tools/executor-legacy-ws/-/executor-legacy-ws-1.1.29.tgz",
2342
+ "integrity": "sha512-Z8fBtK8Uyp1Lyt3UgRu6BPx1fL3wvnGiRS1Wbb+nWQuwGacXDS8Pfr2e5BmV3OCHG2prbkJMr+caVFMWCbt9ug==",
2343
2343
  "dev": true,
2344
2344
  "license": "MIT",
2345
2345
  "dependencies": {
2346
- "@graphql-tools/utils": "^11.1.0",
2346
+ "@graphql-tools/utils": "^11.1.1",
2347
2347
  "@types/ws": "^8.0.0",
2348
2348
  "isomorphic-ws": "^5.0.0",
2349
2349
  "tslib": "^2.4.0",
2350
- "ws": "^8.20.0"
2350
+ "ws": "^8.21.0"
2351
2351
  },
2352
2352
  "engines": {
2353
2353
  "node": ">=16.0.0"
@@ -2357,14 +2357,14 @@
2357
2357
  }
2358
2358
  },
2359
2359
  "node_modules/@graphql-tools/git-loader": {
2360
- "version": "8.0.36",
2361
- "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.36.tgz",
2362
- "integrity": "sha512-PDDakesRu8FJYHJLf9/gkTweh8M19Bymz9i+vOlk9OTs9XmNcCqKM+1S610KX2AodvuBFz/xbesjTtTJIppLPg==",
2360
+ "version": "8.0.37",
2361
+ "resolved": "https://registry.npmjs.org/@graphql-tools/git-loader/-/git-loader-8.0.37.tgz",
2362
+ "integrity": "sha512-J1GNGyjb8inHWXt4F9n5flmaiwhYP9WcwTWBs/fSeXikppcz+yGOO4BM0xx9BOEROxKW5fDM6UT9MdRCcs++zw==",
2363
2363
  "dev": true,
2364
2364
  "license": "MIT",
2365
2365
  "dependencies": {
2366
- "@graphql-tools/graphql-tag-pluck": "8.3.31",
2367
- "@graphql-tools/utils": "^11.1.0",
2366
+ "@graphql-tools/graphql-tag-pluck": "8.3.32",
2367
+ "@graphql-tools/utils": "^11.1.1",
2368
2368
  "is-glob": "4.0.3",
2369
2369
  "micromatch": "^4.0.8",
2370
2370
  "tslib": "^2.4.0",
@@ -2378,15 +2378,15 @@
2378
2378
  }
2379
2379
  },
2380
2380
  "node_modules/@graphql-tools/github-loader": {
2381
- "version": "9.1.2",
2382
- "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.2.tgz",
2383
- "integrity": "sha512-jhRJncj9Wkr1Cd8Mo3QI2oG6fTw5ILr1/OXcHIqx744NBj8pPwQBXmQzZqh7MXxbekl2EAcum7SJIjq1HpYcPA==",
2381
+ "version": "9.1.3",
2382
+ "resolved": "https://registry.npmjs.org/@graphql-tools/github-loader/-/github-loader-9.1.3.tgz",
2383
+ "integrity": "sha512-sKxjy4zZ12ci0y4Wd/rl7odyl7dN1EU6Ttx8nhHHZs+VXaaasNoAni2pOrll8IR1wlYWhAe0hLBQDWblp7gWiw==",
2384
2384
  "dev": true,
2385
2385
  "license": "MIT",
2386
2386
  "dependencies": {
2387
- "@graphql-tools/executor-http": "^3.2.1",
2388
- "@graphql-tools/graphql-tag-pluck": "^8.3.31",
2389
- "@graphql-tools/utils": "^11.1.0",
2387
+ "@graphql-tools/executor-http": "^3.3.0",
2388
+ "@graphql-tools/graphql-tag-pluck": "^8.3.32",
2389
+ "@graphql-tools/utils": "^11.1.1",
2390
2390
  "@whatwg-node/fetch": "^0.10.13",
2391
2391
  "@whatwg-node/promise-helpers": "^1.0.0",
2392
2392
  "sync-fetch": "0.6.0",
@@ -2400,14 +2400,14 @@
2400
2400
  }
2401
2401
  },
2402
2402
  "node_modules/@graphql-tools/graphql-file-loader": {
2403
- "version": "8.1.14",
2404
- "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.14.tgz",
2405
- "integrity": "sha512-CfAcsSEVkkHfEXLFzrd5rUYpcQEGWNV8lfc1Tb1p5m9HnYICzDDH08I5V33iMrEDza3GuujjjRBYqplBkqwIow==",
2403
+ "version": "8.1.15",
2404
+ "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-file-loader/-/graphql-file-loader-8.1.15.tgz",
2405
+ "integrity": "sha512-ehK6IuX1G2Rc1uVaEUE/M+D7JAGnBux+Ia/BPL92WNcTYBcvYZfFPuR9JA5Fn1wOxplRiRFyERzQEMltZF0nhg==",
2406
2406
  "dev": true,
2407
2407
  "license": "MIT",
2408
2408
  "dependencies": {
2409
- "@graphql-tools/import": "^7.1.14",
2410
- "@graphql-tools/utils": "^11.1.0",
2409
+ "@graphql-tools/import": "^7.1.15",
2410
+ "@graphql-tools/utils": "^11.1.1",
2411
2411
  "globby": "^11.0.3",
2412
2412
  "tslib": "^2.4.0",
2413
2413
  "unixify": "^1.0.0"
@@ -2420,18 +2420,18 @@
2420
2420
  }
2421
2421
  },
2422
2422
  "node_modules/@graphql-tools/graphql-tag-pluck": {
2423
- "version": "8.3.31",
2424
- "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.31.tgz",
2425
- "integrity": "sha512-ema2RRPZGj8TKruNElyDBHVCNFMxioGIVfLBuiA+GdfmRGt95b/i7Uksnj4EwItA6MCmhxokxZoa/fl6mJt3tw==",
2423
+ "version": "8.3.32",
2424
+ "resolved": "https://registry.npmjs.org/@graphql-tools/graphql-tag-pluck/-/graphql-tag-pluck-8.3.32.tgz",
2425
+ "integrity": "sha512-5CuTW3kSv7fQ6gsaGS/A+tL3wXeLBN1vMQF5MDFhyv+GIpMYdOzbcaGrLIppxFam7IAu+ZUri8s6fxsdreL4Lw==",
2426
2426
  "dev": true,
2427
2427
  "license": "MIT",
2428
2428
  "dependencies": {
2429
- "@babel/core": "^7.28.6",
2430
- "@babel/parser": "^7.29.2",
2429
+ "@babel/core": "^7.29.7",
2430
+ "@babel/parser": "^7.29.3",
2431
2431
  "@babel/plugin-syntax-import-assertions": "^7.26.0",
2432
2432
  "@babel/traverse": "^7.26.10",
2433
2433
  "@babel/types": "^7.26.10",
2434
- "@graphql-tools/utils": "^11.1.0",
2434
+ "@graphql-tools/utils": "^11.1.1",
2435
2435
  "tslib": "^2.4.0"
2436
2436
  },
2437
2437
  "engines": {
@@ -2442,13 +2442,13 @@
2442
2442
  }
2443
2443
  },
2444
2444
  "node_modules/@graphql-tools/import": {
2445
- "version": "7.1.14",
2446
- "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.14.tgz",
2447
- "integrity": "sha512-aqLcu04aEidszbXM6M0PWWL8bP17eX9sxXwjYWpglLvIRd4NFqb3C9QzBY8pleqXNMtWqXktlm9BQjevgSrirQ==",
2445
+ "version": "7.1.15",
2446
+ "resolved": "https://registry.npmjs.org/@graphql-tools/import/-/import-7.1.15.tgz",
2447
+ "integrity": "sha512-uzMakKZsbKzfiJhKIjf4Hk2kft5rQGch+VITNURVGTZ3t6S4nek++EqeGFlJAR7V2vc2/Lqwpw2vCTDFpx+oZA==",
2448
2448
  "dev": true,
2449
2449
  "license": "MIT",
2450
2450
  "dependencies": {
2451
- "@graphql-tools/utils": "^11.1.0",
2451
+ "@graphql-tools/utils": "^11.1.1",
2452
2452
  "resolve-from": "5.0.0",
2453
2453
  "tslib": "^2.4.0"
2454
2454
  },
@@ -2460,13 +2460,13 @@
2460
2460
  }
2461
2461
  },
2462
2462
  "node_modules/@graphql-tools/json-file-loader": {
2463
- "version": "8.0.28",
2464
- "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.28.tgz",
2465
- "integrity": "sha512-qgCsSkPArnjlNkcYpgGKiXxCTNkrAT9E+l1LhR+Por2jTlKBBeZ8stortkQ/PNDDjuL0WPrLQmHKhNPHabnB3A==",
2463
+ "version": "8.0.29",
2464
+ "resolved": "https://registry.npmjs.org/@graphql-tools/json-file-loader/-/json-file-loader-8.0.29.tgz",
2465
+ "integrity": "sha512-2fZzOmffPOg/B0nCcGRS2MMR6d73Dh5vv9zC0xIoX9Ju3oXhXpdbvSCTvNXdt3ifXP++CjfAVunq0x9PL6Uekg==",
2466
2466
  "dev": true,
2467
2467
  "license": "MIT",
2468
2468
  "dependencies": {
2469
- "@graphql-tools/utils": "^11.1.0",
2469
+ "@graphql-tools/utils": "^11.1.1",
2470
2470
  "globby": "^11.0.3",
2471
2471
  "tslib": "^2.4.0",
2472
2472
  "unixify": "^1.0.0"
@@ -2479,14 +2479,14 @@
2479
2479
  }
2480
2480
  },
2481
2481
  "node_modules/@graphql-tools/load": {
2482
- "version": "8.1.10",
2483
- "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.10.tgz",
2484
- "integrity": "sha512-hjcvfEFtwtc8vGi46wtpmGWadNzfEhzbjqinyFIZuIZPlR4aYdWQtqWtY/RMM4Ew4t1USkMNm6xrqC2TH1vCSA==",
2482
+ "version": "8.1.11",
2483
+ "resolved": "https://registry.npmjs.org/@graphql-tools/load/-/load-8.1.11.tgz",
2484
+ "integrity": "sha512-6J0PmYecHnUF6lI5QhtTXj7JYzyFi5gvgER7nS2wqLpjdOfOI+jsO1/gbXF3iS6i/ABulGBh7eyr0nmDNNwlyQ==",
2485
2485
  "dev": true,
2486
2486
  "license": "MIT",
2487
2487
  "dependencies": {
2488
- "@graphql-tools/schema": "^10.0.33",
2489
- "@graphql-tools/utils": "^11.1.0",
2488
+ "@graphql-tools/schema": "^10.0.34",
2489
+ "@graphql-tools/utils": "^11.1.1",
2490
2490
  "p-limit": "3.1.0",
2491
2491
  "tslib": "^2.4.0"
2492
2492
  },
@@ -2498,13 +2498,13 @@
2498
2498
  }
2499
2499
  },
2500
2500
  "node_modules/@graphql-tools/merge": {
2501
- "version": "9.1.9",
2502
- "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.1.9.tgz",
2503
- "integrity": "sha512-iHUWNjRHeQRYdgIMIuChThOwoKzA9vrzYeslgfBo5eUYEyHGZCoDPjAavssoYXLwstYt1dZj2J22jSzc2DrN0Q==",
2501
+ "version": "9.1.10",
2502
+ "resolved": "https://registry.npmjs.org/@graphql-tools/merge/-/merge-9.1.10.tgz",
2503
+ "integrity": "sha512-CsUCcPXv/HMWpPZ/xoOioSWFuAaAsGGPIdqQbjDv9X1sHGs0muQRW5FK7vUBN4OH/D7aPqpiHvKmRsrHz+ScuQ==",
2504
2504
  "dev": true,
2505
2505
  "license": "MIT",
2506
2506
  "dependencies": {
2507
- "@graphql-tools/utils": "^11.1.0",
2507
+ "@graphql-tools/utils": "^11.1.1",
2508
2508
  "tslib": "^2.4.0"
2509
2509
  },
2510
2510
  "engines": {
@@ -2531,14 +2531,14 @@
2531
2531
  }
2532
2532
  },
2533
2533
  "node_modules/@graphql-tools/relay-operation-optimizer": {
2534
- "version": "7.1.4",
2535
- "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.4.tgz",
2536
- "integrity": "sha512-cwOD/GEo/R//1uGCP0/urIxsMFoUgzkJVyMt9BDM2HhQhU6rSgH5l6lFukAFTJyPJVdyeOdYm2i0Jj5vYWbHTw==",
2534
+ "version": "7.1.5",
2535
+ "resolved": "https://registry.npmjs.org/@graphql-tools/relay-operation-optimizer/-/relay-operation-optimizer-7.1.5.tgz",
2536
+ "integrity": "sha512-B3nscUeWT3wYucrvbJcmU8sAVlkCp+WhZ5wVlK432AfnLjDYUNLobHYzQnnU7tT5NncMXusPiS8K4YG4iUPjrw==",
2537
2537
  "dev": true,
2538
2538
  "license": "MIT",
2539
2539
  "dependencies": {
2540
2540
  "@ardatan/relay-compiler": "^13.0.1",
2541
- "@graphql-tools/utils": "^11.1.0",
2541
+ "@graphql-tools/utils": "^11.1.1",
2542
2542
  "tslib": "^2.4.0"
2543
2543
  },
2544
2544
  "engines": {
@@ -2549,14 +2549,14 @@
2549
2549
  }
2550
2550
  },
2551
2551
  "node_modules/@graphql-tools/schema": {
2552
- "version": "10.0.33",
2553
- "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.33.tgz",
2554
- "integrity": "sha512-O6P3RIftO0jafnSsFAqpjurUuUxJ43s/AdPVLQsBkI6y4Ic/tKm4C1Qm1KKQsCDTOxXPJClh/v3g7k7yLKCFBQ==",
2552
+ "version": "10.0.34",
2553
+ "resolved": "https://registry.npmjs.org/@graphql-tools/schema/-/schema-10.0.34.tgz",
2554
+ "integrity": "sha512-wGCiUuwqDtlXtDvQ00CI+4u0pd3yd/xGGYOiwc9L63KJZwSXdrUv8ajpJ5lMalawc0mpjcCB0ljEQSeUhajuag==",
2555
2555
  "dev": true,
2556
2556
  "license": "MIT",
2557
2557
  "dependencies": {
2558
- "@graphql-tools/merge": "^9.1.9",
2559
- "@graphql-tools/utils": "^11.1.0",
2558
+ "@graphql-tools/merge": "^9.1.10",
2559
+ "@graphql-tools/utils": "^11.1.1",
2560
2560
  "tslib": "^2.4.0"
2561
2561
  },
2562
2562
  "engines": {
@@ -2567,16 +2567,16 @@
2567
2567
  }
2568
2568
  },
2569
2569
  "node_modules/@graphql-tools/url-loader": {
2570
- "version": "9.1.2",
2571
- "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.2.tgz",
2572
- "integrity": "sha512-pVSiPrfWQKb3jq23Pl7EjbB2uv3tgZLnWo/axkmg4itAEZ5s/vV/jKa8P1HZzUnSVUTR+8tcEZVeNsUbzFCbkg==",
2570
+ "version": "9.1.3",
2571
+ "resolved": "https://registry.npmjs.org/@graphql-tools/url-loader/-/url-loader-9.1.3.tgz",
2572
+ "integrity": "sha512-i8rZVsXzYe8klXbIUXxRkMK5bHloM9JyFnHzSYdzciRPxym8QzDnL3QY4eZjS4luDb2DdJ8Ak0G8ghJ0BSVTVw==",
2573
2573
  "dev": true,
2574
2574
  "license": "MIT",
2575
2575
  "dependencies": {
2576
2576
  "@graphql-tools/executor-graphql-ws": "^3.1.4",
2577
- "@graphql-tools/executor-http": "^3.2.1",
2578
- "@graphql-tools/executor-legacy-ws": "^1.1.28",
2579
- "@graphql-tools/utils": "^11.1.0",
2577
+ "@graphql-tools/executor-http": "^3.3.0",
2578
+ "@graphql-tools/executor-legacy-ws": "^1.1.29",
2579
+ "@graphql-tools/utils": "^11.1.1",
2580
2580
  "@graphql-tools/wrap": "^11.1.1",
2581
2581
  "@types/ws": "^8.0.0",
2582
2582
  "@whatwg-node/fetch": "^0.10.13",
@@ -2584,7 +2584,7 @@
2584
2584
  "isomorphic-ws": "^5.0.0",
2585
2585
  "sync-fetch": "0.6.0",
2586
2586
  "tslib": "^2.4.0",
2587
- "ws": "^8.20.0"
2587
+ "ws": "^8.21.0"
2588
2588
  },
2589
2589
  "engines": {
2590
2590
  "node": ">=20.0.0"
@@ -2594,9 +2594,9 @@
2594
2594
  }
2595
2595
  },
2596
2596
  "node_modules/@graphql-tools/utils": {
2597
- "version": "11.1.0",
2598
- "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.1.0.tgz",
2599
- "integrity": "sha512-PtFVG4r8Z2LEBSaPYQMusBiB3o6kjLVJyjCLbnWem/SpSuM21v6LTmgpkXfYU1qpBV2UGsFyuEnSJInl8fR1Ag==",
2597
+ "version": "11.1.1",
2598
+ "resolved": "https://registry.npmjs.org/@graphql-tools/utils/-/utils-11.1.1.tgz",
2599
+ "integrity": "sha512-MuWwacINZZV6mX1ZSk6CcV4XVQLsbKBG/hLd0QPhe4GHxjqr2ATjKsnnwlB0TKI+QQvj2U8ewu8WeAzz9kC2Xg==",
2600
2600
  "dev": true,
2601
2601
  "license": "MIT",
2602
2602
  "dependencies": {
@@ -3116,9 +3116,9 @@
3116
3116
  }
3117
3117
  },
3118
3118
  "node_modules/@jsforce/jsforce-node": {
3119
- "version": "3.10.17",
3120
- "resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.17.tgz",
3121
- "integrity": "sha512-gYWiK0Y68dMUTdlPjkF+Bw3r7pmfTbqzs7/6ZChg2Md14NyzXk/usp+y8hHj6vc1SF3s7e6j5OUzUasYF5RJWQ==",
3119
+ "version": "3.10.18",
3120
+ "resolved": "https://registry.npmjs.org/@jsforce/jsforce-node/-/jsforce-node-3.10.18.tgz",
3121
+ "integrity": "sha512-3Nr7ykox18niSpjROR5orfLjuQ+SWoxycx4k6Bu6OTnwT8gjrLSOjkr6qC51ohDnvHGAG75q4h3VCnFrohXjJA==",
3122
3122
  "license": "MIT",
3123
3123
  "dependencies": {
3124
3124
  "@sindresorhus/is": "^4",
@@ -10546,9 +10546,9 @@
10546
10546
  }
10547
10547
  },
10548
10548
  "node_modules/@tailwindcss/node": {
10549
- "version": "4.3.1",
10550
- "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.1.tgz",
10551
- "integrity": "sha512-6NDaqRoAMSXD1mr/RXu0HBvNE9a2n5tHPsxu9XHLws8o4Twes5rBM2205SUUiJ9goAtadrN6xTGX0UDEwp/N4A==",
10549
+ "version": "4.3.2",
10550
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.3.2.tgz",
10551
+ "integrity": "sha512-yWP/sqEcBLaD8JuA6zNwxoYKr75qxTioYwlRwekj5Jr/I5GXnoJfjetH/psLUIv74cYTH2lBUEzBkinthoYcBg==",
10552
10552
  "license": "MIT",
10553
10553
  "dependencies": {
10554
10554
  "@jridgewell/remapping": "^2.3.5",
@@ -10557,36 +10557,36 @@
10557
10557
  "lightningcss": "1.32.0",
10558
10558
  "magic-string": "^0.30.21",
10559
10559
  "source-map-js": "^1.2.1",
10560
- "tailwindcss": "4.3.1"
10560
+ "tailwindcss": "4.3.2"
10561
10561
  }
10562
10562
  },
10563
10563
  "node_modules/@tailwindcss/oxide": {
10564
- "version": "4.3.1",
10565
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.1.tgz",
10566
- "integrity": "sha512-yVPyo8RNkabVr3O2EhHEE0Rewu7YKzc1DhIqfL46LKveFrmu9XbDazNOJY7/GRuvw1h6u3utWnR29H/p5JPlgA==",
10564
+ "version": "4.3.2",
10565
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.3.2.tgz",
10566
+ "integrity": "sha512-z8ZgnzX8gdNoWLBLqBPoh/sjnxkwvf9ZuWjnO0l0yIzbLa5/9S+eC5QxGZKRobVHIC3/1BoMWjHblqWjcgFgag==",
10567
10567
  "license": "MIT",
10568
10568
  "engines": {
10569
10569
  "node": ">= 20"
10570
10570
  },
10571
10571
  "optionalDependencies": {
10572
- "@tailwindcss/oxide-android-arm64": "4.3.1",
10573
- "@tailwindcss/oxide-darwin-arm64": "4.3.1",
10574
- "@tailwindcss/oxide-darwin-x64": "4.3.1",
10575
- "@tailwindcss/oxide-freebsd-x64": "4.3.1",
10576
- "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.1",
10577
- "@tailwindcss/oxide-linux-arm64-gnu": "4.3.1",
10578
- "@tailwindcss/oxide-linux-arm64-musl": "4.3.1",
10579
- "@tailwindcss/oxide-linux-x64-gnu": "4.3.1",
10580
- "@tailwindcss/oxide-linux-x64-musl": "4.3.1",
10581
- "@tailwindcss/oxide-wasm32-wasi": "4.3.1",
10582
- "@tailwindcss/oxide-win32-arm64-msvc": "4.3.1",
10583
- "@tailwindcss/oxide-win32-x64-msvc": "4.3.1"
10572
+ "@tailwindcss/oxide-android-arm64": "4.3.2",
10573
+ "@tailwindcss/oxide-darwin-arm64": "4.3.2",
10574
+ "@tailwindcss/oxide-darwin-x64": "4.3.2",
10575
+ "@tailwindcss/oxide-freebsd-x64": "4.3.2",
10576
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.3.2",
10577
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.3.2",
10578
+ "@tailwindcss/oxide-linux-arm64-musl": "4.3.2",
10579
+ "@tailwindcss/oxide-linux-x64-gnu": "4.3.2",
10580
+ "@tailwindcss/oxide-linux-x64-musl": "4.3.2",
10581
+ "@tailwindcss/oxide-wasm32-wasi": "4.3.2",
10582
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.3.2",
10583
+ "@tailwindcss/oxide-win32-x64-msvc": "4.3.2"
10584
10584
  }
10585
10585
  },
10586
10586
  "node_modules/@tailwindcss/oxide-android-arm64": {
10587
- "version": "4.3.1",
10588
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.1.tgz",
10589
- "integrity": "sha512-SVlyf61g374l5cHyg8x9kf5xmLcOaxvOTsbsqDnSsDJaKOEFZ7GCvi84VAVGpxojYOs1+3K6M0UjXfqPU8vmOQ==",
10587
+ "version": "4.3.2",
10588
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.3.2.tgz",
10589
+ "integrity": "sha512-WHxqIuHpvZ5VtdX6GTl1Ik/Vp2YuN42Et+0CdeaVd/frQ9jAvGmvR8vLT+jk3e8/Q3x8kECB9+R17pgpp2BulA==",
10590
10590
  "cpu": [
10591
10591
  "arm64"
10592
10592
  ],
@@ -10600,9 +10600,9 @@
10600
10600
  }
10601
10601
  },
10602
10602
  "node_modules/@tailwindcss/oxide-darwin-arm64": {
10603
- "version": "4.3.1",
10604
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.1.tgz",
10605
- "integrity": "sha512-hVnWLwv+e/l7c4WKyVtHVrIPvYdqWHjRB3MDIqARynzFtnQg85kmQEFCbV9Ja0VVx4xXTIiDWY60Y7iz/iNoDA==",
10603
+ "version": "4.3.2",
10604
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.3.2.tgz",
10605
+ "integrity": "sha512-GZypeUY/IDJW3877KeM+O67vbXr3MBnbtEL4aYhNErv/JWZhye2vGSWWG9tB6iiqR2MqRNkY8IOUy4NdSZV26w==",
10606
10606
  "cpu": [
10607
10607
  "arm64"
10608
10608
  ],
@@ -10616,9 +10616,9 @@
10616
10616
  }
10617
10617
  },
10618
10618
  "node_modules/@tailwindcss/oxide-darwin-x64": {
10619
- "version": "4.3.1",
10620
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.1.tgz",
10621
- "integrity": "sha512-Cf7abu0WVgbhU7ANgPUnSAvm7nCvMweusHb8FnaHlLfv/Caq4GYaEZg7ZImzzmjx4lIAfuS8q+eLIS7A7IzxIg==",
10619
+ "version": "4.3.2",
10620
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.3.2.tgz",
10621
+ "integrity": "sha512-UIIzmefR6KO1sDU7MzRqAxC8iBpft/VhkGjTjnhoS6k7Z3rQ9wEgA1ODSiyH/tcSYssulNm4Ci3hOeK1jH7ccQ==",
10622
10622
  "cpu": [
10623
10623
  "x64"
10624
10624
  ],
@@ -10632,9 +10632,9 @@
10632
10632
  }
10633
10633
  },
10634
10634
  "node_modules/@tailwindcss/oxide-freebsd-x64": {
10635
- "version": "4.3.1",
10636
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.1.tgz",
10637
- "integrity": "sha512-ZZqzX2Y+GXtXXfqSfpJhDm60OoZfvLHLCgm+J7NVqgHHJjG/m9ugZI77RwTsVd4fnBJuCFP6Ae6kTJb71UdS8g==",
10635
+ "version": "4.3.2",
10636
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.3.2.tgz",
10637
+ "integrity": "sha512-GN+uAmcI6DNspnCDwtOAZrTz6oukJnp337qZvxqCGLd3BHBzJpO0ZbTLRvJNdztOeAmTzewewGIMPb0tk2R4WA==",
10638
10638
  "cpu": [
10639
10639
  "x64"
10640
10640
  ],
@@ -10648,9 +10648,9 @@
10648
10648
  }
10649
10649
  },
10650
10650
  "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
10651
- "version": "4.3.1",
10652
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.1.tgz",
10653
- "integrity": "sha512-/Ah/xik0LaMYfv9DZ0S/t4pBlBNYOcqtRwusjgovHkvT8ixueWCLyJjsaF5kQIckjb4IT8Q6K6p/iPmZMixYgg==",
10651
+ "version": "4.3.2",
10652
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.3.2.tgz",
10653
+ "integrity": "sha512-4ABn7qSbdHRwTiDiuWNegCyb5+2FJ4vKIKc3DmKrvAFw7MU1Lm11dIkTPwUaFdTzc7IsOpDbqBrlh0x6y36U/w==",
10654
10654
  "cpu": [
10655
10655
  "arm"
10656
10656
  ],
@@ -10664,9 +10664,9 @@
10664
10664
  }
10665
10665
  },
10666
10666
  "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
10667
- "version": "4.3.1",
10668
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.1.tgz",
10669
- "integrity": "sha512-gqdFoVJlw444GvpnheZLHmvTzSxI/cOUUh2KSNejQjTcYkW062SVD+En0rUgD+QV91bz1XGIGtt1HJd48xUGbQ==",
10667
+ "version": "4.3.2",
10668
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.3.2.tgz",
10669
+ "integrity": "sha512-wDgEIGwoM8w8pufh9LVt1PahDgNdKXrLC2qfAnV3vAmococ9RWbxeAw4pxPttd/TsJfwjyLf90Dg1y9y8I6Emw==",
10670
10670
  "cpu": [
10671
10671
  "arm64"
10672
10672
  ],
@@ -10683,9 +10683,9 @@
10683
10683
  }
10684
10684
  },
10685
10685
  "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
10686
- "version": "4.3.1",
10687
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.1.tgz",
10688
- "integrity": "sha512-Bwv9KwOvE0VKa86xPFif9b9c3Y1NxOV1P0gLti/IYaWEsQYZXDlxfGEtA8mdDZ7SG3wyNXAWYT5SIn3giL57oA==",
10686
+ "version": "4.3.2",
10687
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.3.2.tgz",
10688
+ "integrity": "sha512-J5Nuk0uZQIiMTJj3LEx4sAA9tMFUoXQZFv1J6An+QGYe53HKRJuFDi0rpq/tuouCZeAbOBY3kQ6g8qeD4TUjtA==",
10689
10689
  "cpu": [
10690
10690
  "arm64"
10691
10691
  ],
@@ -10702,9 +10702,9 @@
10702
10702
  }
10703
10703
  },
10704
10704
  "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
10705
- "version": "4.3.1",
10706
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.1.tgz",
10707
- "integrity": "sha512-Ymi8O8T15HYQdOUWUtTI6ldN0neHP85FC+Qz32xTcZ7iJXtem/x8ITev0o1e9e5rkqj4lONZfTRLvkmin1+tKg==",
10705
+ "version": "4.3.2",
10706
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.3.2.tgz",
10707
+ "integrity": "sha512-kqCZpSKOBEJO4mz7OqWoofBZeXTAwaVGPj0ErAj7CojmhKpWVWVOnrt9dE8odoIraZq4oj3ausM37kXi+Tow8w==",
10708
10708
  "cpu": [
10709
10709
  "x64"
10710
10710
  ],
@@ -10721,9 +10721,9 @@
10721
10721
  }
10722
10722
  },
10723
10723
  "node_modules/@tailwindcss/oxide-linux-x64-musl": {
10724
- "version": "4.3.1",
10725
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.1.tgz",
10726
- "integrity": "sha512-M+P/91qJ6uILLw4k2G93GMDRAXj61SMvFQYt39AqvUqYgExXpLL5aepfns7sj4HiAQeolirQF9E0lzRvdf4zPQ==",
10724
+ "version": "4.3.2",
10725
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.3.2.tgz",
10726
+ "integrity": "sha512-cixpqbh2toJDmkuCRI68nXA8ZxNmdK9Y+9v5h3MC3ZQKy/0BO8AWzlkWyRM7JAFSGBlfig4YVTPsK6MVgqz1uw==",
10727
10727
  "cpu": [
10728
10728
  "x64"
10729
10729
  ],
@@ -10740,9 +10740,9 @@
10740
10740
  }
10741
10741
  },
10742
10742
  "node_modules/@tailwindcss/oxide-wasm32-wasi": {
10743
- "version": "4.3.1",
10744
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.1.tgz",
10745
- "integrity": "sha512-zsM8uOeqvVGHsAXsJxsT28ttosFahLJKCLOTUBqRAtKnVgGSRitds9T432QiT8b77Yga7JIBkulIRRlJPtYhRA==",
10743
+ "version": "4.3.2",
10744
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.3.2.tgz",
10745
+ "integrity": "sha512-4ec2Z/LOmRsAgU23CS4xeJfcJlmRg94A/XrbGRCF1gyU/zdDfRLYDVsS+ynSZCmGNxQ1jQriQOKMQeQxBA3Isw==",
10746
10746
  "bundleDependencies": [
10747
10747
  "@napi-rs/wasm-runtime",
10748
10748
  "@emnapi/core",
@@ -10757,9 +10757,9 @@
10757
10757
  "license": "MIT",
10758
10758
  "optional": true,
10759
10759
  "dependencies": {
10760
- "@emnapi/core": "^1.10.0",
10761
- "@emnapi/runtime": "^1.10.0",
10762
- "@emnapi/wasi-threads": "^1.2.1",
10760
+ "@emnapi/core": "^1.11.1",
10761
+ "@emnapi/runtime": "^1.11.1",
10762
+ "@emnapi/wasi-threads": "^1.2.2",
10763
10763
  "@napi-rs/wasm-runtime": "^1.1.4",
10764
10764
  "@tybys/wasm-util": "^0.10.2",
10765
10765
  "tslib": "^2.8.1"
@@ -10769,17 +10769,17 @@
10769
10769
  }
10770
10770
  },
10771
10771
  "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/core": {
10772
- "version": "1.10.0",
10772
+ "version": "1.11.1",
10773
10773
  "inBundle": true,
10774
10774
  "license": "MIT",
10775
10775
  "optional": true,
10776
10776
  "dependencies": {
10777
- "@emnapi/wasi-threads": "1.2.1",
10777
+ "@emnapi/wasi-threads": "1.2.2",
10778
10778
  "tslib": "^2.4.0"
10779
10779
  }
10780
10780
  },
10781
10781
  "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/runtime": {
10782
- "version": "1.10.0",
10782
+ "version": "1.11.1",
10783
10783
  "inBundle": true,
10784
10784
  "license": "MIT",
10785
10785
  "optional": true,
@@ -10788,7 +10788,7 @@
10788
10788
  }
10789
10789
  },
10790
10790
  "node_modules/@tailwindcss/oxide-wasm32-wasi/node_modules/@emnapi/wasi-threads": {
10791
- "version": "1.2.1",
10791
+ "version": "1.2.2",
10792
10792
  "inBundle": true,
10793
10793
  "license": "MIT",
10794
10794
  "optional": true,
@@ -10829,9 +10829,9 @@
10829
10829
  "optional": true
10830
10830
  },
10831
10831
  "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
10832
- "version": "4.3.1",
10833
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.1.tgz",
10834
- "integrity": "sha512-aiNvSq9BsVk8V513lDKlrCFAgf8qBMPZTpgEhInL+NwQqs97mYmupVMrPrgBBSL8Pv/0zXu9MrMF9rMun1ZeNg==",
10832
+ "version": "4.3.2",
10833
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.3.2.tgz",
10834
+ "integrity": "sha512-Zyr/M0+XcYZu3bZrUytc7TXvrk0ftWfl8gN2MwekNDzhqhKRUucMPSeOzM0o0wH5AWOU49BsKRrfKxI2atCPMQ==",
10835
10835
  "cpu": [
10836
10836
  "arm64"
10837
10837
  ],
@@ -10845,9 +10845,9 @@
10845
10845
  }
10846
10846
  },
10847
10847
  "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
10848
- "version": "4.3.1",
10849
- "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.1.tgz",
10850
- "integrity": "sha512-xDEyu1rg290472FEGaKHnzyDyh5QH+AlWvsU5hMoMtPpzmKlRI0jaYKCgSHDYtaQWZOYbMaduSyCwFwY4n1HmA==",
10848
+ "version": "4.3.2",
10849
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.3.2.tgz",
10850
+ "integrity": "sha512-QI9BO7KlNZsp2GuO0jwAAj5jCDABOKXRkCk2XuKTSaNEFSdfzqswYVTtCHBNKHLsqyjFyFkqlDiwkNbTYSssMQ==",
10851
10851
  "cpu": [
10852
10852
  "x64"
10853
10853
  ],
@@ -10861,14 +10861,14 @@
10861
10861
  }
10862
10862
  },
10863
10863
  "node_modules/@tailwindcss/vite": {
10864
- "version": "4.3.1",
10865
- "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.1.tgz",
10866
- "integrity": "sha512-hItDHuIIlEV61R+faXu66s1K36aTurO/Qw0e45Vskz57gXl9pWOT6eg3zmcEui6CZXddbN7zd41bwmvag4JGwQ==",
10864
+ "version": "4.3.2",
10865
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.3.2.tgz",
10866
+ "integrity": "sha512-eHpMeX4JXfVNJDEcsouTeCBubJBTcTLigeaw/NTUW6PB5ATKKXdyonnXgTBX2VuRbjz1hjfz6C5XAhr52ImQXA==",
10867
10867
  "license": "MIT",
10868
10868
  "dependencies": {
10869
- "@tailwindcss/node": "4.3.1",
10870
- "@tailwindcss/oxide": "4.3.1",
10871
- "tailwindcss": "4.3.1"
10869
+ "@tailwindcss/node": "4.3.2",
10870
+ "@tailwindcss/oxide": "4.3.2",
10871
+ "tailwindcss": "4.3.2"
10872
10872
  },
10873
10873
  "peerDependencies": {
10874
10874
  "vite": "^5.2.0 || ^6 || ^7 || ^8"
@@ -10985,9 +10985,9 @@
10985
10985
  }
10986
10986
  },
10987
10987
  "node_modules/@ts-morph/common/node_modules/brace-expansion": {
10988
- "version": "5.0.6",
10989
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
10990
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
10988
+ "version": "5.0.7",
10989
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
10990
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
10991
10991
  "license": "MIT",
10992
10992
  "dependencies": {
10993
10993
  "balanced-match": "^4.0.2"
@@ -11156,17 +11156,17 @@
11156
11156
  }
11157
11157
  },
11158
11158
  "node_modules/@typescript-eslint/eslint-plugin": {
11159
- "version": "8.62.0",
11160
- "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.0.tgz",
11161
- "integrity": "sha512-o+mpz7EYiMzXoySXiKmzlabIvTVqUuK5yLrAedRPRDA0IpPFMUV1IXt6OqljIxX/kumN6EjUYp41Hqelh6p/Dw==",
11159
+ "version": "8.62.1",
11160
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.62.1.tgz",
11161
+ "integrity": "sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==",
11162
11162
  "dev": true,
11163
11163
  "license": "MIT",
11164
11164
  "dependencies": {
11165
11165
  "@eslint-community/regexpp": "^4.12.2",
11166
- "@typescript-eslint/scope-manager": "8.62.0",
11167
- "@typescript-eslint/type-utils": "8.62.0",
11168
- "@typescript-eslint/utils": "8.62.0",
11169
- "@typescript-eslint/visitor-keys": "8.62.0",
11166
+ "@typescript-eslint/scope-manager": "8.62.1",
11167
+ "@typescript-eslint/type-utils": "8.62.1",
11168
+ "@typescript-eslint/utils": "8.62.1",
11169
+ "@typescript-eslint/visitor-keys": "8.62.1",
11170
11170
  "ignore": "^7.0.5",
11171
11171
  "natural-compare": "^1.4.0",
11172
11172
  "ts-api-utils": "^2.5.0"
@@ -11179,7 +11179,7 @@
11179
11179
  "url": "https://opencollective.com/typescript-eslint"
11180
11180
  },
11181
11181
  "peerDependencies": {
11182
- "@typescript-eslint/parser": "^8.62.0",
11182
+ "@typescript-eslint/parser": "^8.62.1",
11183
11183
  "eslint": "^8.57.0 || ^9.0.0 || ^10.0.0",
11184
11184
  "typescript": ">=4.8.4 <6.1.0"
11185
11185
  }
@@ -11195,16 +11195,16 @@
11195
11195
  }
11196
11196
  },
11197
11197
  "node_modules/@typescript-eslint/parser": {
11198
- "version": "8.62.0",
11199
- "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.0.tgz",
11200
- "integrity": "sha512-dzHeT2gySzZtLDsuqxU9AkYgIsQoHAHtRBpOqM+Ofzx1Bwrd2RcCjQJ+6iQbsHOIR6NS33bF2W1k3blN1zLDrA==",
11198
+ "version": "8.62.1",
11199
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.62.1.tgz",
11200
+ "integrity": "sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==",
11201
11201
  "dev": true,
11202
11202
  "license": "MIT",
11203
11203
  "dependencies": {
11204
- "@typescript-eslint/scope-manager": "8.62.0",
11205
- "@typescript-eslint/types": "8.62.0",
11206
- "@typescript-eslint/typescript-estree": "8.62.0",
11207
- "@typescript-eslint/visitor-keys": "8.62.0",
11204
+ "@typescript-eslint/scope-manager": "8.62.1",
11205
+ "@typescript-eslint/types": "8.62.1",
11206
+ "@typescript-eslint/typescript-estree": "8.62.1",
11207
+ "@typescript-eslint/visitor-keys": "8.62.1",
11208
11208
  "debug": "^4.4.3"
11209
11209
  },
11210
11210
  "engines": {
@@ -11220,14 +11220,14 @@
11220
11220
  }
11221
11221
  },
11222
11222
  "node_modules/@typescript-eslint/project-service": {
11223
- "version": "8.62.0",
11224
- "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.0.tgz",
11225
- "integrity": "sha512-wexnCqiTg7BOGtbLDftYpRWlmLq4xfoMd7BKFR6Y75sZS3QmRKLdN3yWLhmIYgqMmP/OXWpj3H8odkb5nGURCQ==",
11223
+ "version": "8.62.1",
11224
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.62.1.tgz",
11225
+ "integrity": "sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==",
11226
11226
  "dev": true,
11227
11227
  "license": "MIT",
11228
11228
  "dependencies": {
11229
- "@typescript-eslint/tsconfig-utils": "^8.62.0",
11230
- "@typescript-eslint/types": "^8.62.0",
11229
+ "@typescript-eslint/tsconfig-utils": "^8.62.1",
11230
+ "@typescript-eslint/types": "^8.62.1",
11231
11231
  "debug": "^4.4.3"
11232
11232
  },
11233
11233
  "engines": {
@@ -11242,14 +11242,14 @@
11242
11242
  }
11243
11243
  },
11244
11244
  "node_modules/@typescript-eslint/scope-manager": {
11245
- "version": "8.62.0",
11246
- "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.0.tgz",
11247
- "integrity": "sha512-1lX38kNxXIRb8mEc3lbq5mdHq1Pf2+U0nFU65KfT18mtPxxl0fvjuEE92mHuXPuCtElJhOrddOpyMlM3Z0umEA==",
11245
+ "version": "8.62.1",
11246
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.62.1.tgz",
11247
+ "integrity": "sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==",
11248
11248
  "dev": true,
11249
11249
  "license": "MIT",
11250
11250
  "dependencies": {
11251
- "@typescript-eslint/types": "8.62.0",
11252
- "@typescript-eslint/visitor-keys": "8.62.0"
11251
+ "@typescript-eslint/types": "8.62.1",
11252
+ "@typescript-eslint/visitor-keys": "8.62.1"
11253
11253
  },
11254
11254
  "engines": {
11255
11255
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -11260,9 +11260,9 @@
11260
11260
  }
11261
11261
  },
11262
11262
  "node_modules/@typescript-eslint/tsconfig-utils": {
11263
- "version": "8.62.0",
11264
- "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.0.tgz",
11265
- "integrity": "sha512-y2GAdB6ykaXUvuspbYnizQc4oDDz0Tz/Yc7iWrXf9mx8vm/L/0vLHCe0tS2boG96Zy+DivnVDQ9ZUEWoHqqx1g==",
11263
+ "version": "8.62.1",
11264
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.62.1.tgz",
11265
+ "integrity": "sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==",
11266
11266
  "dev": true,
11267
11267
  "license": "MIT",
11268
11268
  "engines": {
@@ -11277,15 +11277,15 @@
11277
11277
  }
11278
11278
  },
11279
11279
  "node_modules/@typescript-eslint/type-utils": {
11280
- "version": "8.62.0",
11281
- "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.0.tgz",
11282
- "integrity": "sha512-+g5O3j0w2ldzC86Pv6fvbO/xhAonbJFIdf/MKQ1d30gndlsVzUOE83ldfSE15Qrl9fhFjK6AovHs5Wpp6vx86w==",
11280
+ "version": "8.62.1",
11281
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.62.1.tgz",
11282
+ "integrity": "sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==",
11283
11283
  "dev": true,
11284
11284
  "license": "MIT",
11285
11285
  "dependencies": {
11286
- "@typescript-eslint/types": "8.62.0",
11287
- "@typescript-eslint/typescript-estree": "8.62.0",
11288
- "@typescript-eslint/utils": "8.62.0",
11286
+ "@typescript-eslint/types": "8.62.1",
11287
+ "@typescript-eslint/typescript-estree": "8.62.1",
11288
+ "@typescript-eslint/utils": "8.62.1",
11289
11289
  "debug": "^4.4.3",
11290
11290
  "ts-api-utils": "^2.5.0"
11291
11291
  },
@@ -11302,9 +11302,9 @@
11302
11302
  }
11303
11303
  },
11304
11304
  "node_modules/@typescript-eslint/types": {
11305
- "version": "8.62.0",
11306
- "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.0.tgz",
11307
- "integrity": "sha512-KvAclkktORPvM54TgLgA4z9HIV1M8zOgw9ZVNXl9f/8dLYfXYX1wkMXP7qmabpijQRV5bHJLOmoyGQbLMaUYeg==",
11305
+ "version": "8.62.1",
11306
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.62.1.tgz",
11307
+ "integrity": "sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==",
11308
11308
  "dev": true,
11309
11309
  "license": "MIT",
11310
11310
  "engines": {
@@ -11316,16 +11316,16 @@
11316
11316
  }
11317
11317
  },
11318
11318
  "node_modules/@typescript-eslint/typescript-estree": {
11319
- "version": "8.62.0",
11320
- "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.0.tgz",
11321
- "integrity": "sha512-+hVbNxtW64pIcZWDPGbyaKF7vp2IBTVY5ma1blwwksrjdsbdqqEKvJWMGbBofei4F6Dovx1M0RJgoFeNu2279A==",
11319
+ "version": "8.62.1",
11320
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.62.1.tgz",
11321
+ "integrity": "sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==",
11322
11322
  "dev": true,
11323
11323
  "license": "MIT",
11324
11324
  "dependencies": {
11325
- "@typescript-eslint/project-service": "8.62.0",
11326
- "@typescript-eslint/tsconfig-utils": "8.62.0",
11327
- "@typescript-eslint/types": "8.62.0",
11328
- "@typescript-eslint/visitor-keys": "8.62.0",
11325
+ "@typescript-eslint/project-service": "8.62.1",
11326
+ "@typescript-eslint/tsconfig-utils": "8.62.1",
11327
+ "@typescript-eslint/types": "8.62.1",
11328
+ "@typescript-eslint/visitor-keys": "8.62.1",
11329
11329
  "debug": "^4.4.3",
11330
11330
  "minimatch": "^10.2.2",
11331
11331
  "semver": "^7.7.3",
@@ -11354,9 +11354,9 @@
11354
11354
  }
11355
11355
  },
11356
11356
  "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
11357
- "version": "5.0.6",
11358
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
11359
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
11357
+ "version": "5.0.7",
11358
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
11359
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
11360
11360
  "dev": true,
11361
11361
  "license": "MIT",
11362
11362
  "dependencies": {
@@ -11396,16 +11396,16 @@
11396
11396
  }
11397
11397
  },
11398
11398
  "node_modules/@typescript-eslint/utils": {
11399
- "version": "8.62.0",
11400
- "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.0.tgz",
11401
- "integrity": "sha512-82r66fi9zYwZ+mTq3vKgwjbZ1PVk/DJzrXFLpG6RnBbdvH8TEGVHIs9H4d2drhkOzf0syZuD/OZvvlu6GDbP4g==",
11399
+ "version": "8.62.1",
11400
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.62.1.tgz",
11401
+ "integrity": "sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==",
11402
11402
  "dev": true,
11403
11403
  "license": "MIT",
11404
11404
  "dependencies": {
11405
11405
  "@eslint-community/eslint-utils": "^4.9.1",
11406
- "@typescript-eslint/scope-manager": "8.62.0",
11407
- "@typescript-eslint/types": "8.62.0",
11408
- "@typescript-eslint/typescript-estree": "8.62.0"
11406
+ "@typescript-eslint/scope-manager": "8.62.1",
11407
+ "@typescript-eslint/types": "8.62.1",
11408
+ "@typescript-eslint/typescript-estree": "8.62.1"
11409
11409
  },
11410
11410
  "engines": {
11411
11411
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
@@ -11420,13 +11420,13 @@
11420
11420
  }
11421
11421
  },
11422
11422
  "node_modules/@typescript-eslint/visitor-keys": {
11423
- "version": "8.62.0",
11424
- "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.0.tgz",
11425
- "integrity": "sha512-CY3uyFSRbcQv3nnSv8S0+lDftMVz6P963PoRlxrV7ew/Md564g9ut60PYzdLM5qW4jFn93GBF+Soi90ISAN+GQ==",
11423
+ "version": "8.62.1",
11424
+ "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.62.1.tgz",
11425
+ "integrity": "sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==",
11426
11426
  "dev": true,
11427
11427
  "license": "MIT",
11428
11428
  "dependencies": {
11429
- "@typescript-eslint/types": "8.62.0",
11429
+ "@typescript-eslint/types": "8.62.1",
11430
11430
  "eslint-visitor-keys": "^5.0.0"
11431
11431
  },
11432
11432
  "engines": {
@@ -12539,9 +12539,9 @@
12539
12539
  }
12540
12540
  },
12541
12541
  "node_modules/caniuse-lite": {
12542
- "version": "1.0.30001799",
12543
- "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001799.tgz",
12544
- "integrity": "sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==",
12542
+ "version": "1.0.30001800",
12543
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001800.tgz",
12544
+ "integrity": "sha512-MMHtuAz9Ys840zAY5F4k6fV5GaivZ9sPk+nz0mY+GYVzRBnYkN0mpqkSR92oWRQ19yQWo4HvBV/FnC16AJX8MA==",
12545
12545
  "funding": [
12546
12546
  {
12547
12547
  "type": "opencollective",
@@ -13735,9 +13735,9 @@
13735
13735
  "license": "MIT"
13736
13736
  },
13737
13737
  "node_modules/electron-to-chromium": {
13738
- "version": "1.5.380",
13739
- "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.380.tgz",
13740
- "integrity": "sha512-W6d5AbuEoRayO447cqrg6lKJIlscgRnnxOZl/08kfV71BQDoEBC7Wwis68z87LjyK6f4kWyTaubuDbhHKrZkbA==",
13738
+ "version": "1.5.382",
13739
+ "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.382.tgz",
13740
+ "integrity": "sha512-8ETaWbV6SZOrno+G93Ffd9ENsMtetqdnqj4nlfxFW90Sm5GgnuV28Kf62hqQVD6VUgzm7qFQKsTsAPmeUiU3Ug==",
13741
13741
  "license": "ISC"
13742
13742
  },
13743
13743
  "node_modules/emoji-regex": {
@@ -13981,9 +13981,9 @@
13981
13981
  }
13982
13982
  },
13983
13983
  "node_modules/es-module-lexer": {
13984
- "version": "2.1.0",
13985
- "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.1.0.tgz",
13986
- "integrity": "sha512-n27zTYMjYu1aj4MjCWzSP7G9r75utsaoc8m61weK+W8JMBGGQybd43GstCXZ3WNmSFtGT9wi59qQTW6mhTR5LQ==",
13984
+ "version": "2.2.0",
13985
+ "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-2.2.0.tgz",
13986
+ "integrity": "sha512-3lGxdTXCLfe1MYfTz1y2ksAAUM4NAOP6rPEjxGJVKO7TZ5+tvHCaQWGpC4Y3IXvW3ece0Cz1cIP4FWBxOnGCTQ==",
13987
13987
  "dev": true,
13988
13988
  "license": "MIT"
13989
13989
  },
@@ -14638,9 +14638,9 @@
14638
14638
  }
14639
14639
  },
14640
14640
  "node_modules/fast-uri": {
14641
- "version": "3.1.2",
14642
- "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.2.tgz",
14643
- "integrity": "sha512-rVjf7ArG3LTk+FS6Yw81V1DLuZl1bRbNrev6Tmd/9RaroeeRRJhAt7jg/6YFxbvAQXUCavSoZhPPj6oOx+5KjQ==",
14641
+ "version": "3.1.3",
14642
+ "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.3.tgz",
14643
+ "integrity": "sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==",
14644
14644
  "funding": [
14645
14645
  {
14646
14646
  "type": "github",
@@ -14934,9 +14934,9 @@
14934
14934
  }
14935
14935
  },
14936
14936
  "node_modules/fs-extra": {
14937
- "version": "11.3.5",
14938
- "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.5.tgz",
14939
- "integrity": "sha512-eKpRKAovdpZtR1WopLHxlBWvAgPny3c4gX1G5Jhwmmw4XJj0ifSD5qB5TOo8hmA0wlRKDAOAhEE1yVPgs6Fgcg==",
14937
+ "version": "11.3.6",
14938
+ "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.6.tgz",
14939
+ "integrity": "sha512-w8ZNZr2mKIc7qeNaQ9AVPT1+iFaI+Avd4xudVOvdDJ8VytREi1Ft5Ih7hd9jjehod8vAM5GMsfQ/TpPf4EyoEA==",
14940
14940
  "license": "MIT",
14941
14941
  "dependencies": {
14942
14942
  "graceful-fs": "^4.2.0",
@@ -15428,9 +15428,9 @@
15428
15428
  }
15429
15429
  },
15430
15430
  "node_modules/graphql-config/node_modules/brace-expansion": {
15431
- "version": "5.0.6",
15432
- "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
15433
- "integrity": "sha512-kLpxurY4Z4r9sgMsyG0Z9uzsBlgiU/EFKhj/h91/8yHu0edo7XuixOIH3VcJ8kkxs6/jPzoI6U9Vj3WqbMQ94g==",
15431
+ "version": "5.0.7",
15432
+ "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.7.tgz",
15433
+ "integrity": "sha512-7oFy703dxfY3/NLxC1fh2SUCQ0H9rmAY+5EpDVfXjUTTs+HEwR2nYaqLv+GWcTsumwxPfiz6CzCNkwXwBUwqCA==",
15434
15434
  "dev": true,
15435
15435
  "license": "MIT",
15436
15436
  "dependencies": {
@@ -15827,9 +15827,9 @@
15827
15827
  "license": "MIT"
15828
15828
  },
15829
15829
  "node_modules/immutable": {
15830
- "version": "5.1.8",
15831
- "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.8.tgz",
15832
- "integrity": "sha512-TM5YqrGeTsVIPPpILzeqZ8D2Zc2TvNgSDi88zPF2a4cyqQdWV/wVWBDRDbNzzrLeRWScrFcOX9lW2iX6GOtUDw==",
15830
+ "version": "5.1.9",
15831
+ "resolved": "https://registry.npmjs.org/immutable/-/immutable-5.1.9.tgz",
15832
+ "integrity": "sha512-m8nVez3rwrgmWxtLMt1ZYXB2Lv7OKYn/disyxAlSDYAlKSlFoPPfIAmAM/M5xqL4m4C/wAPw7S2/CNaUii1Hxg==",
15833
15833
  "dev": true,
15834
15834
  "license": "MIT"
15835
15835
  },
@@ -18197,9 +18197,9 @@
18197
18197
  }
18198
18198
  },
18199
18199
  "node_modules/o11y_schema": {
18200
- "version": "264.91.0",
18201
- "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.91.0.tgz",
18202
- "integrity": "sha512-MeemqnHi6pwSe605s64fiOCpeXhKq3gGAwqbIAU91HMkwUa2As6wMN6QWGnl7cAaaaHAbGhaxZ9PmG3wNb1yHg==",
18200
+ "version": "264.92.0",
18201
+ "resolved": "https://registry.npmjs.org/o11y_schema/-/o11y_schema-264.92.0.tgz",
18202
+ "integrity": "sha512-7y+P1PuVY4DCJqBz9JI069zInelPYZjuDeWlkmnSlV23tGWqU2HR43CejwlG8ut+Gf6PuRs9ALcU94R6ZwcIcg==",
18203
18203
  "license": "BSD-3-Clause",
18204
18204
  "peer": true
18205
18205
  },
@@ -19086,9 +19086,9 @@
19086
19086
  }
19087
19087
  },
19088
19088
  "node_modules/postcss": {
19089
- "version": "8.5.15",
19090
- "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.15.tgz",
19091
- "integrity": "sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==",
19089
+ "version": "8.5.16",
19090
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.16.tgz",
19091
+ "integrity": "sha512-vuwillviilfKZsg0VGj5R/YwwcHx4SLsIOI/7K6mQkWx+l5cUHTjj5g0AasTBcyXsbfTgrwsUNmVUb5xVwyPwg==",
19092
19092
  "funding": [
19093
19093
  {
19094
19094
  "type": "opencollective",
@@ -19149,9 +19149,9 @@
19149
19149
  }
19150
19150
  },
19151
19151
  "node_modules/prettier": {
19152
- "version": "3.9.1",
19153
- "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.1.tgz",
19154
- "integrity": "sha512-ppiDo2CSwexck1eyZUwJHg/N3nf1+6IRCv7W/VJ5vaLnVCmB7+3CdRfMwoCHBBX6xTrREDTksZ4OZl5SSf4zXA==",
19152
+ "version": "3.9.4",
19153
+ "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.9.4.tgz",
19154
+ "integrity": "sha512-yWG/o/4oJfo036EKAfK6ACAoDOfHeRHx4tuxkfBZiauURiaSmYwlpOr5LQqKtIkRD2z1PLteme2WoxEnj4tHTg==",
19155
19155
  "dev": true,
19156
19156
  "license": "MIT",
19157
19157
  "peer": true,
@@ -20037,9 +20037,9 @@
20037
20037
  }
20038
20038
  },
20039
20039
  "node_modules/react-router": {
20040
- "version": "7.18.0",
20041
- "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.18.0.tgz",
20042
- "integrity": "sha512-pTTGt8J+ji1NOmYnjzT+bAJy/1zD+Jp4ziO6cL7T3ZLvXKtusO7BpFqlRXitqpcPVqllsIXFHRMt+2/k3Xn6HQ==",
20040
+ "version": "7.18.1",
20041
+ "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.18.1.tgz",
20042
+ "integrity": "sha512-GDLgg3i3uM0aeJO3Fm+TCS+sDQ7gu12T6x0qdTEzcwqEfleci7JwugVNIF3U//0FWKnJT7ptG+20B2jfDqnZAg==",
20043
20043
  "license": "MIT",
20044
20044
  "dependencies": {
20045
20045
  "cookie": "^1.0.1",
@@ -21667,9 +21667,9 @@
21667
21667
  }
21668
21668
  },
21669
21669
  "node_modules/tailwindcss": {
21670
- "version": "4.3.1",
21671
- "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.1.tgz",
21672
- "integrity": "sha512-hk+TB1m+K8CYNrP6rjQaq/Y+4Zylwpa87mLYBKCunwnnQ9p+fHb7kmSfGqyEJoxF/O6CDyABWVFEafNSYKll+Q==",
21670
+ "version": "4.3.2",
21671
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.3.2.tgz",
21672
+ "integrity": "sha512-WtctNNSH8A9jlMIqxzuYumOHU5uGZyRv0Q5svQl+oEPy5w84YpBxdb7MdqyiSPQge5jTJ6zFQLq0PFygdccSBA==",
21673
21673
  "license": "MIT"
21674
21674
  },
21675
21675
  "node_modules/tapable": {
@@ -21808,21 +21808,21 @@
21808
21808
  }
21809
21809
  },
21810
21810
  "node_modules/tldts": {
21811
- "version": "7.4.4",
21812
- "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.4.tgz",
21813
- "integrity": "sha512-kFXFK7O4WPextIUAOk8qtnw9dxR9UIXP9CjuH1cTBVBZMDeQcUPgr/IazGiw1B0Yiw5L75gHLWeW4iD793r90g==",
21811
+ "version": "7.4.5",
21812
+ "resolved": "https://registry.npmjs.org/tldts/-/tldts-7.4.5.tgz",
21813
+ "integrity": "sha512-RfEzKWcq5fHUOFq7J3rl3Oz6ylKGtcHqUznzj4EcXsxLSIjJcvpbXAQtWGeJQ0xKnimR5e0Cn+cn9TssfMzm+g==",
21814
21814
  "license": "MIT",
21815
21815
  "dependencies": {
21816
- "tldts-core": "^7.4.4"
21816
+ "tldts-core": "^7.4.5"
21817
21817
  },
21818
21818
  "bin": {
21819
21819
  "tldts": "bin/cli.js"
21820
21820
  }
21821
21821
  },
21822
21822
  "node_modules/tldts-core": {
21823
- "version": "7.4.4",
21824
- "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.4.tgz",
21825
- "integrity": "sha512-vwVLJVvvpslm7vqAH7+XNj/neA/Ynq7DT2EEcMuwc5YzN5XaMyRAqxwU+uX3azZ1FQtB2gvrvnLnAEkvYlVdfg==",
21823
+ "version": "7.4.5",
21824
+ "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-7.4.5.tgz",
21825
+ "integrity": "sha512-pGrwzZDvPwKe+7NNUqAunb6rqTfynr0VOUhCMdqbu5xlvNiszsAJygRzwvpVycdzejlbpY+SWJOn+s75Og7FEA==",
21826
21826
  "license": "MIT"
21827
21827
  },
21828
21828
  "node_modules/to-regex-range": {
@@ -22127,16 +22127,16 @@
22127
22127
  }
22128
22128
  },
22129
22129
  "node_modules/typescript-eslint": {
22130
- "version": "8.62.0",
22131
- "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.0.tgz",
22132
- "integrity": "sha512-8QxXi+ZACKX0kaqO4gY8kn0RSD9gFfaHDWwjqtEN48aWCBkX4MJaufWN+c3BzlrXLOxfywDL8CaoqUwcRq4j4Q==",
22130
+ "version": "8.62.1",
22131
+ "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.62.1.tgz",
22132
+ "integrity": "sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==",
22133
22133
  "dev": true,
22134
22134
  "license": "MIT",
22135
22135
  "dependencies": {
22136
- "@typescript-eslint/eslint-plugin": "8.62.0",
22137
- "@typescript-eslint/parser": "8.62.0",
22138
- "@typescript-eslint/typescript-estree": "8.62.0",
22139
- "@typescript-eslint/utils": "8.62.0"
22136
+ "@typescript-eslint/eslint-plugin": "8.62.1",
22137
+ "@typescript-eslint/parser": "8.62.1",
22138
+ "@typescript-eslint/typescript-estree": "8.62.1",
22139
+ "@typescript-eslint/utils": "8.62.1"
22140
22140
  },
22141
22141
  "engines": {
22142
22142
  "node": "^18.18.0 || ^20.9.0 || >=21.1.0"