next-flow-interface 0.23.4 → 0.23.6

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.
Files changed (40) hide show
  1. package/dist/api/index.d.ts +5 -5
  2. package/dist/api/index.d.ts.map +1 -1
  3. package/dist/api/index.js +15 -15
  4. package/dist/hook/{use-t-attributes.type.d.ts → use-t-node.type.d.ts} +2 -2
  5. package/dist/hook/use-t-node.type.d.ts.map +1 -0
  6. package/dist/hook/use-t-step.type.d.ts +1 -1
  7. package/dist/hook/use-t-step.type.d.ts.map +1 -1
  8. package/dist/index.d.ts +12 -7
  9. package/dist/index.d.ts.map +1 -1
  10. package/dist/index.js +176 -175
  11. package/dist/service/sync/attribute/attribute-service-api.d.ts +5 -0
  12. package/dist/service/sync/attribute/attribute-service-api.d.ts.map +1 -0
  13. package/dist/service/sync/attribute/dto/attribute-type.enum.d.ts +6 -0
  14. package/dist/service/sync/attribute/dto/attribute-type.enum.d.ts.map +1 -0
  15. package/dist/service/sync/attribute/dto/instance/attribute.interface.d.ts +5 -0
  16. package/dist/service/sync/attribute/dto/instance/attribute.interface.d.ts.map +1 -0
  17. package/dist/service/sync/attribute/dto/instance/base-attribute.interface.d.ts +9 -0
  18. package/dist/service/sync/attribute/dto/instance/base-attribute.interface.d.ts.map +1 -0
  19. package/dist/service/sync/attribute/dto/instance/global-attribute.interface.d.ts +5 -0
  20. package/dist/service/sync/attribute/dto/instance/global-attribute.interface.d.ts.map +1 -0
  21. package/dist/service/sync/attribute/dto/instance/node-attribute.interface.d.ts +5 -0
  22. package/dist/service/sync/attribute/dto/instance/node-attribute.interface.d.ts.map +1 -0
  23. package/dist/service/sync/attribute/dto/instance/step-attribute.interface.d.ts +5 -0
  24. package/dist/service/sync/attribute/dto/instance/step-attribute.interface.d.ts.map +1 -0
  25. package/dist/service/target/dto/t-attributes-subscriber.type.d.ts +1 -1
  26. package/dist/service/target/dto/t-attributes-subscriber.type.d.ts.map +1 -1
  27. package/dist/service/target/dto/t-step-subscriber.type.d.ts +4 -0
  28. package/dist/service/target/dto/t-step-subscriber.type.d.ts.map +1 -0
  29. package/dist/service/target/t-node-service-api.d.ts +16 -0
  30. package/dist/service/target/t-node-service-api.d.ts.map +1 -0
  31. package/dist/service/target/t-step-service-api.d.ts +15 -0
  32. package/dist/service/target/t-step-service-api.d.ts.map +1 -0
  33. package/package.json +1 -1
  34. package/dist/hook/use-t-attributes.type.d.ts.map +0 -1
  35. package/dist/service/target/attribute/t-attributes-service-api.d.ts +0 -16
  36. package/dist/service/target/attribute/t-attributes-service-api.d.ts.map +0 -1
  37. package/dist/service/target/dto/t-subscriber.type.d.ts +0 -4
  38. package/dist/service/target/dto/t-subscriber.type.d.ts.map +0 -1
  39. package/dist/service/target/step/t-step-service-api.d.ts +0 -15
  40. package/dist/service/target/step/t-step-service-api.d.ts.map +0 -1
