chat-pane 2.4.26-beta4-a9498ce3 → 2.4.26

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.
@@ -34512,7 +34512,7 @@ var IndexedFormula = /*#__PURE__*/function (_Formula) {
34512
34512
  key: "removeMetadata",
34513
34513
  value: function removeMetadata(doc) {
34514
34514
  var meta = this.sym('chrome://TheCurrentSession'); // or this.rdfFactory.namedNode('chrome://TheCurrentSession')
34515
- var linkNamespaceURI = 'http://www.w3.org/2007/ont/link#'; // alain
34515
+ var linkNamespaceURI = 'http://www.w3.org/2007/ont/link#';
34516
34516
  // remove status/response/request metadata
34517
34517
  var requests = this.statementsMatching(undefined, this.sym("".concat(linkNamespaceURI, "requestedURI")), this.rdfFactory.literal(doc.value), meta).map(function (st) {
34518
34518
  return st.subject;
@@ -34520,16 +34520,29 @@ var IndexedFormula = /*#__PURE__*/function (_Formula) {
34520
34520
  for (var r = 0; r < requests.length; r++) {
34521
34521
  var request = requests[r];
34522
34522
  if (request != undefined) {
34523
+ // removeMatches unresolved issue with collection https://github.com/linkeddata/rdflib.js/issues/631
34524
+ var sts = void 0;
34525
+ // status collection
34523
34526
  var status = this.any(request, this.sym("".concat(linkNamespaceURI, "status")), null, meta);
34524
34527
  if (status != undefined) {
34525
- this.removeMatches(status, this.sym("".concat(linkNamespaceURI, "status")), null, meta);
34528
+ sts = this.statementsMatching(status, this.sym("".concat(linkNamespaceURI, "status")), null, meta).slice();
34529
+ for (var i = 0; i < sts.length; i++) {
34530
+ this.removeStatement(sts[i]);
34531
+ }
34526
34532
  }
34533
+ // response items list
34527
34534
  var response = this.any(request, this.sym("".concat(linkNamespaceURI, "response")), null, meta);
34528
34535
  if (response != undefined) {
34529
- // ts
34530
- this.removeMatches(response, null, null, meta);
34536
+ sts = this.statementsMatching(response, null, null, meta).slice();
34537
+ for (var i = 0; i < sts.length; i++) {
34538
+ this.removeStatement(sts[i]);
34539
+ }
34540
+ }
34541
+ // request triples
34542
+ sts = this.statementsMatching(request, null, null, meta).slice();
34543
+ for (var i = 0; i < sts.length; i++) {
34544
+ this.removeStatement(sts[i]);
34531
34545
  }
34532
- this.removeMatches(request, null, null, meta);
34533
34546
  }
34534
34547
  }
34535
34548
  this.removeMatches(this.sym(doc.value), null, null, meta); // content-type
@@ -54244,12 +54257,12 @@ Object.defineProperty(exports, "__esModule", ({
54244
54257
  }));
54245
54258
  exports.versionInfo = void 0;
54246
54259
  var versionInfo = exports.versionInfo = {
54247
- buildTime: '2024-03-28T17:08:41Z',
54248
- commit: '4497ebdbab0526ae785adcc2a3db5a765048ec93',
54260
+ buildTime: '2024-04-03T15:06:07Z',
54261
+ commit: '66447a47fbefbec623b4c8ba09a7988817dc2248',
54249
54262
  npmInfo: {
54250
- 'solid-ui': '2.4.33-beta4',
54263
+ 'solid-ui': '2.4.33',
54251
54264
  npm: '8.19.4',
54252
- node: '18.19.0',
54265
+ node: '18.19.1',
54253
54266
  acorn: '8.10.0',
54254
54267
  ada: '2.7.2',
54255
54268
  ares: '1.20.1',
@@ -54258,16 +54271,16 @@ var versionInfo = exports.versionInfo = {
54258
54271
  cjs_module_lexer: '1.2.2',
54259
54272
  cldr: '43.1',
54260
54273
  icu: '73.2',
54261
- llhttp: '6.0.11',
54274
+ llhttp: '6.1.0',
54262
54275
  modules: '108',
54263
54276
  napi: '9',
54264
54277
  nghttp2: '1.57.0',
54265
54278
  nghttp3: '0.7.0',
54266
54279
  ngtcp2: '0.8.1',
54267
- openssl: '3.0.12+quic',
54280
+ openssl: '3.0.13+quic',
54268
54281
  simdutf: '3.2.18',
54269
54282
  tz: '2023c',
54270
- undici: '5.26.4',
54283
+ undici: '5.28.3',
54271
54284
  unicode: '15.0',
54272
54285
  uv: '1.44.2',
54273
54286
  uvwasi: '0.0.19',