@digipair/skill-dsp 0.73.0 → 0.73.1

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/index.cjs.js CHANGED
@@ -124519,7 +124519,9 @@ let DspService = class DspService {
124519
124519
  let currentVersion = 0;
124520
124520
  for await (const item of generator){
124521
124521
  if (streaming) {
124522
- await engine.executePinsList(streaming, context, `${context.__PATH__}.streaming`);
124522
+ await engine.executePinsList(streaming, _extends({}, context, {
124523
+ event: item
124524
+ }), `${context.__PATH__}.streaming`);
124523
124525
  }
124524
124526
  if (item.version !== currentVersion) {
124525
124527
  buffer = {};
@@ -124547,7 +124549,9 @@ let DspService = class DspService {
124547
124549
  let currentVersion = 0;
124548
124550
  for await (const item of generator){
124549
124551
  if (streaming) {
124550
- await engine.executePinsList(streaming, context, `${context.__PATH__}.streaming`);
124552
+ await engine.executePinsList(streaming, _extends({}, context, {
124553
+ event: item
124554
+ }), `${context.__PATH__}.streaming`);
124551
124555
  }
124552
124556
  if (item.version !== currentVersion) {
124553
124557
  buffer = {};
@@ -124588,7 +124592,9 @@ let DspService = class DspService {
124588
124592
  let currentVersion = 0;
124589
124593
  for await (const item of generator){
124590
124594
  if (streaming) {
124591
- await engine.executePinsList(streaming, context, `${context.__PATH__}.streaming`);
124595
+ await engine.executePinsList(streaming, _extends({}, context, {
124596
+ event: item
124597
+ }), `${context.__PATH__}.streaming`);
124592
124598
  }
124593
124599
  if (item.version !== currentVersion) {
124594
124600
  buffer = {};
package/index.esm.js CHANGED
@@ -23951,14 +23951,14 @@ function indent(str, spaces) {
23951
23951
  var match = parseIdentifier(input, i1, namePart) || namePart && parseAdditionalSymbol(input, i1) || maybeSpace && parseSpaces(input, i1);
23952
23952
  // match is required
23953
23953
  if (!match) {
23954
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
23954
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
23955
23955
  v: nextMatch1
23956
23956
  };
23957
23957
  }
23958
23958
  var token = match.token, offset = match.offset;
23959
23959
  i1 += offset;
23960
23960
  if (token === " ") {
23961
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23961
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23962
23962
  }
23963
23963
  tokens1 = _to_consumable_array$5(tokens1).concat([
23964
23964
  token
@@ -23977,7 +23977,7 @@ function indent(str, spaces) {
23977
23977
  if (contextKeys.some(function(el) {
23978
23978
  return el.startsWith(name);
23979
23979
  })) {
23980
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23980
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
23981
23981
  }
23982
23982
  if (dateTimeIdentifiers.some(function(el) {
23983
23983
  return el === name;
@@ -23996,9 +23996,9 @@ function indent(str, spaces) {
23996
23996
  if (dateTimeIdentifiers.some(function(el) {
23997
23997
  return el.startsWith(name);
23998
23998
  })) {
23999
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, "continue";
23999
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, "continue";
24000
24000
  }
24001
- return i = i1, nextMatch = nextMatch1, tokens = tokens1, {
24001
+ return tokens = tokens1, i = i1, nextMatch = nextMatch1, {
24002
24002
  v: nextMatch1
24003
24003
  };
24004
24004
  };
@@ -152458,7 +152458,9 @@ let DspService = class DspService {
152458
152458
  let currentVersion = 0;
152459
152459
  for await (const item of generator){
152460
152460
  if (streaming) {
152461
- await executePinsList(streaming, context, `${context.__PATH__}.streaming`);
152461
+ await executePinsList(streaming, _extends({}, context, {
152462
+ event: item
152463
+ }), `${context.__PATH__}.streaming`);
152462
152464
  }
152463
152465
  if (item.version !== currentVersion) {
152464
152466
  buffer = {};
@@ -152486,7 +152488,9 @@ let DspService = class DspService {
152486
152488
  let currentVersion = 0;
152487
152489
  for await (const item of generator){
152488
152490
  if (streaming) {
152489
- await executePinsList(streaming, context, `${context.__PATH__}.streaming`);
152491
+ await executePinsList(streaming, _extends({}, context, {
152492
+ event: item
152493
+ }), `${context.__PATH__}.streaming`);
152490
152494
  }
152491
152495
  if (item.version !== currentVersion) {
152492
152496
  buffer = {};
@@ -152527,7 +152531,9 @@ let DspService = class DspService {
152527
152531
  let currentVersion = 0;
152528
152532
  for await (const item of generator){
152529
152533
  if (streaming) {
152530
- await executePinsList(streaming, context, `${context.__PATH__}.streaming`);
152534
+ await executePinsList(streaming, _extends({}, context, {
152535
+ event: item
152536
+ }), `${context.__PATH__}.streaming`);
152531
152537
  }
152532
152538
  if (item.version !== currentVersion) {
152533
152539
  buffer = {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digipair/skill-dsp",
3
- "version": "0.73.0",
3
+ "version": "0.73.1",
4
4
  "dependencies": {
5
5
  "@ax-llm/ax": "^11.0.29"
6
6
  },