@gcorevideo/player 2.8.1 → 2.9.0

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.
package/dist/index.js CHANGED
@@ -12155,6 +12155,141 @@ function EventLite() {
12155
12155
 
12156
12156
  // })(EventLite);
12157
12157
 
12158
+ const APP_NAME = "gplayer";
12159
+ class DebuggerWrapper {
12160
+ writer;
12161
+ namespace;
12162
+ currentWriter;
12163
+ constructor(writer, namespace, enabled = true) {
12164
+ this.writer = writer;
12165
+ this.namespace = namespace;
12166
+ this.currentWriter = enabled ? writer : nullWriter;
12167
+ }
12168
+ enable() {
12169
+ this.currentWriter = this.writer;
12170
+ }
12171
+ disable() {
12172
+ this.currentWriter = nullWriter;
12173
+ }
12174
+ write = (m, ...args) => {
12175
+ const tokens = args.map((_) => "%s");
12176
+ if (typeof m === "string" || args.length > 0) {
12177
+ tokens.unshift("%s");
12178
+ }
12179
+ this.currentWriter(`${this.namespace}: ${tokens.join(' ')}`, m, ...args.map(a => JSON.stringify(a)));
12180
+ };
12181
+ }
12182
+ const currentPatterns = [];
12183
+ function parsePattern(pattern) {
12184
+ if (pattern === "*") {
12185
+ return /.?/;
12186
+ }
12187
+ return new RegExp("^" + pattern.replace(/\*/g, "[@\\w-]+"), "i");
12188
+ }
12189
+ function pass(namespace) {
12190
+ return currentPatterns.some((p) => p.test(namespace));
12191
+ }
12192
+ function nullWriter() { }
12193
+ /**
12194
+ * Logging utility with [debug](https://www.npmjs.com/package/debug)-like API
12195
+ * @beta
12196
+ */
12197
+ class Logger {
12198
+ info;
12199
+ warn;
12200
+ error;
12201
+ debug;
12202
+ static items = [];
12203
+ constructor(namespace, appName = APP_NAME) {
12204
+ const ns = namespace ? `:${namespace}` : "";
12205
+ const info = new DebuggerWrapper(console.info.bind(console), `${appName}:INFO${ns}`, pass(namespace));
12206
+ this.info = info.write;
12207
+ const warn = new DebuggerWrapper(console.warn.bind(console), `${appName}:WARN${ns}`, pass(namespace));
12208
+ this.warn = warn.write;
12209
+ const error = new DebuggerWrapper(console.error.bind(console), `${appName}:ERROR${ns}`, pass(namespace));
12210
+ this.error = error.write;
12211
+ const debug = new DebuggerWrapper(console.debug.bind(console), `${appName}:DEBUG${ns}`, pass(namespace));
12212
+ this.debug = debug.write;
12213
+ Logger.items.push(warn);
12214
+ Logger.items.push(info);
12215
+ Logger.items.push(error);
12216
+ Logger.items.push(debug);
12217
+ }
12218
+ /**
12219
+ * @param patterns - comma-separated list of patterns, can contain '*' as a wildcard
12220
+ */
12221
+ static enable(patterns) {
12222
+ currentPatterns.splice(0, currentPatterns.length, ...patterns.split(",").filter(Boolean).map(parsePattern));
12223
+ Logger.toggleItems();
12224
+ }
12225
+ static disable() {
12226
+ currentPatterns.splice(0, currentPatterns.length);
12227
+ }
12228
+ static toggleItems() {
12229
+ for (const w of Logger.items) {
12230
+ if (pass(w.namespace)) {
12231
+ w.enable();
12232
+ }
12233
+ else {
12234
+ w.disable();
12235
+ }
12236
+ }
12237
+ }
12238
+ }
12239
+
12240
+ /**
12241
+ * A tracer that logs to the console
12242
+ * @public
12243
+ */
12244
+ class LogTracer {
12245
+ logger;
12246
+ constructor(ns = "") {
12247
+ this.logger = new Logger(ns);
12248
+ }
12249
+ reportError(e) {
12250
+ this.logger.error(e);
12251
+ }
12252
+ trace(msg, data) {
12253
+ this.logger.debug(msg, data);
12254
+ }
12255
+ }
12256
+ // export class LogTracer implements Tracer {
12257
+ // private tags: Record<string, TagValue> = {};
12258
+ // reportError(e: Error) {
12259
+ // logger.error(e, this.tags);
12260
+ // }
12261
+ // setTag(name: string, value: TagValue) {
12262
+ // this.tags[name] = value;
12263
+ // }
12264
+ // trace(msg: string, data?: Record<string, unknown>) {
12265
+ // const fullData = Object.assign({}, this.tags, data);
12266
+ // logger.debug(msg, fullData);
12267
+ // }
12268
+ // }
12269
+
12270
+ /**
12271
+ * @beta
12272
+ */
12273
+ class SentryTracer {
12274
+ client;
12275
+ scope;
12276
+ constructor(client, scope) {
12277
+ this.client = client;
12278
+ this.scope = scope;
12279
+ }
12280
+ reportError(e) {
12281
+ this.client.captureException(e);
12282
+ }
12283
+ trace(message, data) {
12284
+ this.scope.addBreadcrumb({
12285
+ type: "default",
12286
+ level: "info",
12287
+ message,
12288
+ data,
12289
+ });
12290
+ }
12291
+ }
12292
+
12158
12293
  const tracer = {
12159
12294
  trace: () => { },
12160
12295
  reportError: () => { },
@@ -42419,137 +42554,16 @@ class Player {
42419
42554
  }
42420
42555
  }
42421
42556
 
42422
- const APP_NAME = "gplayer";
42423
- class DebuggerWrapper {
42424
- writer;
42425
- namespace;
42426
- currentWriter;
42427
- constructor(writer, namespace, enabled = true) {
42428
- this.writer = writer;
42429
- this.namespace = namespace;
42430
- this.currentWriter = enabled ? writer : nullWriter;
42431
- }
42432
- enable() {
42433
- this.currentWriter = this.writer;
42434
- }
42435
- disable() {
42436
- this.currentWriter = nullWriter;
42437
- }
42438
- write = (m, ...args) => {
42439
- const tokens = args.map((_) => "%s");
42440
- if (typeof m === "string" || args.length > 0) {
42441
- tokens.unshift("%s");
42442
- }
42443
- this.currentWriter(`${this.namespace}: ${tokens.join(' ')}`, m, ...args.map(a => JSON.stringify(a)));
42444
- };
42445
- }
42446
- const currentPatterns = [];
42447
- function parsePattern(pattern) {
42448
- if (pattern === "*") {
42449
- return /.?/;
42450
- }
42451
- return new RegExp("^" + pattern.replace(/\*/g, "[@\\w-]+"), "i");
42452
- }
42453
- function pass(namespace) {
42454
- return currentPatterns.some((p) => p.test(namespace));
42455
- }
42456
- function nullWriter() { }
42457
- /**
42458
- * Logging utility with [debug](https://www.npmjs.com/package/debug)-like API
42459
- * @beta
42460
- */
42461
- class Logger {
42462
- info;
42463
- warn;
42464
- error;
42465
- debug;
42466
- static items = [];
42467
- constructor(namespace, appName = APP_NAME) {
42468
- const ns = namespace ? `:${namespace}` : "";
42469
- const info = new DebuggerWrapper(console.info.bind(console), `${appName}:INFO${ns}`, pass(namespace));
42470
- this.info = info.write;
42471
- const warn = new DebuggerWrapper(console.warn.bind(console), `${appName}:WARN${ns}`, pass(namespace));
42472
- this.warn = warn.write;
42473
- const error = new DebuggerWrapper(console.error.bind(console), `${appName}:ERROR${ns}`, pass(namespace));
42474
- this.error = error.write;
42475
- const debug = new DebuggerWrapper(console.debug.bind(console), `${appName}:DEBUG${ns}`, pass(namespace));
42476
- this.debug = debug.write;
42477
- Logger.items.push(warn);
42478
- Logger.items.push(info);
42479
- Logger.items.push(error);
42480
- Logger.items.push(debug);
42481
- }
42482
- /**
42483
- * @param patterns - comma-separated list of patterns, can contain '*' as a wildcard
42484
- */
42485
- static enable(patterns) {
42486
- currentPatterns.splice(0, currentPatterns.length, ...patterns.split(",").filter(Boolean).map(parsePattern));
42487
- Logger.toggleItems();
42488
- }
42489
- static disable() {
42490
- currentPatterns.splice(0, currentPatterns.length);
42491
- }
42492
- static toggleItems() {
42493
- for (const w of Logger.items) {
42494
- if (pass(w.namespace)) {
42495
- w.enable();
42496
- }
42497
- else {
42498
- w.disable();
42499
- }
42500
- }
42501
- }
42502
- }
42503
-
42504
- /**
42505
- * A tracer that logs to the console
42506
- * @public
42507
- */
42508
- class LogTracer {
42509
- logger;
42510
- constructor(ns = "") {
42511
- this.logger = new Logger(ns);
42512
- }
42513
- reportError(e) {
42514
- this.logger.error(e);
42515
- }
42516
- trace(msg, data) {
42517
- this.logger.debug(msg, data);
42518
- }
42519
- }
42520
-
42521
- /**
42522
- * @beta
42523
- */
42524
- class SentryTracer {
42525
- client;
42526
- scope;
42527
- constructor(client, scope) {
42528
- this.client = client;
42529
- this.scope = scope;
42530
- }
42531
- reportError(e) {
42532
- this.client.captureException(e);
42533
- }
42534
- trace(message, data) {
42535
- this.scope.addBreadcrumb({
42536
- type: "default",
42537
- level: "info",
42538
- message,
42539
- data,
42540
- });
42541
- }
42542
- }
42543
-
42544
- var version$1 = "2.8.1";
42557
+ var version$1 = "2.9.0";
42545
42558
 
42546
42559
  var packages = {
42547
42560
  "": {
42548
42561
  name: "@gcorevideo/player",
42549
- version: "2.8.1",
42562
+ version: "2.9.0",
42550
42563
  license: "Apache-2.0",
42551
42564
  dependencies: {
42552
42565
  "@clappr/core": "^0.11.3",
42566
+ "@gcorevideo/utils": "^0.0.1",
42553
42567
  "@sentry/types": "^8.47.0",
42554
42568
  dashjs: "^4.7.4",
42555
42569
  "event-lite": "^1.0.0",
@@ -42563,18 +42577,37 @@ var packages = {
42563
42577
  assert: "^2.1.0",
42564
42578
  rollup: "^4.27.4",
42565
42579
  "rollup-plugin-polyfill-node": "^0.13.0",
42566
- "rollup-plugin-sass": "^1.14.0",
42567
- "rollup-plugin-string": "^3.0.0",
42568
- sass: "^1.83.0",
42569
42580
  typescript: "^5.7.2"
42570
42581
  }
42571
42582
  },
42583
+ "../utils": {
42584
+ name: "@gcorevideo/utils",
42585
+ version: "0.0.1",
42586
+ extraneous: true,
42587
+ license: "Apache-2.0",
42588
+ dependencies: {
42589
+ "@sentry/types": "^8.51.0"
42590
+ },
42591
+ devDependencies: {
42592
+ "@types/node": "^22.10.10",
42593
+ typescript: "^5.7.3"
42594
+ }
42595
+ },
42572
42596
  "node_modules/@clappr/core": {
42573
42597
  version: "0.11.4",
42574
42598
  resolved: "https://registry.npmjs.org/@clappr/core/-/core-0.11.4.tgz",
42575
42599
  integrity: "sha512-JC/YtMRhB7fmw4/jAD7Rocom0mdlUDKyJRH/6aEKk3gTzHdqQIzH5pnm/k2CJCG31XFBOZLvYo5vk0Y1EPmtAw==",
42576
42600
  license: "BSD-3-Clause"
42577
42601
  },
42602
+ "node_modules/@gcorevideo/utils": {
42603
+ version: "0.0.1",
42604
+ resolved: "https://registry.npmjs.org/@gcorevideo/utils/-/utils-0.0.1.tgz",
42605
+ integrity: "sha512-bPs7hPNCcK96WXYRLOqR100ornSaue7r13AdnNCkwTUW+5AostAs43hmmFihvRRDgXTAf1JMIbf2/jumeJJedg==",
42606
+ license: "Apache-2.0",
42607
+ dependencies: {
42608
+ "@sentry/types": "^8.51.0"
42609
+ }
42610
+ },
42578
42611
  "node_modules/@jridgewell/sourcemap-codec": {
42579
42612
  version: "1.5.0",
42580
42613
  resolved: "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz",
@@ -42582,316 +42615,6 @@ var packages = {
42582
42615
  dev: true,
42583
42616
  license: "MIT"
42584
42617
  },
42585
- "node_modules/@parcel/watcher": {
42586
- version: "2.5.0",
42587
- resolved: "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz",
42588
- integrity: "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==",
42589
- dev: true,
42590
- hasInstallScript: true,
42591
- license: "MIT",
42592
- optional: true,
42593
- dependencies: {
42594
- "detect-libc": "^1.0.3",
42595
- "is-glob": "^4.0.3",
42596
- micromatch: "^4.0.5",
42597
- "node-addon-api": "^7.0.0"
42598
- },
42599
- engines: {
42600
- node: ">= 10.0.0"
42601
- },
42602
- funding: {
42603
- type: "opencollective",
42604
- url: "https://opencollective.com/parcel"
42605
- },
42606
- optionalDependencies: {
42607
- "@parcel/watcher-android-arm64": "2.5.0",
42608
- "@parcel/watcher-darwin-arm64": "2.5.0",
42609
- "@parcel/watcher-darwin-x64": "2.5.0",
42610
- "@parcel/watcher-freebsd-x64": "2.5.0",
42611
- "@parcel/watcher-linux-arm-glibc": "2.5.0",
42612
- "@parcel/watcher-linux-arm-musl": "2.5.0",
42613
- "@parcel/watcher-linux-arm64-glibc": "2.5.0",
42614
- "@parcel/watcher-linux-arm64-musl": "2.5.0",
42615
- "@parcel/watcher-linux-x64-glibc": "2.5.0",
42616
- "@parcel/watcher-linux-x64-musl": "2.5.0",
42617
- "@parcel/watcher-win32-arm64": "2.5.0",
42618
- "@parcel/watcher-win32-ia32": "2.5.0",
42619
- "@parcel/watcher-win32-x64": "2.5.0"
42620
- }
42621
- },
42622
- "node_modules/@parcel/watcher-android-arm64": {
42623
- version: "2.5.0",
42624
- resolved: "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz",
42625
- integrity: "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==",
42626
- cpu: [
42627
- "arm64"
42628
- ],
42629
- dev: true,
42630
- license: "MIT",
42631
- optional: true,
42632
- os: [
42633
- "android"
42634
- ],
42635
- engines: {
42636
- node: ">= 10.0.0"
42637
- },
42638
- funding: {
42639
- type: "opencollective",
42640
- url: "https://opencollective.com/parcel"
42641
- }
42642
- },
42643
- "node_modules/@parcel/watcher-darwin-arm64": {
42644
- version: "2.5.0",
42645
- resolved: "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz",
42646
- integrity: "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==",
42647
- cpu: [
42648
- "arm64"
42649
- ],
42650
- dev: true,
42651
- license: "MIT",
42652
- optional: true,
42653
- os: [
42654
- "darwin"
42655
- ],
42656
- engines: {
42657
- node: ">= 10.0.0"
42658
- },
42659
- funding: {
42660
- type: "opencollective",
42661
- url: "https://opencollective.com/parcel"
42662
- }
42663
- },
42664
- "node_modules/@parcel/watcher-darwin-x64": {
42665
- version: "2.5.0",
42666
- resolved: "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz",
42667
- integrity: "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==",
42668
- cpu: [
42669
- "x64"
42670
- ],
42671
- dev: true,
42672
- license: "MIT",
42673
- optional: true,
42674
- os: [
42675
- "darwin"
42676
- ],
42677
- engines: {
42678
- node: ">= 10.0.0"
42679
- },
42680
- funding: {
42681
- type: "opencollective",
42682
- url: "https://opencollective.com/parcel"
42683
- }
42684
- },
42685
- "node_modules/@parcel/watcher-freebsd-x64": {
42686
- version: "2.5.0",
42687
- resolved: "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz",
42688
- integrity: "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==",
42689
- cpu: [
42690
- "x64"
42691
- ],
42692
- dev: true,
42693
- license: "MIT",
42694
- optional: true,
42695
- os: [
42696
- "freebsd"
42697
- ],
42698
- engines: {
42699
- node: ">= 10.0.0"
42700
- },
42701
- funding: {
42702
- type: "opencollective",
42703
- url: "https://opencollective.com/parcel"
42704
- }
42705
- },
42706
- "node_modules/@parcel/watcher-linux-arm-glibc": {
42707
- version: "2.5.0",
42708
- resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz",
42709
- integrity: "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==",
42710
- cpu: [
42711
- "arm"
42712
- ],
42713
- dev: true,
42714
- license: "MIT",
42715
- optional: true,
42716
- os: [
42717
- "linux"
42718
- ],
42719
- engines: {
42720
- node: ">= 10.0.0"
42721
- },
42722
- funding: {
42723
- type: "opencollective",
42724
- url: "https://opencollective.com/parcel"
42725
- }
42726
- },
42727
- "node_modules/@parcel/watcher-linux-arm-musl": {
42728
- version: "2.5.0",
42729
- resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz",
42730
- integrity: "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==",
42731
- cpu: [
42732
- "arm"
42733
- ],
42734
- dev: true,
42735
- license: "MIT",
42736
- optional: true,
42737
- os: [
42738
- "linux"
42739
- ],
42740
- engines: {
42741
- node: ">= 10.0.0"
42742
- },
42743
- funding: {
42744
- type: "opencollective",
42745
- url: "https://opencollective.com/parcel"
42746
- }
42747
- },
42748
- "node_modules/@parcel/watcher-linux-arm64-glibc": {
42749
- version: "2.5.0",
42750
- resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz",
42751
- integrity: "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==",
42752
- cpu: [
42753
- "arm64"
42754
- ],
42755
- dev: true,
42756
- license: "MIT",
42757
- optional: true,
42758
- os: [
42759
- "linux"
42760
- ],
42761
- engines: {
42762
- node: ">= 10.0.0"
42763
- },
42764
- funding: {
42765
- type: "opencollective",
42766
- url: "https://opencollective.com/parcel"
42767
- }
42768
- },
42769
- "node_modules/@parcel/watcher-linux-arm64-musl": {
42770
- version: "2.5.0",
42771
- resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz",
42772
- integrity: "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==",
42773
- cpu: [
42774
- "arm64"
42775
- ],
42776
- dev: true,
42777
- license: "MIT",
42778
- optional: true,
42779
- os: [
42780
- "linux"
42781
- ],
42782
- engines: {
42783
- node: ">= 10.0.0"
42784
- },
42785
- funding: {
42786
- type: "opencollective",
42787
- url: "https://opencollective.com/parcel"
42788
- }
42789
- },
42790
- "node_modules/@parcel/watcher-linux-x64-glibc": {
42791
- version: "2.5.0",
42792
- resolved: "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz",
42793
- integrity: "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==",
42794
- cpu: [
42795
- "x64"
42796
- ],
42797
- dev: true,
42798
- license: "MIT",
42799
- optional: true,
42800
- os: [
42801
- "linux"
42802
- ],
42803
- engines: {
42804
- node: ">= 10.0.0"
42805
- },
42806
- funding: {
42807
- type: "opencollective",
42808
- url: "https://opencollective.com/parcel"
42809
- }
42810
- },
42811
- "node_modules/@parcel/watcher-linux-x64-musl": {
42812
- version: "2.5.0",
42813
- resolved: "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz",
42814
- integrity: "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==",
42815
- cpu: [
42816
- "x64"
42817
- ],
42818
- dev: true,
42819
- license: "MIT",
42820
- optional: true,
42821
- os: [
42822
- "linux"
42823
- ],
42824
- engines: {
42825
- node: ">= 10.0.0"
42826
- },
42827
- funding: {
42828
- type: "opencollective",
42829
- url: "https://opencollective.com/parcel"
42830
- }
42831
- },
42832
- "node_modules/@parcel/watcher-win32-arm64": {
42833
- version: "2.5.0",
42834
- resolved: "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz",
42835
- integrity: "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==",
42836
- cpu: [
42837
- "arm64"
42838
- ],
42839
- dev: true,
42840
- license: "MIT",
42841
- optional: true,
42842
- os: [
42843
- "win32"
42844
- ],
42845
- engines: {
42846
- node: ">= 10.0.0"
42847
- },
42848
- funding: {
42849
- type: "opencollective",
42850
- url: "https://opencollective.com/parcel"
42851
- }
42852
- },
42853
- "node_modules/@parcel/watcher-win32-ia32": {
42854
- version: "2.5.0",
42855
- resolved: "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz",
42856
- integrity: "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==",
42857
- cpu: [
42858
- "ia32"
42859
- ],
42860
- dev: true,
42861
- license: "MIT",
42862
- optional: true,
42863
- os: [
42864
- "win32"
42865
- ],
42866
- engines: {
42867
- node: ">= 10.0.0"
42868
- },
42869
- funding: {
42870
- type: "opencollective",
42871
- url: "https://opencollective.com/parcel"
42872
- }
42873
- },
42874
- "node_modules/@parcel/watcher-win32-x64": {
42875
- version: "2.5.0",
42876
- resolved: "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz",
42877
- integrity: "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==",
42878
- cpu: [
42879
- "x64"
42880
- ],
42881
- dev: true,
42882
- license: "MIT",
42883
- optional: true,
42884
- os: [
42885
- "win32"
42886
- ],
42887
- engines: {
42888
- node: ">= 10.0.0"
42889
- },
42890
- funding: {
42891
- type: "opencollective",
42892
- url: "https://opencollective.com/parcel"
42893
- }
42894
- },
42895
42618
  "node_modules/@rollup/plugin-commonjs": {
42896
42619
  version: "28.0.1",
42897
42620
  resolved: "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.1.tgz",
@@ -43263,19 +42986,21 @@ var packages = {
43263
42986
  ]
43264
42987
  },
43265
42988
  "node_modules/@sentry/core": {
43266
- version: "8.47.0",
43267
- resolved: "https://registry.npmjs.org/@sentry/core/-/core-8.47.0.tgz",
43268
- integrity: "sha512-iSEJZMe3DOcqBFZQAqgA3NB2lCWBc4Gv5x/SCri/TVg96wAlss4VrUunSI2Mp0J4jJ5nJcJ2ChqHSBAU48k3FA==",
42989
+ version: "8.51.0",
42990
+ resolved: "https://registry.npmjs.org/@sentry/core/-/core-8.51.0.tgz",
42991
+ integrity: "sha512-Go0KxCYLw+OBIlLSv5YsYX+x9NW43fNVcyB6rhkSp2Q5Zme3tAE6KtZFvyu4SO7G/903wisW5Q6qV6UuK/ee4A==",
42992
+ license: "MIT",
43269
42993
  engines: {
43270
42994
  node: ">=14.18"
43271
42995
  }
43272
42996
  },
43273
42997
  "node_modules/@sentry/types": {
43274
- version: "8.47.0",
43275
- resolved: "https://registry.npmjs.org/@sentry/types/-/types-8.47.0.tgz",
43276
- integrity: "sha512-ruiowlIBQUPDwNcO0KTudKP9T2QYF3S2TLhDdoJb+0ZGJduH4PsgGAojUSpGR+idKfrlOSlUpcdg9+WxsoOckg==",
42998
+ version: "8.51.0",
42999
+ resolved: "https://registry.npmjs.org/@sentry/types/-/types-8.51.0.tgz",
43000
+ integrity: "sha512-LNwI3IrZR0OaB3u4e8PwjRCO/NZy0m3Hld8j44WnbA/fwq0V5b9PH0wG6NCISOsIBSDzun0HpHCUi3VeQoupvw==",
43001
+ license: "MIT",
43277
43002
  dependencies: {
43278
- "@sentry/core": "8.47.0"
43003
+ "@sentry/core": "8.51.0"
43279
43004
  },
43280
43005
  engines: {
43281
43006
  node: ">=14.18"
@@ -43374,20 +43099,6 @@ var packages = {
43374
43099
  url: "https://github.com/sponsors/wooorm"
43375
43100
  }
43376
43101
  },
43377
- "node_modules/braces": {
43378
- version: "3.0.3",
43379
- resolved: "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
43380
- integrity: "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
43381
- dev: true,
43382
- license: "MIT",
43383
- optional: true,
43384
- dependencies: {
43385
- "fill-range": "^7.1.1"
43386
- },
43387
- engines: {
43388
- node: ">=8"
43389
- }
43390
- },
43391
43102
  "node_modules/call-bind": {
43392
43103
  version: "1.0.7",
43393
43104
  resolved: "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
@@ -43408,22 +43119,6 @@ var packages = {
43408
43119
  url: "https://github.com/sponsors/ljharb"
43409
43120
  }
43410
43121
  },
43411
- "node_modules/chokidar": {
43412
- version: "4.0.3",
43413
- resolved: "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
43414
- integrity: "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
43415
- dev: true,
43416
- license: "MIT",
43417
- dependencies: {
43418
- readdirp: "^4.0.1"
43419
- },
43420
- engines: {
43421
- node: ">= 14.16.0"
43422
- },
43423
- funding: {
43424
- url: "https://paulmillr.com/funding/"
43425
- }
43426
- },
43427
43122
  "node_modules/codem-isoboxer": {
43428
43123
  version: "0.3.9",
43429
43124
  resolved: "https://registry.npmjs.org/codem-isoboxer/-/codem-isoboxer-0.3.9.tgz",
@@ -43527,20 +43222,6 @@ var packages = {
43527
43222
  url: "https://github.com/sponsors/ljharb"
43528
43223
  }
43529
43224
  },
43530
- "node_modules/detect-libc": {
43531
- version: "1.0.3",
43532
- resolved: "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
43533
- integrity: "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
43534
- dev: true,
43535
- license: "Apache-2.0",
43536
- optional: true,
43537
- bin: {
43538
- "detect-libc": "bin/detect-libc.js"
43539
- },
43540
- engines: {
43541
- node: ">=0.10"
43542
- }
43543
- },
43544
43225
  "node_modules/es-define-property": {
43545
43226
  version: "1.0.0",
43546
43227
  resolved: "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
@@ -43604,20 +43285,6 @@ var packages = {
43604
43285
  }
43605
43286
  }
43606
43287
  },
43607
- "node_modules/fill-range": {
43608
- version: "7.1.1",
43609
- resolved: "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
43610
- integrity: "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
43611
- dev: true,
43612
- license: "MIT",
43613
- optional: true,
43614
- dependencies: {
43615
- "to-regex-range": "^5.0.1"
43616
- },
43617
- engines: {
43618
- node: ">=8"
43619
- }
43620
- },
43621
43288
  "node_modules/for-each": {
43622
43289
  version: "0.3.3",
43623
43290
  resolved: "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
@@ -43775,13 +43442,6 @@ var packages = {
43775
43442
  integrity: "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
43776
43443
  license: "MIT"
43777
43444
  },
43778
- "node_modules/immutable": {
43779
- version: "5.0.3",
43780
- resolved: "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz",
43781
- integrity: "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==",
43782
- dev: true,
43783
- license: "MIT"
43784
- },
43785
43445
  "node_modules/imsc": {
43786
43446
  version: "1.1.5",
43787
43447
  resolved: "https://registry.npmjs.org/imsc/-/imsc-1.1.5.tgz",
@@ -43878,17 +43538,6 @@ var packages = {
43878
43538
  url: "https://github.com/sponsors/wooorm"
43879
43539
  }
43880
43540
  },
43881
- "node_modules/is-extglob": {
43882
- version: "2.1.1",
43883
- resolved: "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
43884
- integrity: "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
43885
- dev: true,
43886
- license: "MIT",
43887
- optional: true,
43888
- engines: {
43889
- node: ">=0.10.0"
43890
- }
43891
- },
43892
43541
  "node_modules/is-generator-function": {
43893
43542
  version: "1.0.10",
43894
43543
  resolved: "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
@@ -43905,20 +43554,6 @@ var packages = {
43905
43554
  url: "https://github.com/sponsors/ljharb"
43906
43555
  }
43907
43556
  },
43908
- "node_modules/is-glob": {
43909
- version: "4.0.3",
43910
- resolved: "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
43911
- integrity: "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
43912
- dev: true,
43913
- license: "MIT",
43914
- optional: true,
43915
- dependencies: {
43916
- "is-extglob": "^2.1.1"
43917
- },
43918
- engines: {
43919
- node: ">=0.10.0"
43920
- }
43921
- },
43922
43557
  "node_modules/is-module": {
43923
43558
  version: "1.0.0",
43924
43559
  resolved: "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
@@ -43943,17 +43578,6 @@ var packages = {
43943
43578
  url: "https://github.com/sponsors/ljharb"
43944
43579
  }
43945
43580
  },
43946
- "node_modules/is-number": {
43947
- version: "7.0.0",
43948
- resolved: "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
43949
- integrity: "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
43950
- dev: true,
43951
- license: "MIT",
43952
- optional: true,
43953
- engines: {
43954
- node: ">=0.12.0"
43955
- }
43956
- },
43957
43581
  "node_modules/is-reference": {
43958
43582
  version: "1.2.1",
43959
43583
  resolved: "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
@@ -44008,43 +43632,6 @@ var packages = {
44008
43632
  "@jridgewell/sourcemap-codec": "^1.5.0"
44009
43633
  }
44010
43634
  },
44011
- "node_modules/micromatch": {
44012
- version: "4.0.8",
44013
- resolved: "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
44014
- integrity: "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
44015
- dev: true,
44016
- license: "MIT",
44017
- optional: true,
44018
- dependencies: {
44019
- braces: "^3.0.3",
44020
- picomatch: "^2.3.1"
44021
- },
44022
- engines: {
44023
- node: ">=8.6"
44024
- }
44025
- },
44026
- "node_modules/micromatch/node_modules/picomatch": {
44027
- version: "2.3.1",
44028
- resolved: "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
44029
- integrity: "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
44030
- dev: true,
44031
- license: "MIT",
44032
- optional: true,
44033
- engines: {
44034
- node: ">=8.6"
44035
- },
44036
- funding: {
44037
- url: "https://github.com/sponsors/jonschlinkert"
44038
- }
44039
- },
44040
- "node_modules/node-addon-api": {
44041
- version: "7.1.1",
44042
- resolved: "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
44043
- integrity: "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
44044
- dev: true,
44045
- license: "MIT",
44046
- optional: true
44047
- },
44048
43635
  "node_modules/object-is": {
44049
43636
  version: "1.1.6",
44050
43637
  resolved: "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz",
@@ -44127,20 +43714,6 @@ var packages = {
44127
43714
  node: ">= 0.4"
44128
43715
  }
44129
43716
  },
44130
- "node_modules/readdirp": {
44131
- version: "4.0.2",
44132
- resolved: "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz",
44133
- integrity: "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==",
44134
- dev: true,
44135
- license: "MIT",
44136
- engines: {
44137
- node: ">= 14.16.0"
44138
- },
44139
- funding: {
44140
- type: "individual",
44141
- url: "https://paulmillr.com/funding/"
44142
- }
44143
- },
44144
43717
  "node_modules/resolve": {
44145
43718
  version: "1.22.8",
44146
43719
  resolved: "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
@@ -44210,69 +43783,6 @@ var packages = {
44210
43783
  rollup: "^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
44211
43784
  }
44212
43785
  },
44213
- "node_modules/rollup-plugin-sass": {
44214
- version: "1.14.0",
44215
- resolved: "https://registry.npmjs.org/rollup-plugin-sass/-/rollup-plugin-sass-1.14.0.tgz",
44216
- integrity: "sha512-MF3K0AaPV+4fduwPOBB5DoEIp8mLOT9laxPWakIAYpl2pT018lu1J0ZJ9tXDwiB0bxEReChds5DA1Du/XNAA3g==",
44217
- dev: true,
44218
- license: "MIT",
44219
- dependencies: {
44220
- "@rollup/pluginutils": "^3 || ^4 || ^5",
44221
- resolve: "^1.5.0",
44222
- sass: "^1.7.2"
44223
- },
44224
- engines: {
44225
- node: ">=10"
44226
- }
44227
- },
44228
- "node_modules/rollup-plugin-string": {
44229
- version: "3.0.0",
44230
- resolved: "https://registry.npmjs.org/rollup-plugin-string/-/rollup-plugin-string-3.0.0.tgz",
44231
- integrity: "sha512-vqyzgn9QefAgeKi+Y4A7jETeIAU1zQmS6VotH6bzm/zmUQEnYkpIGRaOBPY41oiWYV4JyBoGAaBjYMYuv+6wVw==",
44232
- dev: true,
44233
- license: "MIT",
44234
- dependencies: {
44235
- "rollup-pluginutils": "^2.4.1"
44236
- }
44237
- },
44238
- "node_modules/rollup-pluginutils": {
44239
- version: "2.8.2",
44240
- resolved: "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
44241
- integrity: "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
44242
- dev: true,
44243
- license: "MIT",
44244
- dependencies: {
44245
- "estree-walker": "^0.6.1"
44246
- }
44247
- },
44248
- "node_modules/rollup-pluginutils/node_modules/estree-walker": {
44249
- version: "0.6.1",
44250
- resolved: "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
44251
- integrity: "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
44252
- dev: true,
44253
- license: "MIT"
44254
- },
44255
- "node_modules/sass": {
44256
- version: "1.83.0",
44257
- resolved: "https://registry.npmjs.org/sass/-/sass-1.83.0.tgz",
44258
- integrity: "sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==",
44259
- dev: true,
44260
- license: "MIT",
44261
- dependencies: {
44262
- chokidar: "^4.0.0",
44263
- immutable: "^5.0.2",
44264
- "source-map-js": ">=0.6.2 <2.0.0"
44265
- },
44266
- bin: {
44267
- sass: "sass.js"
44268
- },
44269
- engines: {
44270
- node: ">=14.0.0"
44271
- },
44272
- optionalDependencies: {
44273
- "@parcel/watcher": "^2.4.1"
44274
- }
44275
- },
44276
43786
  "node_modules/sax": {
44277
43787
  version: "1.2.1",
44278
43788
  resolved: "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
@@ -44297,16 +43807,6 @@ var packages = {
44297
43807
  node: ">= 0.4"
44298
43808
  }
44299
43809
  },
44300
- "node_modules/source-map-js": {
44301
- version: "1.2.1",
44302
- resolved: "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
44303
- integrity: "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
44304
- dev: true,
44305
- license: "BSD-3-Clause",
44306
- engines: {
44307
- node: ">=0.10.0"
44308
- }
44309
- },
44310
43810
  "node_modules/supports-preserve-symlinks-flag": {
44311
43811
  version: "1.0.0",
44312
43812
  resolved: "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
@@ -44320,20 +43820,6 @@ var packages = {
44320
43820
  url: "https://github.com/sponsors/ljharb"
44321
43821
  }
44322
43822
  },
44323
- "node_modules/to-regex-range": {
44324
- version: "5.0.1",
44325
- resolved: "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
44326
- integrity: "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
44327
- dev: true,
44328
- license: "MIT",
44329
- optional: true,
44330
- dependencies: {
44331
- "is-number": "^7.0.0"
44332
- },
44333
- engines: {
44334
- node: ">=8.0"
44335
- }
44336
- },
44337
43823
  "node_modules/typescript": {
44338
43824
  version: "5.7.2",
44339
43825
  resolved: "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",