@@ -0,0 +1,5 @@
1
+ import { IAttribute } from './dto/instance/attribute.interface';
2
+ export default interface AttributeServiceApi {
3
+ register(definition: IAttribute): void;
4
+ }
5
+ //# sourceMappingURL=attribute-service-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attribute-service-api.d.ts","sourceRoot":"","sources":["../../../../src/service/sync/attribute/attribute-service-api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,2DAA2D,CAAA;AAEtF,MAAM,CAAC,OAAO,WAAW,mBAAmB;IAC1C,QAAQ,CAAC,UAAU,EAAE,UAAU,GAAG,IAAI,CAAA;CACvC"}
@@ -0,0 +1,6 @@
1
+ export declare enum AttributeType {
2
+ Global = "GLOBAL",
3
+ Step = "STEP",
4
+ Node = "NODE"
5
+ }
6
+ //# sourceMappingURL=attribute-type.enum.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attribute-type.enum.d.ts","sourceRoot":"","sources":["../../../../../src/service/sync/attribute/dto/attribute-type.enum.ts"],"names":[],"mappings":"AAAA,oBAAY,aAAa;IACvB,MAAM,WAAW;IACjB,IAAI,SAAS;IACb,IAAI,SAAS;CACd"}
@@ -0,0 +1,5 @@
1
+ import { default as IGlobalAttribute } from './global-attribute.interface';
2
+ import { default as INodeAttribute } from './node-attribute.interface';
3
+ import { default as IStepAttribute } from './step-attribute.interface';
4
+ export type IAttribute = INodeAttribute | IStepAttribute | IGlobalAttribute;
5
+ //# sourceMappingURL=attribute.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"attribute.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/service/sync/attribute/dto/instance/attribute.interface.ts"],"names":[],"mappings":"AAAA,OAAO,gBAAgB,MAAM,kEAAkE,CAAA;AAC/F,OAAO,cAAc,MAAM,gEAAgE,CAAA;AAC3F,OAAO,cAAc,MAAM,gEAAgE,CAAA;AAE3F,MAAM,MAAM,UAAU,GAAG,cAAc,GAAG,cAAc,GAAG,gBAAgB,CAAA"}
@@ -0,0 +1,9 @@
1
+ import { RvPath } from 'rhine-var';
2
+ import { AttributeType } from '../attribute-type.enum';
3
+ export default interface IBaseAttribute<T = unknown> {
4
+ type: AttributeType;
5
+ path: RvPath;
6
+ defaultValue?: T;
7
+ getPathString(): string;
8
+ }
9
+ //# sourceMappingURL=base-attribute.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"base-attribute.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/service/sync/attribute/dto/instance/base-attribute.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAElC,OAAO,EAAE,aAAa,EAAE,MAAM,kDAAkD,CAAA;AAEhF,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC,CAAC,GAAG,OAAO;IACjD,IAAI,EAAE,aAAa,CAAA;IAEnB,IAAI,EAAE,MAAM,CAAA;IAEZ,YAAY,CAAC,EAAE,CAAC,CAAA;IAEhB,aAAa,IAAI,MAAM,CAAA;CACxB"}
@@ -0,0 +1,5 @@
1
+ import { default as IBaseAttribute } from './base-attribute.interface';
2
+ export default interface IGlobalAttribute<T = unknown> extends IBaseAttribute<T> {
3
+ generate(): T;
4
+ }
5
+ //# sourceMappingURL=global-attribute.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"global-attribute.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/service/sync/attribute/dto/instance/global-attribute.interface.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,gEAAgE,CAAA;AAE3F,MAAM,CAAC,OAAO,WAAW,gBAAgB,CAAC,CAAC,GAAG,OAAO,CAAE,SAAQ,cAAc,CAAC,CAAC,CAAC;IAC9E,QAAQ,IAAI,CAAC,CAAA;CACd"}
@@ -0,0 +1,5 @@
1
+ import { default as IBaseAttribute } from './base-attribute.interface';
2
+ export default interface INodeAttribute<T = unknown> extends IBaseAttribute<T> {
3
+ generate(sid: string, nid: string): T;
4
+ }
5
+ //# sourceMappingURL=node-attribute.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"node-attribute.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/service/sync/attribute/dto/instance/node-attribute.interface.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,gEAAgE,CAAA;AAE3F,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC,CAAC,GAAG,OAAO,CAAE,SAAQ,cAAc,CAAC,CAAC,CAAC;IAC5E,QAAQ,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,GAAG,CAAC,CAAA;CACtC"}
@@ -0,0 +1,5 @@
1
+ import { default as IBaseAttribute } from './base-attribute.interface';
2
+ export default interface IStepAttribute<T = unknown> extends IBaseAttribute<T> {
3
+ generate(sid: string): T;
4
+ }
5
+ //# sourceMappingURL=step-attribute.interface.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"step-attribute.interface.d.ts","sourceRoot":"","sources":["../../../../../../src/service/sync/attribute/dto/instance/step-attribute.interface.ts"],"names":[],"mappings":"AAAA,OAAO,cAAc,MAAM,gEAAgE,CAAA;AAE3F,MAAM,CAAC,OAAO,WAAW,cAAc,CAAC,CAAC,GAAG,OAAO,CAAE,SAAQ,cAAc,CAAC,CAAC,CAAC;IAC5E,QAAQ,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,CAAA;CACzB"}
@@ -1,5 +1,5 @@
1
1
  import { RvPath, StoredRhineVar } from 'rhine-var';
