Browse Source

refactor

3.x
Andrew Wallo 7 months ago
parent
commit
6380c54b06

+ 0
- 6
app/Jobs/GenerateRecurringInvoices.php View File

5
 use App\Enums\Accounting\RecurringInvoiceStatus;
5
 use App\Enums\Accounting\RecurringInvoiceStatus;
6
 use App\Models\Accounting\RecurringInvoice;
6
 use App\Models\Accounting\RecurringInvoice;
7
 use Illuminate\Contracts\Queue\ShouldQueue;
7
 use Illuminate\Contracts\Queue\ShouldQueue;
8
-use Illuminate\Foundation\Bus\Dispatchable;
9
 use Illuminate\Foundation\Queue\Queueable;
8
 use Illuminate\Foundation\Queue\Queueable;
10
-use Illuminate\Queue\InteractsWithQueue;
11
-use Illuminate\Queue\SerializesModels;
12
 
9
 
13
 class GenerateRecurringInvoices implements ShouldQueue
10
 class GenerateRecurringInvoices implements ShouldQueue
14
 {
11
 {
15
-    use Dispatchable;
16
-    use InteractsWithQueue;
17
     use Queueable;
12
     use Queueable;
18
-    use SerializesModels;
19
 
13
 
20
     /**
14
     /**
21
      * Execute the job.
15
      * Execute the job.

+ 0
- 6
app/Jobs/ProcessOverdueInvoices.php View File

5
 use App\Enums\Accounting\InvoiceStatus;
5
 use App\Enums\Accounting\InvoiceStatus;
6
 use App\Models\Accounting\Invoice;
6
 use App\Models\Accounting\Invoice;
7
 use Illuminate\Contracts\Queue\ShouldQueue;
7
 use Illuminate\Contracts\Queue\ShouldQueue;
8
-use Illuminate\Foundation\Bus\Dispatchable;
9
 use Illuminate\Foundation\Queue\Queueable;
8
 use Illuminate\Foundation\Queue\Queueable;
10
-use Illuminate\Queue\InteractsWithQueue;
11
-use Illuminate\Queue\SerializesModels;
12
 
9
 
13
 class ProcessOverdueInvoices implements ShouldQueue
10
 class ProcessOverdueInvoices implements ShouldQueue
14
 {
11
 {
15
-    use Dispatchable;
16
-    use InteractsWithQueue;
17
     use Queueable;
12
     use Queueable;
18
-    use SerializesModels;
19
 
13
 
20
     /**
14
     /**
21
      * Execute the job.
15
      * Execute the job.

+ 1
- 7
app/Jobs/ProcessTransactionImport.php View File

8
 use App\Models\Company;
8
 use App\Models\Company;
9
 use App\Services\PlaidService;
9
 use App\Services\PlaidService;
10
 use App\Services\TransactionService;
10
 use App\Services\TransactionService;
11
-use Illuminate\Bus\Queueable;
12
 use Illuminate\Contracts\Queue\ShouldQueue;
11
 use Illuminate\Contracts\Queue\ShouldQueue;
13
-use Illuminate\Foundation\Bus\Dispatchable;
14
-use Illuminate\Queue\InteractsWithQueue;
15
-use Illuminate\Queue\SerializesModels;
12
+use Illuminate\Foundation\Queue\Queueable;
16
 use Illuminate\Support\Carbon;
13
 use Illuminate\Support\Carbon;
17
 
14
 
18
 class ProcessTransactionImport implements ShouldQueue
15
 class ProcessTransactionImport implements ShouldQueue
19
 {
16
 {
20
-    use Dispatchable;
21
-    use InteractsWithQueue;
22
     use Queueable;
17
     use Queueable;
23
-    use SerializesModels;
24
 
18
 
25
     public function __construct(
19
     public function __construct(
26
         protected Company $company,
20
         protected Company $company,

+ 1
- 7
app/Jobs/ProcessTransactionUpdate.php View File

6
 use App\Models\Company;
6
 use App\Models\Company;
7
 use App\Services\PlaidService;
7
 use App\Services\PlaidService;
8
 use App\Services\TransactionService;
8
 use App\Services\TransactionService;
9
-use Illuminate\Bus\Queueable;
10
 use Illuminate\Contracts\Queue\ShouldQueue;
9
 use Illuminate\Contracts\Queue\ShouldQueue;
11
-use Illuminate\Foundation\Bus\Dispatchable;
12
-use Illuminate\Queue\InteractsWithQueue;
13
-use Illuminate\Queue\SerializesModels;
10
+use Illuminate\Foundation\Queue\Queueable;
14
 use Illuminate\Support\Carbon;
11
 use Illuminate\Support\Carbon;
15
 
12
 
16
 class ProcessTransactionUpdate implements ShouldQueue
13
 class ProcessTransactionUpdate implements ShouldQueue
17
 {
14
 {
18
-    use Dispatchable;
19
-    use InteractsWithQueue;
20
     use Queueable;
15
     use Queueable;
21
-    use SerializesModels;
22
 
16
 
23
     public function __construct(
17
     public function __construct(
24
         protected Company $company,
18
         protected Company $company,

+ 43
- 43
composer.lock View File

497
         },
497
         },
498
         {
498
         {
499
             "name": "aws/aws-sdk-php",
499
             "name": "aws/aws-sdk-php",
500
-            "version": "3.342.0",
500
+            "version": "3.342.2",
501
             "source": {
501
             "source": {
502
                 "type": "git",
502
                 "type": "git",
503
                 "url": "https://github.com/aws/aws-sdk-php.git",
503
                 "url": "https://github.com/aws/aws-sdk-php.git",
504
-                "reference": "5b8c837ab0c9754ab3408bd9afe6f0c67516b1fd"
504
+                "reference": "ef66e0fdba9e7f786a7b1e522f847d76d0320e89"
505
             },
505
             },
506
             "dist": {
506
             "dist": {
507
                 "type": "zip",
507
                 "type": "zip",
508
-                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5b8c837ab0c9754ab3408bd9afe6f0c67516b1fd",
509
-                "reference": "5b8c837ab0c9754ab3408bd9afe6f0c67516b1fd",
508
+                "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/ef66e0fdba9e7f786a7b1e522f847d76d0320e89",
509
+                "reference": "ef66e0fdba9e7f786a7b1e522f847d76d0320e89",
510
                 "shasum": ""
510
                 "shasum": ""
511
             },
511
             },
512
             "require": {
512
             "require": {
588
             "support": {
588
             "support": {
589
                 "forum": "https://github.com/aws/aws-sdk-php/discussions",
589
                 "forum": "https://github.com/aws/aws-sdk-php/discussions",
590
                 "issues": "https://github.com/aws/aws-sdk-php/issues",
590
                 "issues": "https://github.com/aws/aws-sdk-php/issues",
591
-                "source": "https://github.com/aws/aws-sdk-php/tree/3.342.0"
591
+                "source": "https://github.com/aws/aws-sdk-php/tree/3.342.2"
592
             },
592
             },
593
-            "time": "2025-03-05T19:20:14+00:00"
593
+            "time": "2025-03-07T19:12:43+00:00"
594
         },
594
         },
595
         {
595
         {
596
             "name": "aws/aws-sdk-php-laravel",
596
             "name": "aws/aws-sdk-php-laravel",
1282
         },
1282
         },
1283
         {
1283
         {
1284
             "name": "doctrine/dbal",
1284
             "name": "doctrine/dbal",
1285
-            "version": "4.2.2",
1285
+            "version": "4.2.3",
1286
             "source": {
1286
             "source": {
1287
                 "type": "git",
1287
                 "type": "git",
1288
                 "url": "https://github.com/doctrine/dbal.git",
1288
                 "url": "https://github.com/doctrine/dbal.git",
1289
-                "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec"
1289
+                "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e"
1290
             },
1290
             },
1291
             "dist": {
1291
             "dist": {
1292
                 "type": "zip",
1292
                 "type": "zip",
1293
-                "url": "https://api.github.com/repos/doctrine/dbal/zipball/19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
1294
-                "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
1293
+                "url": "https://api.github.com/repos/doctrine/dbal/zipball/33d2d7fe1269b2301640c44cf2896ea607b30e3e",
1294
+                "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e",
1295
                 "shasum": ""
1295
                 "shasum": ""
1296
             },
1296
             },
1297
             "require": {
1297
             "require": {
1368
             ],
1368
             ],
1369
             "support": {
1369
             "support": {
1370
                 "issues": "https://github.com/doctrine/dbal/issues",
1370
                 "issues": "https://github.com/doctrine/dbal/issues",
1371
-                "source": "https://github.com/doctrine/dbal/tree/4.2.2"
1371
+                "source": "https://github.com/doctrine/dbal/tree/4.2.3"
1372
             },
1372
             },
1373
             "funding": [
1373
             "funding": [
1374
                 {
1374
                 {
1384
                     "type": "tidelift"
1384
                     "type": "tidelift"
1385
                 }
1385
                 }
1386
             ],
1386
             ],
1387
-            "time": "2025-01-16T08:40:56+00:00"
1387
+            "time": "2025-03-07T18:29:05+00:00"
1388
         },
1388
         },
1389
         {
1389
         {
1390
             "name": "doctrine/deprecations",
1390
             "name": "doctrine/deprecations",
2921
         },
2921
         },
2922
         {
2922
         {
2923
             "name": "kirschbaum-development/eloquent-power-joins",
2923
             "name": "kirschbaum-development/eloquent-power-joins",
2924
-            "version": "4.2.1",
2924
+            "version": "4.2.2",
2925
             "source": {
2925
             "source": {
2926
                 "type": "git",
2926
                 "type": "git",
2927
                 "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
2927
                 "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
2928
-                "reference": "84a24784d9abde8bafb1998a0841a6bc10fa6f8e"
2928
+                "reference": "a307fab78c291526fba754e6ac8a86f7bd58d45d"
2929
             },
2929
             },
2930
             "dist": {
2930
             "dist": {
2931
                 "type": "zip",
2931
                 "type": "zip",
2932
-                "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/84a24784d9abde8bafb1998a0841a6bc10fa6f8e",
2933
-                "reference": "84a24784d9abde8bafb1998a0841a6bc10fa6f8e",
2932
+                "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/a307fab78c291526fba754e6ac8a86f7bd58d45d",
2933
+                "reference": "a307fab78c291526fba754e6ac8a86f7bd58d45d",
2934
                 "shasum": ""
2934
                 "shasum": ""
2935
             },
2935
             },
2936
             "require": {
2936
             "require": {
2978
             ],
2978
             ],
2979
             "support": {
2979
             "support": {
2980
                 "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
2980
                 "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
2981
-                "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.1"
2981
+                "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.2"
2982
             },
2982
             },
2983
-            "time": "2025-03-05T10:11:33+00:00"
2983
+            "time": "2025-03-08T01:26:00+00:00"
2984
         },
2984
         },
2985
         {
2985
         {
2986
             "name": "knplabs/knp-snappy",
2986
             "name": "knplabs/knp-snappy",
5141
         },
5141
         },
5142
         {
5142
         {
5143
             "name": "openspout/openspout",
5143
             "name": "openspout/openspout",
5144
-            "version": "v4.28.5",
5144
+            "version": "v4.29.0",
5145
             "source": {
5145
             "source": {
5146
                 "type": "git",
5146
                 "type": "git",
5147
                 "url": "https://github.com/openspout/openspout.git",
5147
                 "url": "https://github.com/openspout/openspout.git",
5148
-                "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b"
5148
+                "reference": "3032427a0cd95bdbd8081165f2daf134554cdcc1"
5149
             },
5149
             },
5150
             "dist": {
5150
             "dist": {
5151
                 "type": "zip",
5151
                 "type": "zip",
5152
-                "url": "https://api.github.com/repos/openspout/openspout/zipball/ab05a09fe6fce57c90338f83280648a9786ce36b",
5153
-                "reference": "ab05a09fe6fce57c90338f83280648a9786ce36b",
5152
+                "url": "https://api.github.com/repos/openspout/openspout/zipball/3032427a0cd95bdbd8081165f2daf134554cdcc1",
5153
+                "reference": "3032427a0cd95bdbd8081165f2daf134554cdcc1",
5154
                 "shasum": ""
5154
                 "shasum": ""
5155
             },
5155
             },
5156
             "require": {
5156
             "require": {
5160
                 "ext-libxml": "*",
5160
                 "ext-libxml": "*",
5161
                 "ext-xmlreader": "*",
5161
                 "ext-xmlreader": "*",
5162
                 "ext-zip": "*",
5162
                 "ext-zip": "*",
5163
-                "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
5163
+                "php": "~8.3.0 || ~8.4.0"
5164
             },
5164
             },
5165
             "require-dev": {
5165
             "require-dev": {
5166
                 "ext-zlib": "*",
5166
                 "ext-zlib": "*",
5167
-                "friendsofphp/php-cs-fixer": "^3.68.3",
5168
-                "infection/infection": "^0.29.10",
5167
+                "friendsofphp/php-cs-fixer": "^3.70.2",
5168
+                "infection/infection": "^0.29.14",
5169
                 "phpbench/phpbench": "^1.4.0",
5169
                 "phpbench/phpbench": "^1.4.0",
5170
-                "phpstan/phpstan": "^2.1.2",
5170
+                "phpstan/phpstan": "^2.1.7",
5171
                 "phpstan/phpstan-phpunit": "^2.0.4",
5171
                 "phpstan/phpstan-phpunit": "^2.0.4",
5172
-                "phpstan/phpstan-strict-rules": "^2",
5173
-                "phpunit/phpunit": "^11.5.4"
5172
+                "phpstan/phpstan-strict-rules": "^2.0.3",
5173
+                "phpunit/phpunit": "^12.0.6"
5174
             },
5174
             },
5175
             "suggest": {
5175
             "suggest": {
5176
                 "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
5176
                 "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
5218
             ],
5218
             ],
5219
             "support": {
5219
             "support": {
5220
                 "issues": "https://github.com/openspout/openspout/issues",
5220
                 "issues": "https://github.com/openspout/openspout/issues",
5221
-                "source": "https://github.com/openspout/openspout/tree/v4.28.5"
5221
+                "source": "https://github.com/openspout/openspout/tree/v4.29.0"
5222
             },
5222
             },
5223
             "funding": [
5223
             "funding": [
5224
                 {
5224
                 {
5230
                     "type": "github"
5230
                     "type": "github"
5231
                 }
5231
                 }
5232
             ],
5232
             ],
5233
-            "time": "2025-01-30T13:51:11+00:00"
5233
+            "time": "2025-03-06T09:59:55+00:00"
5234
         },
5234
         },
5235
         {
5235
         {
5236
             "name": "paragonie/constant_time_encoding",
5236
             "name": "paragonie/constant_time_encoding",
11526
         },
11526
         },
11527
         {
11527
         {
11528
             "name": "sebastian/comparator",
11528
             "name": "sebastian/comparator",
11529
-            "version": "6.3.0",
11529
+            "version": "6.3.1",
11530
             "source": {
11530
             "source": {
11531
                 "type": "git",
11531
                 "type": "git",
11532
                 "url": "https://github.com/sebastianbergmann/comparator.git",
11532
                 "url": "https://github.com/sebastianbergmann/comparator.git",
11533
-                "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115"
11533
+                "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
11534
             },
11534
             },
11535
             "dist": {
11535
             "dist": {
11536
                 "type": "zip",
11536
                 "type": "zip",
11537
-                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
11538
-                "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
11537
+                "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
11538
+                "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
11539
                 "shasum": ""
11539
                 "shasum": ""
11540
             },
11540
             },
11541
             "require": {
11541
             "require": {
11554
             "type": "library",
11554
             "type": "library",
11555
             "extra": {
11555
             "extra": {
11556
                 "branch-alias": {
11556
                 "branch-alias": {
11557
-                    "dev-main": "6.2-dev"
11557
+                    "dev-main": "6.3-dev"
11558
                 }
11558
                 }
11559
             },
11559
             },
11560
             "autoload": {
11560
             "autoload": {
11594
             "support": {
11594
             "support": {
11595
                 "issues": "https://github.com/sebastianbergmann/comparator/issues",
11595
                 "issues": "https://github.com/sebastianbergmann/comparator/issues",
11596
                 "security": "https://github.com/sebastianbergmann/comparator/security/policy",
11596
                 "security": "https://github.com/sebastianbergmann/comparator/security/policy",
11597
-                "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.0"
11597
+                "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
11598
             },
11598
             },
11599
             "funding": [
11599
             "funding": [
11600
                 {
11600
                 {
11602
                     "type": "github"
11602
                     "type": "github"
11603
                 }
11603
                 }
11604
             ],
11604
             ],
11605
-            "time": "2025-01-06T10:28:19+00:00"
11605
+            "time": "2025-03-07T06:57:01+00:00"
11606
         },
11606
         },
11607
         {
11607
         {
11608
             "name": "sebastian/complexity",
11608
             "name": "sebastian/complexity",
12662
         },
12662
         },
12663
         {
12663
         {
12664
             "name": "spatie/laravel-ray",
12664
             "name": "spatie/laravel-ray",
12665
-            "version": "1.39.1",
12665
+            "version": "1.40.0",
12666
             "source": {
12666
             "source": {
12667
                 "type": "git",
12667
                 "type": "git",
12668
                 "url": "https://github.com/spatie/laravel-ray.git",
12668
                 "url": "https://github.com/spatie/laravel-ray.git",
12669
-                "reference": "0d890fa2cd2c0b6175cf54c56b9321d81047571d"
12669
+                "reference": "3bcca8c64cd6d45c903f20cb0a548e2143ffdf84"
12670
             },
12670
             },
12671
             "dist": {
12671
             "dist": {
12672
                 "type": "zip",
12672
                 "type": "zip",
12673
-                "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/0d890fa2cd2c0b6175cf54c56b9321d81047571d",
12674
-                "reference": "0d890fa2cd2c0b6175cf54c56b9321d81047571d",
12673
+                "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/3bcca8c64cd6d45c903f20cb0a548e2143ffdf84",
12674
+                "reference": "3bcca8c64cd6d45c903f20cb0a548e2143ffdf84",
12675
                 "shasum": ""
12675
                 "shasum": ""
12676
             },
12676
             },
12677
             "require": {
12677
             "require": {
12734
             ],
12734
             ],
12735
             "support": {
12735
             "support": {
12736
                 "issues": "https://github.com/spatie/laravel-ray/issues",
12736
                 "issues": "https://github.com/spatie/laravel-ray/issues",
12737
-                "source": "https://github.com/spatie/laravel-ray/tree/1.39.1"
12737
+                "source": "https://github.com/spatie/laravel-ray/tree/1.40.0"
12738
             },
12738
             },
12739
             "funding": [
12739
             "funding": [
12740
                 {
12740
                 {
12746
                     "type": "other"
12746
                     "type": "other"
12747
                 }
12747
                 }
12748
             ],
12748
             ],
12749
-            "time": "2025-02-05T08:16:15+00:00"
12749
+            "time": "2025-03-08T10:58:11+00:00"
12750
         },
12750
         },
12751
         {
12751
         {
12752
             "name": "spatie/macroable",
12752
             "name": "spatie/macroable",

+ 91
- 91
package-lock.json View File

575
             }
575
             }
576
         },
576
         },
577
         "node_modules/@rollup/rollup-android-arm-eabi": {
577
         "node_modules/@rollup/rollup-android-arm-eabi": {
578
-            "version": "4.34.9",
579
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.9.tgz",
580
-            "integrity": "sha512-qZdlImWXur0CFakn2BJ2znJOdqYZKiedEPEVNTBrpfPjc/YuTGcaYZcdmNFTkUj3DU0ZM/AElcM8Ybww3xVLzA==",
578
+            "version": "4.35.0",
579
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.35.0.tgz",
580
+            "integrity": "sha512-uYQ2WfPaqz5QtVgMxfN6NpLD+no0MYHDBywl7itPYd3K5TjjSghNKmX8ic9S8NU8w81NVhJv/XojcHptRly7qQ==",
581
             "cpu": [
581
             "cpu": [
582
                 "arm"
582
                 "arm"
583
             ],
583
             ],
589
             ]
589
             ]
590
         },
590
         },
591
         "node_modules/@rollup/rollup-android-arm64": {
591
         "node_modules/@rollup/rollup-android-arm64": {
592
-            "version": "4.34.9",
593
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.9.tgz",
594
-            "integrity": "sha512-4KW7P53h6HtJf5Y608T1ISKvNIYLWRKMvfnG0c44M6In4DQVU58HZFEVhWINDZKp7FZps98G3gxwC1sb0wXUUg==",
592
+            "version": "4.35.0",
593
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.35.0.tgz",
594
+            "integrity": "sha512-FtKddj9XZudurLhdJnBl9fl6BwCJ3ky8riCXjEw3/UIbjmIY58ppWwPEvU3fNu+W7FUsAsB1CdH+7EQE6CXAPA==",
595
             "cpu": [
595
             "cpu": [
596
                 "arm64"
596
                 "arm64"
597
             ],
597
             ],
603
             ]
603
             ]
604
         },
604
         },
605
         "node_modules/@rollup/rollup-darwin-arm64": {
605
         "node_modules/@rollup/rollup-darwin-arm64": {
606
-            "version": "4.34.9",
607
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.9.tgz",
608
-            "integrity": "sha512-0CY3/K54slrzLDjOA7TOjN1NuLKERBgk9nY5V34mhmuu673YNb+7ghaDUs6N0ujXR7fz5XaS5Aa6d2TNxZd0OQ==",
606
+            "version": "4.35.0",
607
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.35.0.tgz",
608
+            "integrity": "sha512-Uk+GjOJR6CY844/q6r5DR/6lkPFOw0hjfOIzVx22THJXMxktXG6CbejseJFznU8vHcEBLpiXKY3/6xc+cBm65Q==",
609
             "cpu": [
609
             "cpu": [
610
                 "arm64"
610
                 "arm64"
611
             ],
611
             ],
617
             ]
617
             ]
618
         },
618
         },
619
         "node_modules/@rollup/rollup-darwin-x64": {
619
         "node_modules/@rollup/rollup-darwin-x64": {
620
-            "version": "4.34.9",
621
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.9.tgz",
622
-            "integrity": "sha512-eOojSEAi/acnsJVYRxnMkPFqcxSMFfrw7r2iD9Q32SGkb/Q9FpUY1UlAu1DH9T7j++gZ0lHjnm4OyH2vCI7l7Q==",
620
+            "version": "4.35.0",
621
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.35.0.tgz",
622
+            "integrity": "sha512-3IrHjfAS6Vkp+5bISNQnPogRAW5GAV1n+bNCrDwXmfMHbPl5EhTmWtfmwlJxFRUCBZ+tZ/OxDyU08aF6NI/N5Q==",
623
             "cpu": [
623
             "cpu": [
624
                 "x64"
624
                 "x64"
625
             ],
625
             ],
631
             ]
631
             ]
632
         },
632
         },
633
         "node_modules/@rollup/rollup-freebsd-arm64": {
633
         "node_modules/@rollup/rollup-freebsd-arm64": {
634
-            "version": "4.34.9",
635
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.9.tgz",
636
-            "integrity": "sha512-2lzjQPJbN5UnHm7bHIUKFMulGTQwdvOkouJDpPysJS+QFBGDJqcfh+CxxtG23Ik/9tEvnebQiylYoazFMAgrYw==",
634
+            "version": "4.35.0",
635
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.35.0.tgz",
636
+            "integrity": "sha512-sxjoD/6F9cDLSELuLNnY0fOrM9WA0KrM0vWm57XhrIMf5FGiN8D0l7fn+bpUeBSU7dCgPV2oX4zHAsAXyHFGcQ==",
637
             "cpu": [
637
             "cpu": [
638
                 "arm64"
638
                 "arm64"
639
             ],
639
             ],
645
             ]
645
             ]
646
         },
646
         },
647
         "node_modules/@rollup/rollup-freebsd-x64": {
647
         "node_modules/@rollup/rollup-freebsd-x64": {
648
-            "version": "4.34.9",
649
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.9.tgz",
650
-            "integrity": "sha512-SLl0hi2Ah2H7xQYd6Qaiu01kFPzQ+hqvdYSoOtHYg/zCIFs6t8sV95kaoqjzjFwuYQLtOI0RZre/Ke0nPaQV+g==",
648
+            "version": "4.35.0",
649
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.35.0.tgz",
650
+            "integrity": "sha512-2mpHCeRuD1u/2kruUiHSsnjWtHjqVbzhBkNVQ1aVD63CcexKVcQGwJ2g5VphOd84GvxfSvnnlEyBtQCE5hxVVw==",
651
             "cpu": [
651
             "cpu": [
652
                 "x64"
652
                 "x64"
653
             ],
653
             ],
659
             ]
659
             ]
660
         },
660
         },
661
         "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
661
         "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
662
-            "version": "4.34.9",
663
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.9.tgz",
664
-            "integrity": "sha512-88I+D3TeKItrw+Y/2ud4Tw0+3CxQ2kLgu3QvrogZ0OfkmX/DEppehus7L3TS2Q4lpB+hYyxhkQiYPJ6Mf5/dPg==",
662
+            "version": "4.35.0",
663
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.35.0.tgz",
664
+            "integrity": "sha512-mrA0v3QMy6ZSvEuLs0dMxcO2LnaCONs1Z73GUDBHWbY8tFFocM6yl7YyMu7rz4zS81NDSqhrUuolyZXGi8TEqg==",
665
             "cpu": [
665
             "cpu": [
666
                 "arm"
666
                 "arm"
667
             ],
667
             ],
673
             ]
673
             ]
674
         },
674
         },
675
         "node_modules/@rollup/rollup-linux-arm-musleabihf": {
675
         "node_modules/@rollup/rollup-linux-arm-musleabihf": {
676
-            "version": "4.34.9",
677
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.9.tgz",
678
-            "integrity": "sha512-3qyfWljSFHi9zH0KgtEPG4cBXHDFhwD8kwg6xLfHQ0IWuH9crp005GfoUUh/6w9/FWGBwEHg3lxK1iHRN1MFlA==",
676
+            "version": "4.35.0",
677
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.35.0.tgz",
678
+            "integrity": "sha512-DnYhhzcvTAKNexIql8pFajr0PiDGrIsBYPRvCKlA5ixSS3uwo/CWNZxB09jhIapEIg945KOzcYEAGGSmTSpk7A==",
679
             "cpu": [
679
             "cpu": [
680
                 "arm"
680
                 "arm"
681
             ],
681
             ],
687
             ]
687
             ]
688
         },
688
         },
689
         "node_modules/@rollup/rollup-linux-arm64-gnu": {
689
         "node_modules/@rollup/rollup-linux-arm64-gnu": {
690
-            "version": "4.34.9",
691
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.9.tgz",
692
-            "integrity": "sha512-6TZjPHjKZUQKmVKMUowF3ewHxctrRR09eYyvT5eFv8w/fXarEra83A2mHTVJLA5xU91aCNOUnM+DWFMSbQ0Nxw==",
690
+            "version": "4.35.0",
691
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.35.0.tgz",
692
+            "integrity": "sha512-uagpnH2M2g2b5iLsCTZ35CL1FgyuzzJQ8L9VtlJ+FckBXroTwNOaD0z0/UF+k5K3aNQjbm8LIVpxykUOQt1m/A==",
693
             "cpu": [
693
             "cpu": [
694
                 "arm64"
694
                 "arm64"
695
             ],
695
             ],
701
             ]
701
             ]
702
         },
702
         },
703
         "node_modules/@rollup/rollup-linux-arm64-musl": {
703
         "node_modules/@rollup/rollup-linux-arm64-musl": {
704
-            "version": "4.34.9",
705
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.9.tgz",
706
-            "integrity": "sha512-LD2fytxZJZ6xzOKnMbIpgzFOuIKlxVOpiMAXawsAZ2mHBPEYOnLRK5TTEsID6z4eM23DuO88X0Tq1mErHMVq0A==",
704
+            "version": "4.35.0",
705
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.35.0.tgz",
706
+            "integrity": "sha512-XQxVOCd6VJeHQA/7YcqyV0/88N6ysSVzRjJ9I9UA/xXpEsjvAgDTgH3wQYz5bmr7SPtVK2TsP2fQ2N9L4ukoUg==",
707
             "cpu": [
707
             "cpu": [
708
                 "arm64"
708
                 "arm64"
709
             ],
709
             ],
715
             ]
715
             ]
716
         },
716
         },
717
         "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
717
         "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
718
-            "version": "4.34.9",
719
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.9.tgz",
720
-            "integrity": "sha512-dRAgTfDsn0TE0HI6cmo13hemKpVHOEyeciGtvlBTkpx/F65kTvShtY/EVyZEIfxFkV5JJTuQ9tP5HGBS0hfxIg==",
718
+            "version": "4.35.0",
719
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.35.0.tgz",
720
+            "integrity": "sha512-5pMT5PzfgwcXEwOaSrqVsz/LvjDZt+vQ8RT/70yhPU06PTuq8WaHhfT1LW+cdD7mW6i/J5/XIkX/1tCAkh1W6g==",
721
             "cpu": [
721
             "cpu": [
722
                 "loong64"
722
                 "loong64"
723
             ],
723
             ],
729
             ]
729
             ]
730
         },
730
         },
731
         "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
731
         "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
732
-            "version": "4.34.9",
733
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.9.tgz",
734
-            "integrity": "sha512-PHcNOAEhkoMSQtMf+rJofwisZqaU8iQ8EaSps58f5HYll9EAY5BSErCZ8qBDMVbq88h4UxaNPlbrKqfWP8RfJA==",
732
+            "version": "4.35.0",
733
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.35.0.tgz",
734
+            "integrity": "sha512-c+zkcvbhbXF98f4CtEIP1EBA/lCic5xB0lToneZYvMeKu5Kamq3O8gqrxiYYLzlZH6E3Aq+TSW86E4ay8iD8EA==",
735
             "cpu": [
735
             "cpu": [
736
                 "ppc64"
736
                 "ppc64"
737
             ],
737
             ],
743
             ]
743
             ]
744
         },
744
         },
745
         "node_modules/@rollup/rollup-linux-riscv64-gnu": {
745
         "node_modules/@rollup/rollup-linux-riscv64-gnu": {
746
-            "version": "4.34.9",
747
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.9.tgz",
748
-            "integrity": "sha512-Z2i0Uy5G96KBYKjeQFKbbsB54xFOL5/y1P5wNBsbXB8yE+At3oh0DVMjQVzCJRJSfReiB2tX8T6HUFZ2k8iaKg==",
746
+            "version": "4.35.0",
747
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.35.0.tgz",
748
+            "integrity": "sha512-s91fuAHdOwH/Tad2tzTtPX7UZyytHIRR6V4+2IGlV0Cej5rkG0R61SX4l4y9sh0JBibMiploZx3oHKPnQBKe4g==",
749
             "cpu": [
749
             "cpu": [
750
                 "riscv64"
750
                 "riscv64"
751
             ],
751
             ],
757
             ]
757
             ]
758
         },
758
         },
759
         "node_modules/@rollup/rollup-linux-s390x-gnu": {
759
         "node_modules/@rollup/rollup-linux-s390x-gnu": {
760
-            "version": "4.34.9",
761
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.9.tgz",
762
-            "integrity": "sha512-U+5SwTMoeYXoDzJX5dhDTxRltSrIax8KWwfaaYcynuJw8mT33W7oOgz0a+AaXtGuvhzTr2tVKh5UO8GVANTxyQ==",
760
+            "version": "4.35.0",
761
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.35.0.tgz",
762
+            "integrity": "sha512-hQRkPQPLYJZYGP+Hj4fR9dDBMIM7zrzJDWFEMPdTnTy95Ljnv0/4w/ixFw3pTBMEuuEuoqtBINYND4M7ujcuQw==",
763
             "cpu": [
763
             "cpu": [
764
                 "s390x"
764
                 "s390x"
765
             ],
765
             ],
771
             ]
771
             ]
772
         },
772
         },
773
         "node_modules/@rollup/rollup-linux-x64-gnu": {
773
         "node_modules/@rollup/rollup-linux-x64-gnu": {
774
-            "version": "4.34.9",
775
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.9.tgz",
776
-            "integrity": "sha512-FwBHNSOjUTQLP4MG7y6rR6qbGw4MFeQnIBrMe161QGaQoBQLqSUEKlHIiVgF3g/mb3lxlxzJOpIBhaP+C+KP2A==",
774
+            "version": "4.35.0",
775
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.35.0.tgz",
776
+            "integrity": "sha512-Pim1T8rXOri+0HmV4CdKSGrqcBWX0d1HoPnQ0uw0bdp1aP5SdQVNBy8LjYncvnLgu3fnnCt17xjWGd4cqh8/hA==",
777
             "cpu": [
777
             "cpu": [
778
                 "x64"
778
                 "x64"
779
             ],
779
             ],
785
             ]
785
             ]
786
         },
786
         },
787
         "node_modules/@rollup/rollup-linux-x64-musl": {
787
         "node_modules/@rollup/rollup-linux-x64-musl": {
788
-            "version": "4.34.9",
789
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.9.tgz",
790
-            "integrity": "sha512-cYRpV4650z2I3/s6+5/LONkjIz8MBeqrk+vPXV10ORBnshpn8S32bPqQ2Utv39jCiDcO2eJTuSlPXpnvmaIgRA==",
788
+            "version": "4.35.0",
789
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.35.0.tgz",
790
+            "integrity": "sha512-QysqXzYiDvQWfUiTm8XmJNO2zm9yC9P/2Gkrwg2dH9cxotQzunBHYr6jk4SujCTqnfGxduOmQcI7c2ryuW8XVg==",
791
             "cpu": [
791
             "cpu": [
792
                 "x64"
792
                 "x64"
793
             ],
793
             ],
799
             ]
799
             ]
800
         },
800
         },
801
         "node_modules/@rollup/rollup-win32-arm64-msvc": {
801
         "node_modules/@rollup/rollup-win32-arm64-msvc": {
802
-            "version": "4.34.9",
803
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.9.tgz",
804
-            "integrity": "sha512-z4mQK9dAN6byRA/vsSgQiPeuO63wdiDxZ9yg9iyX2QTzKuQM7T4xlBoeUP/J8uiFkqxkcWndWi+W7bXdPbt27Q==",
802
+            "version": "4.35.0",
803
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.35.0.tgz",
804
+            "integrity": "sha512-OUOlGqPkVJCdJETKOCEf1mw848ZyJ5w50/rZ/3IBQVdLfR5jk/6Sr5m3iO2tdPgwo0x7VcncYuOvMhBWZq8ayg==",
805
             "cpu": [
805
             "cpu": [
806
                 "arm64"
806
                 "arm64"
807
             ],
807
             ],
813
             ]
813
             ]
814
         },
814
         },
815
         "node_modules/@rollup/rollup-win32-ia32-msvc": {
815
         "node_modules/@rollup/rollup-win32-ia32-msvc": {
816
-            "version": "4.34.9",
817
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.9.tgz",
818
-            "integrity": "sha512-KB48mPtaoHy1AwDNkAJfHXvHp24H0ryZog28spEs0V48l3H1fr4i37tiyHsgKZJnCmvxsbATdZGBpbmxTE3a9w==",
816
+            "version": "4.35.0",
817
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.35.0.tgz",
818
+            "integrity": "sha512-2/lsgejMrtwQe44glq7AFFHLfJBPafpsTa6JvP2NGef/ifOa4KBoglVf7AKN7EV9o32evBPRqfg96fEHzWo5kw==",
819
             "cpu": [
819
             "cpu": [
820
                 "ia32"
820
                 "ia32"
821
             ],
821
             ],
827
             ]
827
             ]
828
         },
828
         },
829
         "node_modules/@rollup/rollup-win32-x64-msvc": {
829
         "node_modules/@rollup/rollup-win32-x64-msvc": {
830
-            "version": "4.34.9",
831
-            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.9.tgz",
832
-            "integrity": "sha512-AyleYRPU7+rgkMWbEh71fQlrzRfeP6SyMnRf9XX4fCdDPAJumdSBqYEcWPMzVQ4ScAl7E4oFfK0GUVn77xSwbw==",
830
+            "version": "4.35.0",
831
+            "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.35.0.tgz",
832
+            "integrity": "sha512-PIQeY5XDkrOysbQblSW7v3l1MDZzkTEzAfTPkj5VAu3FW8fS4ynyLg2sINp0fp3SjZ8xkRYpLqoKcYqAkhU1dw==",
833
             "cpu": [
833
             "cpu": [
834
                 "x64"
834
                 "x64"
835
             ],
835
             ],
976
             }
976
             }
977
         },
977
         },
978
         "node_modules/axios": {
978
         "node_modules/axios": {
979
-            "version": "1.8.1",
980
-            "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.1.tgz",
981
-            "integrity": "sha512-NN+fvwH/kV01dYUQ3PTOZns4LWtWhOFCAhQ/pHb88WQ1hNe5V/dvFwc4VJcDL11LT9xSX0QtsR8sWUuyOuOq7g==",
979
+            "version": "1.8.2",
980
+            "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.2.tgz",
981
+            "integrity": "sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==",
982
             "dev": true,
982
             "dev": true,
983
             "license": "MIT",
983
             "license": "MIT",
984
             "dependencies": {
984
             "dependencies": {
1264
             "license": "MIT"
1264
             "license": "MIT"
1265
         },
1265
         },
1266
         "node_modules/electron-to-chromium": {
1266
         "node_modules/electron-to-chromium": {
1267
-            "version": "1.5.112",
1268
-            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.112.tgz",
1269
-            "integrity": "sha512-oen93kVyqSb3l+ziUgzIOlWt/oOuy4zRmpwestMn4rhFWAoFJeFuCVte9F2fASjeZZo7l/Cif9TiyrdW4CwEMA==",
1267
+            "version": "1.5.113",
1268
+            "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.113.tgz",
1269
+            "integrity": "sha512-wjT2O4hX+wdWPJ76gWSkMhcHAV2PTMX+QetUCPYEdCIe+cxmgzzSSiGRCKW8nuh4mwKZlpv0xvoW7OF2X+wmHg==",
1270
             "dev": true,
1270
             "dev": true,
1271
             "license": "ISC"
1271
             "license": "ISC"
1272
         },
1272
         },
1930
             }
1930
             }
1931
         },
1931
         },
1932
         "node_modules/nanoid": {
1932
         "node_modules/nanoid": {
1933
-            "version": "3.3.8",
1934
-            "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
1935
-            "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
1933
+            "version": "3.3.9",
1934
+            "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.9.tgz",
1935
+            "integrity": "sha512-SppoicMGpZvbF1l3z4x7No3OlIjP7QJvC9XR7AhZr1kL133KHnKPztkKDc+Ir4aJ/1VhTySrtKhrsycmrMQfvg==",
1936
             "dev": true,
1936
             "dev": true,
1937
             "funding": [
1937
             "funding": [
1938
                 {
1938
                 {
2412
             }
2412
             }
2413
         },
2413
         },
2414
         "node_modules/rollup": {
2414
         "node_modules/rollup": {
2415
-            "version": "4.34.9",
2416
-            "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.9.tgz",
2417
-            "integrity": "sha512-nF5XYqWWp9hx/LrpC8sZvvvmq0TeTjQgaZHYmAgwysT9nh8sWnZhBnM8ZyVbbJFIQBLwHDNoMqsBZBbUo4U8sQ==",
2415
+            "version": "4.35.0",
2416
+            "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.35.0.tgz",
2417
+            "integrity": "sha512-kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg==",
2418
             "dev": true,
2418
             "dev": true,
2419
             "license": "MIT",
2419
             "license": "MIT",
2420
             "dependencies": {
2420
             "dependencies": {
2428
                 "npm": ">=8.0.0"
2428
                 "npm": ">=8.0.0"
2429
             },
2429
             },
2430
             "optionalDependencies": {
2430
             "optionalDependencies": {
2431
-                "@rollup/rollup-android-arm-eabi": "4.34.9",
2432
-                "@rollup/rollup-android-arm64": "4.34.9",
2433
-                "@rollup/rollup-darwin-arm64": "4.34.9",
2434
-                "@rollup/rollup-darwin-x64": "4.34.9",
2435
-                "@rollup/rollup-freebsd-arm64": "4.34.9",
2436
-                "@rollup/rollup-freebsd-x64": "4.34.9",
2437
-                "@rollup/rollup-linux-arm-gnueabihf": "4.34.9",
2438
-                "@rollup/rollup-linux-arm-musleabihf": "4.34.9",
2439
-                "@rollup/rollup-linux-arm64-gnu": "4.34.9",
2440
-                "@rollup/rollup-linux-arm64-musl": "4.34.9",
2441
-                "@rollup/rollup-linux-loongarch64-gnu": "4.34.9",
2442
-                "@rollup/rollup-linux-powerpc64le-gnu": "4.34.9",
2443
-                "@rollup/rollup-linux-riscv64-gnu": "4.34.9",
2444
-                "@rollup/rollup-linux-s390x-gnu": "4.34.9",
2445
-                "@rollup/rollup-linux-x64-gnu": "4.34.9",
2446
-                "@rollup/rollup-linux-x64-musl": "4.34.9",
2447
-                "@rollup/rollup-win32-arm64-msvc": "4.34.9",
2448
-                "@rollup/rollup-win32-ia32-msvc": "4.34.9",
2449
-                "@rollup/rollup-win32-x64-msvc": "4.34.9",
2431
+                "@rollup/rollup-android-arm-eabi": "4.35.0",
2432
+                "@rollup/rollup-android-arm64": "4.35.0",
2433
+                "@rollup/rollup-darwin-arm64": "4.35.0",
2434
+                "@rollup/rollup-darwin-x64": "4.35.0",
2435
+                "@rollup/rollup-freebsd-arm64": "4.35.0",
2436
+                "@rollup/rollup-freebsd-x64": "4.35.0",
2437
+                "@rollup/rollup-linux-arm-gnueabihf": "4.35.0",
2438
+                "@rollup/rollup-linux-arm-musleabihf": "4.35.0",
2439
+                "@rollup/rollup-linux-arm64-gnu": "4.35.0",
2440
+                "@rollup/rollup-linux-arm64-musl": "4.35.0",
2441
+                "@rollup/rollup-linux-loongarch64-gnu": "4.35.0",
2442
+                "@rollup/rollup-linux-powerpc64le-gnu": "4.35.0",
2443
+                "@rollup/rollup-linux-riscv64-gnu": "4.35.0",
2444
+                "@rollup/rollup-linux-s390x-gnu": "4.35.0",
2445
+                "@rollup/rollup-linux-x64-gnu": "4.35.0",
2446
+                "@rollup/rollup-linux-x64-musl": "4.35.0",
2447
+                "@rollup/rollup-win32-arm64-msvc": "4.35.0",
2448
+                "@rollup/rollup-win32-ia32-msvc": "4.35.0",
2449
+                "@rollup/rollup-win32-x64-msvc": "4.35.0",
2450
                 "fsevents": "~2.3.2"
2450
                 "fsevents": "~2.3.2"
2451
             }
2451
             }
2452
         },
2452
         },
2794
             "license": "MIT"
2794
             "license": "MIT"
2795
         },
2795
         },
2796
         "node_modules/vite": {
2796
         "node_modules/vite": {
2797
-            "version": "6.2.0",
2798
-            "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.0.tgz",
2799
-            "integrity": "sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==",
2797
+            "version": "6.2.1",
2798
+            "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.1.tgz",
2799
+            "integrity": "sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==",
2800
             "dev": true,
2800
             "dev": true,
2801
             "license": "MIT",
2801
             "license": "MIT",
2802
             "dependencies": {
2802
             "dependencies": {

Loading…
Cancel
Save