@nsshunt/stsvueutils 2.0.23 → 2.0.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nsshunt/stsvueutils",
3
- "version": "2.0.23",
3
+ "version": "2.0.25",
4
4
  "description": "Vue 3 framework utilities and plugins",
5
5
  "main": "./dist/stsvueutils.umd.js",
6
6
  "module": "./dist/stsvueutils.mjs",
@@ -46,8 +46,8 @@
46
46
  },
47
47
  "homepage": "https://github.com/nsshunt/stsvueutils#readme",
48
48
  "dependencies": {
49
- "@nsshunt/stsobservability": "^1.0.66",
50
- "@nsshunt/stsutils": "^1.16.80",
49
+ "@nsshunt/stsobservability": "^1.0.68",
50
+ "@nsshunt/stsutils": "^1.16.85",
51
51
  "chalk": "^4.1.2",
52
52
  "js-cookie": "^3.0.5",
53
53
  "lodash.clonedeep": "^4.5.0",
@@ -1,5 +1,4 @@
1
1
  import { IContextBase } from '@nsshunt/stsobservability';
2
-
3
2
  export declare const URI_BASE_VUEUTILS: string;
4
3
  export interface IAsyncRunnerContext extends IContextBase {
5
4
  id: string;
@@ -1,5 +1,4 @@
1
1
  import { IIWMessagePayload } from './../commonTypes';
2
-
3
2
  export declare class RequestResponseHelper {
4
3
  #private;
5
4
  constructor(port: MessagePort);
@@ -1,5 +1,4 @@
1
1
  import { ClientStorageType, IStsStorage } from './stsStorage';
2
-
3
2
  export interface ISTSStoragePluginOptions {
4
3
  clientStorageType: ClientStorageType;
5
4
  }
@@ -1,5 +1,4 @@
1
1
  import { JSONObject } from '@nsshunt/stsutils';
2
-
3
2
  export interface IStsStorage<T> {
4
3
  get(key: string): T | null;
5
4
  set(key: string, value: T, options?: JSONObject): void;
@@ -1,6 +1,5 @@
1
1
  import { PublishInstrumentController } from '@nsshunt/stsobservability';
2
2
  import { IIWMessagePayloadContentBase, IIWMessagePayload, IAsyncRunnerContext } from './../commonTypes';
3
-
4
3
  export interface ISTSAgentWorkerMessagePort extends IIWMessagePayloadContentBase {
5
4
  port: MessagePort;
6
5
  options: IWorkerOptions;
@@ -1,6 +1,5 @@
1
1
  import { IRunner } from './stsTestWorkerDefinitions';
2
2
  import { RequestResponseHelper } from './requestResponseHelper';
3
-
4
3
  export interface IWorkerInstanceOptions {
5
4
  }
6
5
  export declare abstract class WorkerInstance {
@@ -1,5 +1,4 @@
1
1
  import { IWorkerEx, IRunnerEx, IRunnerOptions, IWorkerManagerOptions, IWorkerFactory } from './stsTestWorkerDefinitions';
2
-
3
2
  export declare class STSWorkerManager {
4
3
  #private;
5
4
  constructor(app: any, options?: IWorkerManagerOptions);
@@ -1,5 +1,4 @@
1
1
  import { IWorkerEx, IRunnerEx, ITelemetryStore } from './../plugins/stsTestWorkerDefinitions';
2
-
3
2
  export declare const TelemetryStore: import('pinia').StoreDefinition<"__sts__TelemetryStore", ITelemetryStore, {}, {
4
3
  RemoveWorker(workerEx: IWorkerEx): void;
5
4
  RemoveRunner(workerEx: IWorkerEx, runnerEx: IRunnerEx): void;