@nsshunt/stsvueutils 1.0.102 → 1.0.103

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": "1.0.102",
3
+ "version": "1.0.103",
4
4
  "description": "Vue 3 framework utilities and plugins",
5
5
  "main": "./dist/stsvueutils.umd.js",
6
6
  "module": "./dist/stsvueutils.mjs",
@@ -24,7 +24,7 @@
24
24
  "test": "DEBUG=testcontainers:containers vitest run --reporter verbose --pool forks",
25
25
  "test2": "jest --detectOpenHandles --no-cache",
26
26
  "testwatch": "jest --watchAll --detectOpenHandles --no-cache",
27
- "build": "vite build",
27
+ "build": "tsc && vite build",
28
28
  "build2": "tsc",
29
29
  "build3": "vite build",
30
30
  "build4": "tsc && vite build"
@@ -1,5 +1,4 @@
1
1
  import { IContextBase } from '@nsshunt/stsobservability';
2
-
3
2
  export interface IAsyncRunnerContext extends IContextBase {
4
3
  id: string;
5
4
  hostName: string;
@@ -1,5 +1,4 @@
1
- import { IIWMessagePayload } from './../commonTypes';
2
-
1
+ import type { IIWMessagePayload } from './../commonTypes';
3
2
  export declare class RequestResponseHelper {
4
3
  #private;
5
4
  constructor(port: MessagePort);
@@ -1,5 +1,4 @@
1
- import { ClientStorageType, IStsStorage } from './stsStorage';
2
-
1
+ import { ClientStorageType, type IStsStorage } from './stsStorage';
3
2
  export interface ISTSStoragePluginOptions {
4
3
  clientStorageType: ClientStorageType;
5
4
  }
@@ -1,5 +1,4 @@
1
- import { JSONObject } from '@nsshunt/stsutils';
2
-
1
+ import type { JSONObject } from "@nsshunt/stsutils";
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
- import { IIWMessagePayloadContentBase, IIWMessagePayload, IAsyncRunnerContext } from './../commonTypes';
2
- import { PublishInstrumentController } from '@nsshunt/stsobservability';
3
-
1
+ import type { PublishInstrumentController } from '@nsshunt/stsobservability';
2
+ import type { IIWMessagePayloadContentBase, IIWMessagePayload, IAsyncRunnerContext } from './../commonTypes';
4
3
  export interface ISTSAgentWorkerMessagePort extends IIWMessagePayloadContentBase {
5
4
  port: MessagePort;
6
5
  options: IWorkerOptions;
@@ -1,6 +1,5 @@
1
+ import type { IRunner } from './stsTestWorkerDefinitions';
1
2
  import { RequestResponseHelper } from './requestResponseHelper';
2
- import { IRunner } from './stsTestWorkerDefinitions';
3
-
4
3
  export interface IWorkerInstanceOptions {
5
4
  }
6
5
  export declare abstract class WorkerInstance {
@@ -1,5 +1,4 @@
1
- import { IWorkerEx, IRunnerEx, IRunnerOptions, IWorkerManagerOptions, IWorkerFactory } from './stsTestWorkerDefinitions';
2
-
1
+ import type { IWorkerEx, IRunnerEx, IRunnerOptions, IWorkerManagerOptions, IWorkerFactory } from './stsTestWorkerDefinitions';
3
2
  export declare class STSWorkerManager {
4
3
  #private;
5
4
  constructor(app: any, options?: IWorkerManagerOptions);
@@ -1,6 +1,5 @@
1
- import { IWorkerEx, IRunnerEx, ITelemetryStore } from './../plugins/stsTestWorkerDefinitions';
2
-
3
- export declare const TelemetryStore: import('pinia').StoreDefinition<"__sts__TelemetryStore", ITelemetryStore, {}, {
1
+ import type { IWorkerEx, IRunnerEx, ITelemetryStore } from './../plugins/stsTestWorkerDefinitions';
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;
6
5
  Update(workerEx: IWorkerEx, runnerEx: IRunnerEx): void;