2
2
  import { default as RvNode } from '../../sync/interface/step/attributes/rv-node.interface';
3
3
  import { TChangeType } from './t-change-type.enum';
4
- export type TAttributesSubscriber = (type: TChangeType, path: RvPath, value: unknown, oldValue: unknown, sid: string, nid: string, nodeAttributes: StoredRhineVar<RvNode> | null) => void;
4
+ export type TNodeSubscriber = (type: TChangeType, path: RvPath, value: unknown, oldValue: unknown, sid: string, nid: string, rvNode: StoredRhineVar<RvNode> | null) => void;
5
5
  //# sourceMappingURL=t-attributes-subscriber.type.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"t-attributes-subscriber.type.d.ts","sourceRoot":"","sources":["../../../../src/service/target/dto/t-attributes-subscriber.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAElD,OAAO,MAAM,MAAM,4DAA4D,CAAA;AAE/E,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAElD,MAAM,MAAM,qBAAqB,GAAG,CAClC,IAAI,EAAE,WAAW,EACjB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,OAAO,EACjB,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,cAAc,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,KAC1C,IAAI,CAAA"}
1
+ {"version":3,"file":"t-attributes-subscriber.type.d.ts","sourceRoot":"","sources":["../../../../src/service/target/dto/t-attributes-subscriber.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAElD,OAAO,MAAM,MAAM,4DAA4D,CAAA;AAE/E,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAElD,MAAM,MAAM,eAAe,GAAG,CAC5B,IAAI,EAAE,WAAW,EACjB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,OAAO,EACjB,GAAG,EAAE,MAAM,EACX,GAAG,EAAE,MAAM,EACX,MAAM,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,KAClC,IAAI,CAAA"}
@@ -0,0 +1,4 @@
1
+ import { RvPath } from 'rhine-var';
2
+ import { TChangeType } from './t-change-type.enum';
3
+ export type TStepSubscriber = (type: TChangeType, path: RvPath, value: unknown, oldValue: unknown, sid: string) => void;
4
+ //# sourceMappingURL=t-step-subscriber.type.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"t-step-subscriber.type.d.ts","sourceRoot":"","sources":["../../../../src/service/target/dto/t-step-subscriber.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAElC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAElD,MAAM,MAAM,eAAe,GAAG,CAC5B,IAAI,EAAE,WAAW,EACjB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,OAAO,EACjB,GAAG,EAAE,MAAM,KACR,IAAI,CAAA"}
@@ -0,0 +1,16 @@
1
+ import { RvPath, StoredRhineVar } from 'rhine-var';
2
+ import { default as RvNode } from '../sync/interface/step/attributes/rv-node.interface';
3
+ import { TNodeSubscriber } from './dto/t-attributes-subscriber.type';
4
+ export default interface TNodeServiceApi {
5
+ sid: string;
6
+ nid: string;
7
+ state: StoredRhineVar<RvNode> | null;
8
+ get<T>(path: string | RvPath): T | null;
9
+ set<T>(path: string | RvPath, value: T): void;
10
+ multiSet<T>(path: string | RvPath, value: T): void;
11
+ check<T>(path: string | RvPath): void;
12
+ multiCheck<T>(path: string | RvPath): void;
13
+ subscribe(subscriber: TNodeSubscriber): () => void;
14
+ unsubscribe(subscriber: TNodeSubscriber): void;
15
+ }
16
+ //# sourceMappingURL=t-node-service-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"t-node-service-api.d.ts","sourceRoot":"","sources":["../../../src/service/target/t-node-service-api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAElD,OAAO,MAAM,MAAM,4DAA4D,CAAA;AAC/E,OAAO,EAAE,eAAe,EAAE,MAAM,mDAAmD,CAAA;AAEnF,MAAM,CAAC,OAAO,WAAW,eAAe;IACtC,GAAG,EAAE,MAAM,CAAA;IAEX,GAAG,EAAE,MAAM,CAAA;IAEX,KAAK,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAA;IAEpC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,GAAG,IAAI,CAAA;IAEvC,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI,CAAA;IAE7C,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI,CAAA;IAElD,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAErC,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAE1C,SAAS,CAAC,UAAU,EAAE,eAAe,GAAG,MAAM,IAAI,CAAA;IAElD,WAAW,CAAC,UAAU,EAAE,eAAe,GAAG,IAAI,CAAA;CAC/C"}
@@ -0,0 +1,15 @@
1
+ import { RvPath, StoredRhineVar } from 'rhine-var';
2
+ import { default as RvStep } from '../sync/interface/step/rv-step.interface';
3
+ import { TNodeSubscriber } from './dto/t-attributes-subscriber.type';
4
+ import { TStepSubscriber } from './dto/t-step-subscriber.type';
5
+ export default interface TStepServiceApi {
6
+ sid: string;
7
+ state: StoredRhineVar<RvStep>;
8
+ get(path: string | RvPath): unknown;
9
+ set(path: string | RvPath, value: unknown): void;
10
+ subscribe(subscriber: TStepSubscriber): () => void;
11
+ unsubscribe(subscriber: TStepSubscriber): void;
12
+ subscribeNode(subscriber: TNodeSubscriber): () => void;
13
+ unsubscribeNode(subscriber: TNodeSubscriber): void;
14
+ }
15
+ //# sourceMappingURL=t-step-service-api.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"t-step-service-api.d.ts","sourceRoot":"","sources":["../../../src/service/target/t-step-service-api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAElD,OAAO,MAAM,MAAM,iDAAiD,CAAA;AACpE,OAAO,EAAE,eAAe,EAAE,MAAM,mDAAmD,CAAA;AACnF,OAAO,EAAE,eAAe,EAAE,MAAM,6CAA6C,CAAA;AAE7E,MAAM,CAAC,OAAO,WAAW,eAAe;IACtC,GAAG,EAAE,MAAM,CAAA;IAEX,KAAK,EAAE,cAAc,CAAC,MAAM,CAAC,CAAA;IAE7B,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;IAEnC,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAA;IAEhD,SAAS,CAAC,UAAU,EAAE,eAAe,GAAG,MAAM,IAAI,CAAA;IAElD,WAAW,CAAC,UAAU,EAAE,eAAe,GAAG,IAAI,CAAA;IAE9C,aAAa,CAAC,UAAU,EAAE,eAAe,GAAG,MAAM,IAAI,CAAA;IAEtD,eAAe,CAAC,UAAU,EAAE,eAAe,GAAG,IAAI,CAAA;CACnD"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-flow-interface",
3
- "version": "0.23.4",
3
+ "version": "0.23.6",
4
4
  "description": "Interface package for NEXT FlOW. You can use this package to build your own plugin that can control anything.",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-t-attributes.type.d.ts","sourceRoot":"","sources":["../../src/hook/use-t-attributes.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAElC,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,GAAG,OAAO,EACvC,IAAI,CAAC,EAAE,MAAM,KACV;IACH,GAAG,EAAE,MAAM,CAAA;IACX,GAAG,EAAE,MAAM,CAAA;IACX,KAAK,EAAE,CAAC,GAAG,IAAI,CAAA;IACf,GAAG,EAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IACnD,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,OAAO,KAAK,IAAI,CAAA;IACxD,KAAK,EAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAA;IACrC,UAAU,EAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,KAAK,IAAI,CAAA;CAC3C,CAAA"}
@@ -1,16 +0,0 @@
1
- import { RvPath, StoredRhineVar } from 'rhine-var';
2
- import { default as RvNode } from '../../sync/interface/step/attributes/rv-node.interface';
3
- import { TAttributesSubscriber } from '../dto/t-attributes-subscriber.type';
4
- export default interface TAttributesServiceApi {
5
- sid: string;
6
- nid: string;
7
- state: StoredRhineVar<RvNode> | null;
8
- subscribe(subscriber: TAttributesSubscriber): () => void;
9
- unsubscribe(subscriber: TAttributesSubscriber): void;
10
- set<T>(path: string | RvPath, value: T): void;
11
- multiSet<T>(path: string | RvPath, value: T): void;
12
- check<T>(path: string | RvPath): void;
13
- multiCheck<T>(path: string | RvPath): void;
14
- get<T>(path: string | RvPath): T | null;
15
- }
16
- //# sourceMappingURL=t-attributes-service-api.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"t-attributes-service-api.d.ts","sourceRoot":"","sources":["../../../../src/service/target/attribute/t-attributes-service-api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAElD,OAAO,MAAM,MAAM,4DAA4D,CAAA;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,mDAAmD,CAAA;AAEzF,MAAM,CAAC,OAAO,WAAW,qBAAqB;IAC5C,GAAG,EAAE,MAAM,CAAA;IAEX,GAAG,EAAE,MAAM,CAAA;IAEX,KAAK,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAA;IAEpC,SAAS,CAAC,UAAU,EAAE,qBAAqB,GAAG,MAAM,IAAI,CAAA;IAExD,WAAW,CAAC,UAAU,EAAE,qBAAqB,GAAG,IAAI,CAAA;IAEpD,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI,CAAA;IAE7C,QAAQ,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,CAAC,GAAG,IAAI,CAAA;IAElD,KAAK,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAErC,UAAU,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAA;IAE1C,GAAG,CAAC,CAAC,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,CAAC,GAAG,IAAI,CAAA;CACxC"}
@@ -1,4 +0,0 @@
1
- import { RvPath } from 'rhine-var';
2
- import { TChangeType } from './t-change-type.enum';
3
- export type TSubscriber = (type: TChangeType, path: RvPath, value: unknown, oldValue: unknown, sid: string) => void;
4
- //# sourceMappingURL=t-subscriber.type.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"t-subscriber.type.d.ts","sourceRoot":"","sources":["../../../../src/service/target/dto/t-subscriber.type.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAA;AAElC,OAAO,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAA;AAElD,MAAM,MAAM,WAAW,GAAG,CACxB,IAAI,EAAE,WAAW,EACjB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,OAAO,EACd,QAAQ,EAAE,OAAO,EACjB,GAAG,EAAE,MAAM,KACR,IAAI,CAAA"}
@@ -1,15 +0,0 @@
1
- import { RvPath, StoredRhineVar } from 'rhine-var';
2
- import { TAttributesSubscriber } from '../dto/t-attributes-subscriber.type';
3
- import { TSubscriber } from '../dto/t-subscriber.type';
4
- import { default as RvStep } from '../../sync/interface/step/rv-step.interface';
5
- export default interface TStepServiceApi {
6
- sid: string;
7
- state: StoredRhineVar<RvStep>;
8
- subscribe(subscriber: TSubscriber): () => void;
9
- unsubscribe(subscriber: TSubscriber): void;
10
- set(path: string | RvPath, value: unknown): void;
11
- get(path: string | RvPath): unknown;
12
- subscribeAttributes(subscriber: TAttributesSubscriber): () => void;
13
- unsubscribeAttributes(subscriber: TAttributesSubscriber): void;
14
- }
15
- //# sourceMappingURL=t-step-service-api.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"t-step-service-api.d.ts","sourceRoot":"","sources":["../../../../src/service/target/step/t-step-service-api.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,WAAW,CAAA;AAElD,OAAO,EAAE,qBAAqB,EAAE,MAAM,mDAAmD,CAAA;AACzF,OAAO,EAAE,WAAW,EAAE,MAAM,wCAAwC,CAAA;AAEpE,OAAO,MAAM,MAAM,6CAA6C,CAAA;AAEhE,MAAM,CAAC,OAAO,WAAW,eAAe;IACtC,GAAG,EAAE,MAAM,CAAA;IAEX,KAAK,EAAE,cAAc,CAAC,MAAM,CAAC,CAAA;IAE7B,SAAS,CAAC,UAAU,EAAE,WAAW,GAAG,MAAM,IAAI,CAAA;IAE9C,WAAW,CAAC,UAAU,EAAE,WAAW,GAAG,IAAI,CAAA;IAE1C,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,KAAK,EAAE,OAAO,GAAG,IAAI,CAAA;IAEhD,GAAG,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,GAAG,OAAO,CAAA;IAEnC,mBAAmB,CAAC,UAAU,EAAE,qBAAqB,GAAG,MAAM,IAAI,CAAA;IAElE,qBAAqB,CAAC,UAAU,EAAE,qBAAqB,GAAG,IAAI,CAAA;CAC/D"}