@vnejs/plugins.scenario.fastforward 0.1.13 → 0.1.14
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.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/modules/visits.d.ts +3 -3
- package/dist/modules/visits.js +1 -1
- package/dist/types.d.ts +2 -2
- package/dist/utils/fastforward.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.ts +2 -2
- package/src/modules/fastforward.ts +1 -1
- package/src/modules/visits.ts +3 -3
- package/src/types.ts +2 -2
- package/src/utils/fastforward.ts +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import "@vnejs/
|
|
1
|
+
import "@vnejs/contracts.scenario.fastforward";
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import "@vnejs/
|
|
1
|
+
import "@vnejs/contracts.scenario.fastforward";
|
|
2
2
|
import { regPlugin } from "@vnejs/shared";
|
|
3
|
-
import { CONSTANTS, PARAMS, PLUGIN_NAME, SETTINGS_KEYS, SUBSCRIBE_EVENTS } from "@vnejs/
|
|
3
|
+
import { CONSTANTS, PARAMS, PLUGIN_NAME, SETTINGS_KEYS, SUBSCRIBE_EVENTS } from "@vnejs/contracts.scenario.fastforward";
|
|
4
4
|
import { Fastforward } from "./modules/fastforward.js";
|
|
5
5
|
import { FastforwardVisits } from "./modules/visits.js";
|
|
6
6
|
regPlugin(PLUGIN_NAME, { events: SUBSCRIBE_EVENTS, settings: SETTINGS_KEYS, params: PARAMS, constants: CONSTANTS }, [Fastforward, FastforwardVisits]);
|
package/dist/modules/visits.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import "@vnejs/
|
|
1
|
+
import "@vnejs/contracts.text";
|
|
2
2
|
import { ModuleCore } from "@vnejs/module.core";
|
|
3
|
-
import type { TextEmitPayload } from "@vnejs/
|
|
4
|
-
import type { ModuleGlobalStateFastforwardVisits } from "@vnejs/
|
|
3
|
+
import type { TextEmitPayload } from "@vnejs/contracts.text";
|
|
4
|
+
import type { ModuleGlobalStateFastforwardVisits } from "@vnejs/contracts.scenario.fastforward";
|
|
5
5
|
import type { FastforwardPluginConstants, FastforwardPluginEvents, FastforwardPluginParams, FastforwardPluginSettings } from "../types.js";
|
|
6
6
|
export declare class FastforwardVisits extends ModuleCore<FastforwardPluginEvents, FastforwardPluginConstants, FastforwardPluginSettings, FastforwardPluginParams, ModuleGlobalStateFastforwardVisits> {
|
|
7
7
|
name: string;
|
package/dist/modules/visits.js
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ModuleCoreConstants, ModuleCoreEvents, ModuleCoreParams, ModuleCoreSettings } from "@vnejs/module.core";
|
|
2
|
-
import type { PluginName as TextPluginName, SubscribeEvents as TextSubscribeEvents } from "@vnejs/
|
|
3
|
-
import type { Constants, Params, PluginName, SettingsKeys, SubscribeEvents } from "@vnejs/
|
|
2
|
+
import type { PluginName as TextPluginName, SubscribeEvents as TextSubscribeEvents } from "@vnejs/contracts.text";
|
|
3
|
+
import type { Constants, Params, PluginName, SettingsKeys, SubscribeEvents } from "@vnejs/contracts.scenario.fastforward";
|
|
4
4
|
export type FastforwardPluginEvents = ModuleCoreEvents & Record<PluginName, SubscribeEvents> & Record<TextPluginName, TextSubscribeEvents>;
|
|
5
5
|
export type FastforwardPluginConstants = ModuleCoreConstants & Record<PluginName, Constants>;
|
|
6
6
|
export type FastforwardPluginSettings = ModuleCoreSettings & Record<PluginName, SettingsKeys>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { FastforwardChangedPayload, FastforwardTextPayload, ModuleGlobalStateFastforwardVisits } from "@vnejs/
|
|
1
|
+
import type { FastforwardChangedPayload, FastforwardTextPayload, ModuleGlobalStateFastforwardVisits } from "@vnejs/contracts.scenario.fastforward";
|
|
2
2
|
export type { FastforwardChangedPayload, FastforwardTextPayload, ModuleGlobalStateFastforwardVisits };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vnejs/plugins.scenario.fastforward",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -30,12 +30,12 @@
|
|
|
30
30
|
"author": "",
|
|
31
31
|
"license": "ISC",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@vnejs/
|
|
33
|
+
"@vnejs/contracts.scenario.fastforward": "~0.1.0"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"@vnejs/module.core": "~0.1.0",
|
|
37
37
|
"@vnejs/shared": "~0.1.0",
|
|
38
|
-
"@vnejs/
|
|
38
|
+
"@vnejs/contracts.text": "~0.1.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@vnejs/configs.ts-common": "~0.1.0"
|
package/src/index.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
import "@vnejs/
|
|
2
|
+
import "@vnejs/contracts.scenario.fastforward";
|
|
3
3
|
|
|
4
4
|
import { regPlugin } from "@vnejs/shared";
|
|
5
|
-
import { CONSTANTS, PARAMS, PLUGIN_NAME, SETTINGS_KEYS, SUBSCRIBE_EVENTS } from "@vnejs/
|
|
5
|
+
import { CONSTANTS, PARAMS, PLUGIN_NAME, SETTINGS_KEYS, SUBSCRIBE_EVENTS } from "@vnejs/contracts.scenario.fastforward";
|
|
6
6
|
|
|
7
7
|
import { Fastforward } from "./modules/fastforward.js";
|
|
8
8
|
import { FastforwardVisits } from "./modules/visits.js";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ModuleCore } from "@vnejs/module.core";
|
|
2
2
|
|
|
3
|
-
import type { FastforwardChangedPayload, FastforwardCheckResult } from "@vnejs/
|
|
3
|
+
import type { FastforwardChangedPayload, FastforwardCheckResult } from "@vnejs/contracts.scenario.fastforward";
|
|
4
4
|
|
|
5
5
|
import type { FastforwardPluginConstants, FastforwardPluginEvents, FastforwardPluginParams, FastforwardPluginSettings } from "../types.js";
|
|
6
6
|
|
package/src/modules/visits.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import "@vnejs/
|
|
1
|
+
import "@vnejs/contracts.text";
|
|
2
2
|
|
|
3
3
|
import { ModuleCore } from "@vnejs/module.core";
|
|
4
|
-
import type { TextEmitPayload } from "@vnejs/
|
|
5
|
-
import type { FastforwardCheckResult, ModuleGlobalStateFastforwardVisits } from "@vnejs/
|
|
4
|
+
import type { TextEmitPayload } from "@vnejs/contracts.text";
|
|
5
|
+
import type { FastforwardCheckResult, ModuleGlobalStateFastforwardVisits } from "@vnejs/contracts.scenario.fastforward";
|
|
6
6
|
|
|
7
7
|
import type { FastforwardPluginConstants, FastforwardPluginEvents, FastforwardPluginParams, FastforwardPluginSettings } from "../types.js";
|
|
8
8
|
|
package/src/types.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { ModuleCoreConstants, ModuleCoreEvents, ModuleCoreParams, ModuleCoreSettings } from "@vnejs/module.core";
|
|
2
|
-
import type { PluginName as TextPluginName, SubscribeEvents as TextSubscribeEvents } from "@vnejs/
|
|
3
|
-
import type { Constants, Params, PluginName, SettingsKeys, SubscribeEvents } from "@vnejs/
|
|
2
|
+
import type { PluginName as TextPluginName, SubscribeEvents as TextSubscribeEvents } from "@vnejs/contracts.text";
|
|
3
|
+
import type { Constants, Params, PluginName, SettingsKeys, SubscribeEvents } from "@vnejs/contracts.scenario.fastforward";
|
|
4
4
|
|
|
5
5
|
export type FastforwardPluginEvents = ModuleCoreEvents & Record<PluginName, SubscribeEvents> & Record<TextPluginName, TextSubscribeEvents>;
|
|
6
6
|
|
package/src/utils/fastforward.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import type { FastforwardChangedPayload, FastforwardTextPayload, ModuleGlobalStateFastforwardVisits } from "@vnejs/
|
|
1
|
+
import type { FastforwardChangedPayload, FastforwardTextPayload, ModuleGlobalStateFastforwardVisits } from "@vnejs/contracts.scenario.fastforward";
|
|
2
2
|
|
|
3
3
|
export type { FastforwardChangedPayload, FastforwardTextPayload, ModuleGlobalStateFastforwardVisits };
|