interaqt 0.1.0 → 0.2.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/agent/.claude/agents/code-generation-handler.md +598 -0
- package/agent/.claude/agents/computation-generation-handler.md +290 -0
- package/agent/.claude/agents/implement-design-handler.md +179 -0
- package/agent/.claude/agents/permission-generation-handler.md +202 -0
- package/agent/.claude/agents/requirements-analysis-handler-bak.md +530 -0
- package/agent/.claude/agents/requirements-analysis-handler.md +720 -0
- package/agent/.claude/settings.local.json +46 -0
- package/agent/CLAUDE.md +72 -0
- package/dist/index.js +10508 -4
- package/dist/index.js.map +1 -1
- package/dist/runtime/ComputationSourceMap.d.ts +117 -0
- package/dist/runtime/ComputationSourceMap.d.ts.map +1 -0
- package/dist/runtime/Controller.d.ts +37 -26
- package/dist/runtime/Controller.d.ts.map +1 -1
- package/dist/runtime/ExternalSynchronizer.d.ts +6 -0
- package/dist/runtime/ExternalSynchronizer.d.ts.map +1 -0
- package/dist/runtime/MonoSystem.d.ts +29 -17
- package/dist/runtime/MonoSystem.d.ts.map +1 -1
- package/dist/runtime/Mysql.d.ts +2 -2
- package/dist/runtime/PGLite.d.ts +35 -0
- package/dist/runtime/PGLite.d.ts.map +1 -0
- package/dist/runtime/PostgreSQL.d.ts +2 -2
- package/dist/runtime/SQLite.d.ts +3 -3
- package/dist/runtime/SQLite.d.ts.map +1 -1
- package/dist/runtime/Scheduler.d.ts +28 -61
- package/dist/runtime/Scheduler.d.ts.map +1 -1
- package/dist/runtime/System.d.ts +18 -224
- package/dist/runtime/System.d.ts.map +1 -1
- package/dist/runtime/{ActivityCall.d.ts → activity/ActivityCall.d.ts} +6 -7
- package/dist/runtime/activity/ActivityCall.d.ts.map +1 -0
- package/dist/runtime/activity/ActivityManager.d.ts +44 -0
- package/dist/runtime/activity/ActivityManager.d.ts.map +1 -0
- package/dist/runtime/{InteractionCall.d.ts → activity/InteractionCall.d.ts} +28 -41
- package/dist/runtime/activity/InteractionCall.d.ts.map +1 -0
- package/dist/runtime/computations/Any.d.ts +71 -0
- package/dist/runtime/computations/Any.d.ts.map +1 -0
- package/dist/runtime/computations/Average.d.ts +69 -0
- package/dist/runtime/computations/Average.d.ts.map +1 -0
- package/dist/runtime/computations/Computation.d.ts +138 -0
- package/dist/runtime/computations/Computation.d.ts.map +1 -0
- package/dist/runtime/computations/Count.d.ts +73 -0
- package/dist/runtime/computations/Count.d.ts.map +1 -0
- package/dist/runtime/computations/Custom.d.ts +45 -0
- package/dist/runtime/computations/Custom.d.ts.map +1 -0
- package/dist/runtime/computations/Every.d.ts +74 -0
- package/dist/runtime/computations/Every.d.ts.map +1 -0
- package/dist/runtime/computations/MathResolver.d.ts +60 -0
- package/dist/runtime/computations/MathResolver.d.ts.map +1 -0
- package/dist/runtime/computations/RealTime.d.ts +66 -0
- package/dist/runtime/computations/RealTime.d.ts.map +1 -0
- package/dist/runtime/{computedDataHandles → computations}/StateMachine.d.ts +31 -22
- package/dist/runtime/computations/StateMachine.d.ts.map +1 -0
- package/dist/runtime/computations/Summation.d.ts +66 -0
- package/dist/runtime/computations/Summation.d.ts.map +1 -0
- package/dist/runtime/computations/Transform.d.ts +29 -0
- package/dist/runtime/computations/Transform.d.ts.map +1 -0
- package/dist/runtime/computations/TransitionFinder.d.ts +11 -0
- package/dist/runtime/computations/TransitionFinder.d.ts.map +1 -0
- package/dist/runtime/computations/WeightedSummation.d.ts +71 -0
- package/dist/runtime/computations/WeightedSummation.d.ts.map +1 -0
- package/dist/runtime/computations/index.d.ts +22 -0
- package/dist/runtime/computations/index.d.ts.map +1 -0
- package/dist/runtime/errors/ActivityErrors.d.ts +40 -0
- package/dist/runtime/errors/ActivityErrors.d.ts.map +1 -0
- package/dist/runtime/errors/ComputationErrors.d.ts +61 -0
- package/dist/runtime/errors/ComputationErrors.d.ts.map +1 -0
- package/dist/runtime/errors/ConditionErrors.d.ts +33 -0
- package/dist/runtime/errors/ConditionErrors.d.ts.map +1 -0
- package/dist/runtime/errors/FrameworkError.d.ts +77 -0
- package/dist/runtime/errors/FrameworkError.d.ts.map +1 -0
- package/dist/runtime/errors/InteractionErrors.d.ts +21 -0
- package/dist/runtime/errors/InteractionErrors.d.ts.map +1 -0
- package/dist/runtime/errors/SystemErrors.d.ts +16 -0
- package/dist/runtime/errors/SystemErrors.d.ts.map +1 -0
- package/dist/runtime/errors/index.d.ts +37 -0
- package/dist/runtime/errors/index.d.ts.map +1 -0
- package/dist/runtime/index.d.ts +9 -7
- package/dist/runtime/index.d.ts.map +1 -1
- package/dist/shared/Action.d.ts +38 -0
- package/dist/shared/Action.d.ts.map +1 -0
- package/dist/shared/Activity.d.ts +178 -0
- package/dist/shared/Activity.d.ts.map +1 -0
- package/dist/shared/Any.d.ts +82 -0
- package/dist/shared/Any.d.ts.map +1 -0
- package/dist/shared/Attributive.d.ts +92 -0
- package/dist/shared/Attributive.d.ts.map +1 -0
- package/dist/shared/Average.d.ts +59 -0
- package/dist/shared/Average.d.ts.map +1 -0
- package/dist/shared/BoolExp.d.ts +139 -63
- package/dist/shared/BoolExp.d.ts.map +1 -1
- package/dist/shared/Computation.d.ts +23 -0
- package/dist/shared/Computation.d.ts.map +1 -0
- package/dist/shared/Condition.d.ts +43 -0
- package/dist/shared/Condition.d.ts.map +1 -0
- package/dist/shared/Conditions.d.ts +38 -0
- package/dist/shared/Conditions.d.ts.map +1 -0
- package/dist/shared/Count.d.ts +77 -0
- package/dist/shared/Count.d.ts.map +1 -0
- package/dist/shared/Custom.d.ts +108 -0
- package/dist/shared/Custom.d.ts.map +1 -0
- package/dist/shared/Data.d.ts +121 -0
- package/dist/shared/Data.d.ts.map +1 -0
- package/dist/shared/DataAttributives.d.ts +38 -0
- package/dist/shared/DataAttributives.d.ts.map +1 -0
- package/dist/shared/Entity.d.ts +96 -0
- package/dist/shared/Entity.d.ts.map +1 -0
- package/dist/shared/Event.d.ts +36 -0
- package/dist/shared/Event.d.ts.map +1 -0
- package/dist/shared/Every.d.ts +85 -0
- package/dist/shared/Every.d.ts.map +1 -0
- package/dist/shared/Gateway.d.ts +36 -0
- package/dist/shared/Gateway.d.ts.map +1 -0
- package/dist/shared/Interaction.d.ts +108 -0
- package/dist/shared/Interaction.d.ts.map +1 -0
- package/dist/shared/Payload.d.ts +39 -0
- package/dist/shared/Payload.d.ts.map +1 -0
- package/dist/shared/PayloadItem.d.ts +85 -0
- package/dist/shared/PayloadItem.d.ts.map +1 -0
- package/dist/shared/Property.d.ts +83 -0
- package/dist/shared/Property.d.ts.map +1 -0
- package/dist/shared/RealDictionary.d.ts +94 -0
- package/dist/shared/RealDictionary.d.ts.map +1 -0
- package/dist/shared/RealTime.d.ts +66 -0
- package/dist/shared/RealTime.d.ts.map +1 -0
- package/dist/shared/RefContainer.d.ts +89 -0
- package/dist/shared/RefContainer.d.ts.map +1 -0
- package/dist/shared/Relation.d.ts +140 -0
- package/dist/shared/Relation.d.ts.map +1 -0
- package/dist/shared/SideEffect.d.ts +45 -0
- package/dist/shared/SideEffect.d.ts.map +1 -0
- package/dist/shared/StateMachine.d.ts +55 -0
- package/dist/shared/StateMachine.d.ts.map +1 -0
- package/dist/shared/StateNode.d.ts +45 -0
- package/dist/shared/StateNode.d.ts.map +1 -0
- package/dist/shared/StateTransfer.d.ts +63 -0
- package/dist/shared/StateTransfer.d.ts.map +1 -0
- package/dist/shared/Summation.d.ts +59 -0
- package/dist/shared/Summation.d.ts.map +1 -0
- package/dist/shared/Transform.d.ts +54 -0
- package/dist/shared/Transform.d.ts.map +1 -0
- package/dist/shared/User.d.ts +10 -0
- package/dist/shared/User.d.ts.map +1 -0
- package/dist/shared/WeightedSummation.d.ts +82 -0
- package/dist/shared/WeightedSummation.d.ts.map +1 -0
- package/dist/shared/index.d.ts +35 -9
- package/dist/shared/index.d.ts.map +1 -1
- package/dist/shared/init.d.ts +3 -0
- package/dist/shared/init.d.ts.map +1 -0
- package/dist/shared/interfaces.d.ts +72 -0
- package/dist/shared/interfaces.d.ts.map +1 -0
- package/dist/shared/types.d.ts +77 -0
- package/dist/shared/types.d.ts.map +1 -0
- package/dist/shared/utils.d.ts +16 -10
- package/dist/shared/utils.d.ts.map +1 -1
- package/dist/storage/erstorage/AttributeInfo.d.ts +8 -3
- package/dist/storage/erstorage/AttributeInfo.d.ts.map +1 -1
- package/dist/storage/erstorage/AttributeQuery.d.ts +4 -3
- package/dist/storage/erstorage/AttributeQuery.d.ts.map +1 -1
- package/dist/storage/erstorage/EntityQueryHandle.d.ts +18 -17
- package/dist/storage/erstorage/EntityQueryHandle.d.ts.map +1 -1
- package/dist/storage/erstorage/EntityToTableMap.d.ts +27 -5
- package/dist/storage/erstorage/EntityToTableMap.d.ts.map +1 -1
- package/dist/storage/erstorage/FilteredEntityManager.d.ts +70 -0
- package/dist/storage/erstorage/FilteredEntityManager.d.ts.map +1 -0
- package/dist/storage/erstorage/LinkInfo.d.ts +10 -3
- package/dist/storage/erstorage/LinkInfo.d.ts.map +1 -1
- package/dist/storage/erstorage/MatchExp.d.ts +19 -9
- package/dist/storage/erstorage/MatchExp.d.ts.map +1 -1
- package/dist/storage/erstorage/MergedItemProcessor.d.ts +25 -0
- package/dist/storage/erstorage/MergedItemProcessor.d.ts.map +1 -0
- package/dist/storage/erstorage/Modifier.d.ts +1 -1
- package/dist/storage/erstorage/NewRecordData.d.ts +16 -9
- package/dist/storage/erstorage/NewRecordData.d.ts.map +1 -1
- package/dist/storage/erstorage/RecordInfo.d.ts +11 -2
- package/dist/storage/erstorage/RecordInfo.d.ts.map +1 -1
- package/dist/storage/erstorage/RecordQuery.d.ts +9 -8
- package/dist/storage/erstorage/RecordQuery.d.ts.map +1 -1
- package/dist/storage/erstorage/RecordQueryAgent.d.ts +26 -13
- package/dist/storage/erstorage/RecordQueryAgent.d.ts.map +1 -1
- package/dist/storage/erstorage/Setup.d.ts +49 -11
- package/dist/storage/erstorage/Setup.d.ts.map +1 -1
- package/dist/storage/erstorage/util.d.ts.map +1 -1
- package/package.json +44 -20
- package/README.md +0 -53
- package/dist/runtime/ActivityCall.d.ts.map +0 -1
- package/dist/runtime/ActivityCall.js +0 -379
- package/dist/runtime/ActivityCall.js.map +0 -1
- package/dist/runtime/Controller.js +0 -225
- package/dist/runtime/Controller.js.map +0 -1
- package/dist/runtime/InteractionCall.d.ts.map +0 -1
- package/dist/runtime/InteractionCall.js +0 -385
- package/dist/runtime/InteractionCall.js.map +0 -1
- package/dist/runtime/MonoSystem.js +0 -331
- package/dist/runtime/MonoSystem.js.map +0 -1
- package/dist/runtime/Mysql.js +0 -171
- package/dist/runtime/Mysql.js.map +0 -1
- package/dist/runtime/PostgreSQL.js +0 -172
- package/dist/runtime/PostgreSQL.js.map +0 -1
- package/dist/runtime/SQLite.js +0 -146
- package/dist/runtime/SQLite.js.map +0 -1
- package/dist/runtime/Scheduler.js +0 -457
- package/dist/runtime/Scheduler.js.map +0 -1
- package/dist/runtime/System.js +0 -90
- package/dist/runtime/System.js.map +0 -1
- package/dist/runtime/asyncInteractionContext.js +0 -3
- package/dist/runtime/asyncInteractionContext.js.map +0 -1
- package/dist/runtime/boolExpression.js +0 -43
- package/dist/runtime/boolExpression.js.map +0 -1
- package/dist/runtime/computedDataHandles/Any.d.ts +0 -52
- package/dist/runtime/computedDataHandles/Any.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/Any.js +0 -152
- package/dist/runtime/computedDataHandles/Any.js.map +0 -1
- package/dist/runtime/computedDataHandles/Computation.d.ts +0 -108
- package/dist/runtime/computedDataHandles/Computation.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/Computation.js +0 -49
- package/dist/runtime/computedDataHandles/Computation.js.map +0 -1
- package/dist/runtime/computedDataHandles/ComputedDataHandle.d.ts +0 -42
- package/dist/runtime/computedDataHandles/ComputedDataHandle.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/ComputedDataHandle.js +0 -4
- package/dist/runtime/computedDataHandles/ComputedDataHandle.js.map +0 -1
- package/dist/runtime/computedDataHandles/Count.d.ts +0 -45
- package/dist/runtime/computedDataHandles/Count.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/Count.js +0 -85
- package/dist/runtime/computedDataHandles/Count.js.map +0 -1
- package/dist/runtime/computedDataHandles/Every.d.ts +0 -56
- package/dist/runtime/computedDataHandles/Every.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/Every.js +0 -178
- package/dist/runtime/computedDataHandles/Every.js.map +0 -1
- package/dist/runtime/computedDataHandles/StateMachine.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/StateMachine.js +0 -180
- package/dist/runtime/computedDataHandles/StateMachine.js.map +0 -1
- package/dist/runtime/computedDataHandles/Transform.d.ts +0 -26
- package/dist/runtime/computedDataHandles/Transform.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/Transform.js +0 -106
- package/dist/runtime/computedDataHandles/Transform.js.map +0 -1
- package/dist/runtime/computedDataHandles/TransitionFinder.d.ts +0 -57
- package/dist/runtime/computedDataHandles/TransitionFinder.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/TransitionFinder.js +0 -40
- package/dist/runtime/computedDataHandles/TransitionFinder.js.map +0 -1
- package/dist/runtime/computedDataHandles/WeightedSummation.d.ts +0 -57
- package/dist/runtime/computedDataHandles/WeightedSummation.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/WeightedSummation.js +0 -146
- package/dist/runtime/computedDataHandles/WeightedSummation.js.map +0 -1
- package/dist/runtime/computedDataHandles/index.d.ts +0 -7
- package/dist/runtime/computedDataHandles/index.d.ts.map +0 -1
- package/dist/runtime/computedDataHandles/index.js +0 -7
- package/dist/runtime/computedDataHandles/index.js.map +0 -1
- package/dist/runtime/index.js +0 -15
- package/dist/runtime/index.js.map +0 -1
- package/dist/runtime/server.d.ts +0 -35
- package/dist/runtime/server.d.ts.map +0 -1
- package/dist/runtime/server.js +0 -171
- package/dist/runtime/server.js.map +0 -1
- package/dist/runtime/types/boolExpression.js +0 -6
- package/dist/runtime/types/boolExpression.js.map +0 -1
- package/dist/runtime/util.js +0 -39
- package/dist/runtime/util.js.map +0 -1
- package/dist/shared/BoolExp.js +0 -252
- package/dist/shared/BoolExp.js.map +0 -1
- package/dist/shared/activity/Activity.d.ts +0 -465
- package/dist/shared/activity/Activity.d.ts.map +0 -1
- package/dist/shared/activity/Activity.js +0 -264
- package/dist/shared/activity/Activity.js.map +0 -1
- package/dist/shared/activity/Condition.d.ts +0 -75
- package/dist/shared/activity/Condition.d.ts.map +0 -1
- package/dist/shared/activity/Condition.js +0 -51
- package/dist/shared/activity/Condition.js.map +0 -1
- package/dist/shared/activity/Data.d.ts +0 -115
- package/dist/shared/activity/Data.d.ts.map +0 -1
- package/dist/shared/activity/Data.js +0 -89
- package/dist/shared/activity/Data.js.map +0 -1
- package/dist/shared/attributive.d.ts +0 -93
- package/dist/shared/attributive.d.ts.map +0 -1
- package/dist/shared/attributive.js +0 -59
- package/dist/shared/attributive.js.map +0 -1
- package/dist/shared/computed.d.ts +0 -607
- package/dist/shared/computed.d.ts.map +0 -1
- package/dist/shared/computed.js +0 -202
- package/dist/shared/computed.js.map +0 -1
- package/dist/shared/createClass.d.ts +0 -102
- package/dist/shared/createClass.d.ts.map +0 -1
- package/dist/shared/createClass.js +0 -276
- package/dist/shared/createClass.js.map +0 -1
- package/dist/shared/dictionary/Dictionary.d.ts +0 -40
- package/dist/shared/dictionary/Dictionary.d.ts.map +0 -1
- package/dist/shared/dictionary/Dictionary.js +0 -51
- package/dist/shared/dictionary/Dictionary.js.map +0 -1
- package/dist/shared/entity/Entity.d.ts +0 -149
- package/dist/shared/entity/Entity.d.ts.map +0 -1
- package/dist/shared/entity/Entity.js +0 -226
- package/dist/shared/entity/Entity.js.map +0 -1
- package/dist/shared/index.js +0 -11
- package/dist/shared/index.js.map +0 -1
- package/dist/shared/user/User.d.ts +0 -21
- package/dist/shared/user/User.d.ts.map +0 -1
- package/dist/shared/user/User.js +0 -11
- package/dist/shared/user/User.js.map +0 -1
- package/dist/shared/utils.js +0 -19
- package/dist/shared/utils.js.map +0 -1
- package/dist/storage/erstorage/AttributeInfo.js +0 -147
- package/dist/storage/erstorage/AttributeInfo.js.map +0 -1
- package/dist/storage/erstorage/AttributeQuery.js +0 -190
- package/dist/storage/erstorage/AttributeQuery.js.map +0 -1
- package/dist/storage/erstorage/EntityQueryHandle.js +0 -78
- package/dist/storage/erstorage/EntityQueryHandle.js.map +0 -1
- package/dist/storage/erstorage/EntityToTableMap.js +0 -262
- package/dist/storage/erstorage/EntityToTableMap.js.map +0 -1
- package/dist/storage/erstorage/LinkInfo.js +0 -89
- package/dist/storage/erstorage/LinkInfo.js.map +0 -1
- package/dist/storage/erstorage/MatchExp.js +0 -211
- package/dist/storage/erstorage/MatchExp.js.map +0 -1
- package/dist/storage/erstorage/Modifier.js +0 -24
- package/dist/storage/erstorage/Modifier.js.map +0 -1
- package/dist/storage/erstorage/NewRecordData.js +0 -178
- package/dist/storage/erstorage/NewRecordData.js.map +0 -1
- package/dist/storage/erstorage/RecordInfo.js +0 -111
- package/dist/storage/erstorage/RecordInfo.js.map +0 -1
- package/dist/storage/erstorage/RecordQuery.js +0 -158
- package/dist/storage/erstorage/RecordQuery.js.map +0 -1
- package/dist/storage/erstorage/RecordQueryAgent.js +0 -1130
- package/dist/storage/erstorage/RecordQueryAgent.js.map +0 -1
- package/dist/storage/erstorage/Setup.js +0 -400
- package/dist/storage/erstorage/Setup.js.map +0 -1
- package/dist/storage/erstorage/util.js +0 -25
- package/dist/storage/erstorage/util.js.map +0 -1
- package/dist/storage/index.js +0 -13
- package/dist/storage/index.js.map +0 -1
- package/dist/storage/utils.js +0 -48
- package/dist/storage/utils.js.map +0 -1
package/dist/shared/BoolExp.d.ts
CHANGED
|
@@ -1,5 +1,129 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { IInstance } from './interfaces.js';
|
|
2
|
+
export interface BoolAtomDataInstance extends IInstance {
|
|
3
|
+
type: string;
|
|
4
|
+
data: {
|
|
5
|
+
content?: Function;
|
|
6
|
+
[key: string]: unknown;
|
|
7
|
+
};
|
|
8
|
+
}
|
|
9
|
+
export interface BoolAtomDataCreateArgs {
|
|
10
|
+
type?: string;
|
|
11
|
+
data: {
|
|
12
|
+
content?: Function;
|
|
13
|
+
[key: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
export declare class BoolAtomData implements BoolAtomDataInstance {
|
|
17
|
+
uuid: string;
|
|
18
|
+
_type: string;
|
|
19
|
+
_options?: {
|
|
20
|
+
uuid?: string;
|
|
21
|
+
};
|
|
22
|
+
type: string;
|
|
23
|
+
data: {
|
|
24
|
+
content?: Function;
|
|
25
|
+
[key: string]: unknown;
|
|
26
|
+
};
|
|
27
|
+
constructor(args: BoolAtomDataCreateArgs, options?: {
|
|
28
|
+
uuid?: string;
|
|
29
|
+
});
|
|
30
|
+
static isKlass: true;
|
|
31
|
+
static displayName: string;
|
|
32
|
+
static instances: BoolAtomDataInstance[];
|
|
33
|
+
static public: {
|
|
34
|
+
type: {
|
|
35
|
+
type: "string";
|
|
36
|
+
required: true;
|
|
37
|
+
collection: false;
|
|
38
|
+
defaultValue: () => string;
|
|
39
|
+
};
|
|
40
|
+
data: {
|
|
41
|
+
instanceType: {
|
|
42
|
+
content?: Function;
|
|
43
|
+
[key: string]: unknown;
|
|
44
|
+
};
|
|
45
|
+
required: true;
|
|
46
|
+
collection: false;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
static create(args: BoolAtomDataCreateArgs, options?: {
|
|
50
|
+
uuid?: string;
|
|
51
|
+
}): BoolAtomDataInstance;
|
|
52
|
+
static stringify(instance: BoolAtomDataInstance): string;
|
|
53
|
+
static clone(instance: BoolAtomDataInstance, deep: boolean): BoolAtomDataInstance;
|
|
54
|
+
static is(obj: unknown): obj is BoolAtomDataInstance;
|
|
55
|
+
static check(data: unknown): boolean;
|
|
56
|
+
static parse(json: string): BoolAtomDataInstance;
|
|
57
|
+
}
|
|
58
|
+
export interface BoolExpressionDataInstance extends IInstance {
|
|
59
|
+
type: string;
|
|
60
|
+
operator: 'and' | 'or' | 'not';
|
|
61
|
+
left: BoolAtomDataInstance | BoolExpressionDataInstance;
|
|
62
|
+
right?: BoolAtomDataInstance | BoolExpressionDataInstance;
|
|
63
|
+
}
|
|
64
|
+
export interface BoolExpressionDataCreateArgs {
|
|
65
|
+
type?: string;
|
|
66
|
+
operator?: 'and' | 'or' | 'not';
|
|
67
|
+
left: BoolAtomDataInstance | BoolExpressionDataInstance;
|
|
68
|
+
right?: BoolAtomDataInstance | BoolExpressionDataInstance;
|
|
69
|
+
}
|
|
70
|
+
export declare class BoolExpressionData implements BoolExpressionDataInstance {
|
|
71
|
+
uuid: string;
|
|
72
|
+
_type: string;
|
|
73
|
+
_options?: {
|
|
74
|
+
uuid?: string;
|
|
75
|
+
};
|
|
76
|
+
type: string;
|
|
77
|
+
operator: 'and' | 'or' | 'not';
|
|
78
|
+
left: BoolAtomDataInstance | BoolExpressionDataInstance;
|
|
79
|
+
right?: BoolAtomDataInstance | BoolExpressionDataInstance;
|
|
80
|
+
constructor(args: BoolExpressionDataCreateArgs, options?: {
|
|
81
|
+
uuid?: string;
|
|
82
|
+
});
|
|
83
|
+
static isKlass: true;
|
|
84
|
+
static displayName: string;
|
|
85
|
+
static instances: BoolExpressionDataInstance[];
|
|
86
|
+
static public: {
|
|
87
|
+
type: {
|
|
88
|
+
type: "string";
|
|
89
|
+
required: false;
|
|
90
|
+
collection: false;
|
|
91
|
+
defaultValue: () => string;
|
|
92
|
+
};
|
|
93
|
+
operator: {
|
|
94
|
+
type: "string";
|
|
95
|
+
required: true;
|
|
96
|
+
collection: false;
|
|
97
|
+
options: string[];
|
|
98
|
+
defaultValue: () => string;
|
|
99
|
+
};
|
|
100
|
+
left: {
|
|
101
|
+
instanceType: {
|
|
102
|
+
content?: Function;
|
|
103
|
+
[key: string]: unknown;
|
|
104
|
+
};
|
|
105
|
+
required: true;
|
|
106
|
+
collection: false;
|
|
107
|
+
};
|
|
108
|
+
right: {
|
|
109
|
+
instanceType: {
|
|
110
|
+
content?: Function;
|
|
111
|
+
[key: string]: unknown;
|
|
112
|
+
};
|
|
113
|
+
required: false;
|
|
114
|
+
collection: false;
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
static create(args: BoolExpressionDataCreateArgs, options?: {
|
|
118
|
+
uuid?: string;
|
|
119
|
+
}): BoolExpressionDataInstance;
|
|
120
|
+
static stringify(instance: BoolExpressionDataInstance): string;
|
|
121
|
+
static clone(instance: BoolExpressionDataInstance, deep: boolean): BoolExpressionDataInstance;
|
|
122
|
+
static is(obj: unknown): obj is BoolExpressionDataInstance;
|
|
123
|
+
static check(data: unknown): boolean;
|
|
124
|
+
static parse(json: string): BoolExpressionDataInstance;
|
|
125
|
+
}
|
|
126
|
+
export type AtomData<T> = {
|
|
3
127
|
type: 'atom';
|
|
4
128
|
data: T;
|
|
5
129
|
};
|
|
@@ -9,14 +133,15 @@ export type BoolExpressionRawData<T> = {
|
|
|
9
133
|
left: ExpressionData<T>;
|
|
10
134
|
right?: ExpressionData<T>;
|
|
11
135
|
};
|
|
12
|
-
export type EvaluateError = {
|
|
13
|
-
data:
|
|
14
|
-
stack:
|
|
136
|
+
export type EvaluateError<T> = {
|
|
137
|
+
data: T;
|
|
138
|
+
stack: ExpressionData<T>[];
|
|
15
139
|
error: any;
|
|
16
140
|
inverse: boolean;
|
|
17
141
|
};
|
|
18
142
|
export type ExpressionData<T> = BoolExpressionRawData<T> | AtomData<T>;
|
|
19
|
-
export type AtomHandle<T> = (arg: T) => boolean | Promise<boolean>;
|
|
143
|
+
export type AtomHandle<T> = (arg: T) => boolean | string | Promise<boolean | string>;
|
|
144
|
+
type MapFn<T, U> = (object: BoolExp<T>, context: string[]) => U | BoolExp<U>;
|
|
20
145
|
export declare class BoolExp<T> {
|
|
21
146
|
raw: ExpressionData<T>;
|
|
22
147
|
static atom<U>(data: U): BoolExp<U>;
|
|
@@ -24,74 +149,25 @@ export declare class BoolExp<T> {
|
|
|
24
149
|
static or<U>(...atomValues: U[]): BoolExp<U>;
|
|
25
150
|
constructor(raw: ExpressionData<T>);
|
|
26
151
|
isAtom(): boolean;
|
|
152
|
+
get type(): "atom" | "expression";
|
|
27
153
|
get left(): BoolExp<T>;
|
|
28
154
|
get right(): BoolExp<T> | undefined;
|
|
29
155
|
get data(): T;
|
|
30
156
|
toValue(): AtomData<T>;
|
|
31
157
|
static fromValue<T>(value: ExpressionData<T>): BoolExp<T>;
|
|
32
158
|
isExpression(): boolean;
|
|
33
|
-
and(atomValueOrExp:
|
|
159
|
+
and(atomValueOrExp: unknown): BoolExp<T>;
|
|
34
160
|
isAnd(): boolean;
|
|
35
161
|
isOr(): boolean;
|
|
36
162
|
isNot(): boolean;
|
|
37
|
-
or(atomValueOrExp:
|
|
163
|
+
or(atomValueOrExp: unknown): BoolExp<T>;
|
|
38
164
|
not(): BoolExp<T>;
|
|
39
165
|
map<U>(fn: MapFn<T, U>, context?: string[]): BoolExp<U>;
|
|
40
|
-
find(matchFn: (atom: T, context: string[]) => boolean, context:
|
|
41
|
-
evaluate(atomHandle: AtomHandle<T>, stack?:
|
|
42
|
-
evaluateAsync(atomHandle: AtomHandle<T>, stack?:
|
|
166
|
+
find(matchFn: (atom: T, context: string[]) => boolean, context: unknown[]): T | undefined;
|
|
167
|
+
evaluate(atomHandle: AtomHandle<T>, stack?: ExpressionData<T>[], inverse?: boolean): true | EvaluateError<T>;
|
|
168
|
+
evaluateAsync(atomHandle: AtomHandle<T>, stack?: ExpressionData<T>[], inverse?: boolean): Promise<true | EvaluateError<T>>;
|
|
43
169
|
}
|
|
44
|
-
type
|
|
45
|
-
|
|
46
|
-
export declare function parse<T>(exp: string, options?: any[], parseAtomNameToObject?: ParseAtomNameToObjectType): BoolExp<T>;
|
|
47
|
-
type CommonAtomPublic = {
|
|
48
|
-
content: {
|
|
49
|
-
type: 'function';
|
|
50
|
-
required: true;
|
|
51
|
-
collection: false;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
export type BoolAtomPublic = {
|
|
55
|
-
type: {
|
|
56
|
-
type: 'string';
|
|
57
|
-
required: true;
|
|
58
|
-
};
|
|
59
|
-
data: {
|
|
60
|
-
type: Klass<CommonAtomPublic>;
|
|
61
|
-
required: true;
|
|
62
|
-
};
|
|
63
|
-
};
|
|
64
|
-
export declare const BoolAtomData: Klass<BoolAtomPublic>;
|
|
65
|
-
export type UnwrappedBoolExpressionInstanceType<T extends NonNullable<KlassMeta["public"]>> = {
|
|
66
|
-
type: string;
|
|
67
|
-
operator: string;
|
|
68
|
-
left: UnwrappedBoolExpressionInstanceType<T> | KlassInstance<typeof BoolAtomData>;
|
|
69
|
-
right?: UnwrappedBoolExpressionInstanceType<T> | KlassInstance<typeof BoolAtomData>;
|
|
70
|
-
} & KlassInstancePrimitiveProps;
|
|
71
|
-
export declare const BoolExpressionData: Klass<{
|
|
72
|
-
type: {
|
|
73
|
-
type: "string";
|
|
74
|
-
required: true;
|
|
75
|
-
collection: false;
|
|
76
|
-
defaultValue: () => string;
|
|
77
|
-
};
|
|
78
|
-
operator: {
|
|
79
|
-
type: "string";
|
|
80
|
-
required: true;
|
|
81
|
-
collection: false;
|
|
82
|
-
options: string[];
|
|
83
|
-
defaultValue: () => string;
|
|
84
|
-
};
|
|
85
|
-
left: {
|
|
86
|
-
instanceType: (KlassInstance<Klass<BoolAtomPublic>> | UnwrappedBoolExpressionInstanceType<any>);
|
|
87
|
-
required: true;
|
|
88
|
-
collection: false;
|
|
89
|
-
};
|
|
90
|
-
right: {
|
|
91
|
-
instanceType: (KlassInstance<Klass<BoolAtomPublic>> | UnwrappedBoolExpressionInstanceType<any>);
|
|
92
|
-
required: false;
|
|
93
|
-
collection: false;
|
|
94
|
-
};
|
|
95
|
-
}>;
|
|
170
|
+
type ParseAtomNameToObjectType = (name: string) => unknown;
|
|
171
|
+
export declare function parse<T>(exp: string, options?: unknown[], parseAtomNameToObject?: ParseAtomNameToObjectType): BoolExp<T>;
|
|
96
172
|
export {};
|
|
97
173
|
//# sourceMappingURL=BoolExp.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BoolExp.d.ts","sourceRoot":"","sources":["../../src/shared/BoolExp.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"BoolExp.d.ts","sourceRoot":"","sources":["../../src/shared/BoolExp.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ActivityInstance, AttributeQueryData, DictionaryInstance, EntityInstance, InteractionInstance, RelationInstance } from './types';
|
|
2
|
+
export type RecordsDataDep = {
|
|
3
|
+
type: 'records';
|
|
4
|
+
source: EntityInstance | RelationInstance | ActivityInstance | InteractionInstance;
|
|
5
|
+
match?: any;
|
|
6
|
+
modifier?: any;
|
|
7
|
+
attributeQuery?: AttributeQueryData;
|
|
8
|
+
};
|
|
9
|
+
export type GlobalDataDep = {
|
|
10
|
+
type: 'global';
|
|
11
|
+
source: DictionaryInstance;
|
|
12
|
+
};
|
|
13
|
+
export type PropertyDataDep = {
|
|
14
|
+
type: 'property';
|
|
15
|
+
attributeQuery?: AttributeQueryData;
|
|
16
|
+
};
|
|
17
|
+
export type DictionaryDataDep = {
|
|
18
|
+
type: 'dict';
|
|
19
|
+
source: DictionaryInstance;
|
|
20
|
+
keys: string[];
|
|
21
|
+
};
|
|
22
|
+
export type DataDep = RecordsDataDep | PropertyDataDep | GlobalDataDep | DictionaryDataDep;
|
|
23
|
+
//# sourceMappingURL=Computation.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Computation.d.ts","sourceRoot":"","sources":["../../src/shared/Computation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAA;AAGzI,MAAM,MAAM,cAAc,GAAG;IACzB,IAAI,EAAE,SAAS,CAAC;IAChB,MAAM,EAAE,cAAc,GAAC,gBAAgB,GAAC,gBAAgB,GAAC,mBAAmB,CAAC;IAC7E,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,cAAc,CAAC,EAAE,kBAAkB,CAAA;CACtC,CAAA;AAED,MAAM,MAAM,aAAa,GAAG;IACxB,IAAI,EAAE,QAAQ,CAAC;IACf,MAAM,EAAE,kBAAkB,CAAA;CAC7B,CAAA;AAGD,MAAM,MAAM,eAAe,GAAG;IAC1B,IAAI,EAAE,UAAU,CAAC;IACjB,cAAc,CAAC,EAAE,kBAAkB,CAAA;CACtC,CAAA;AAID,MAAM,MAAM,iBAAiB,GAAG;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,kBAAkB,CAAA;IAC1B,IAAI,EAAE,MAAM,EAAE,CAAA;CACjB,CAAA;AAED,MAAM,MAAM,OAAO,GAAG,cAAc,GAAC,eAAe,GAAC,aAAa,GAAC,iBAAiB,CAAA"}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { IInstance } from './interfaces.js';
|
|
2
|
+
export interface ConditionInstance extends IInstance {
|
|
3
|
+
content: Function;
|
|
4
|
+
name?: string;
|
|
5
|
+
}
|
|
6
|
+
export interface ConditionCreateArgs {
|
|
7
|
+
content: Function;
|
|
8
|
+
name?: string;
|
|
9
|
+
}
|
|
10
|
+
export declare class Condition implements ConditionInstance {
|
|
11
|
+
uuid: string;
|
|
12
|
+
_type: string;
|
|
13
|
+
_options?: {
|
|
14
|
+
uuid?: string;
|
|
15
|
+
};
|
|
16
|
+
content: Function;
|
|
17
|
+
name?: string;
|
|
18
|
+
constructor(args: ConditionCreateArgs, options?: {
|
|
19
|
+
uuid?: string;
|
|
20
|
+
});
|
|
21
|
+
static isKlass: true;
|
|
22
|
+
static displayName: string;
|
|
23
|
+
static instances: ConditionInstance[];
|
|
24
|
+
static public: {
|
|
25
|
+
content: {
|
|
26
|
+
type: "function";
|
|
27
|
+
required: true;
|
|
28
|
+
collection: false;
|
|
29
|
+
};
|
|
30
|
+
name: {
|
|
31
|
+
type: "string";
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
static create(args: ConditionCreateArgs, options?: {
|
|
35
|
+
uuid?: string;
|
|
36
|
+
}): ConditionInstance;
|
|
37
|
+
static stringify(instance: ConditionInstance): string;
|
|
38
|
+
static clone(instance: ConditionInstance, deep: boolean): ConditionInstance;
|
|
39
|
+
static is(obj: unknown): obj is ConditionInstance;
|
|
40
|
+
static check(data: unknown): boolean;
|
|
41
|
+
static parse(json: string): ConditionInstance;
|
|
42
|
+
}
|
|
43
|
+
//# sourceMappingURL=Condition.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Condition.d.ts","sourceRoot":"","sources":["../../src/shared/Condition.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAgC,MAAM,iBAAiB,CAAC;AAO1E,MAAM,WAAW,iBAAkB,SAAQ,SAAS;IAClD,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,qBAAa,SAAU,YAAW,iBAAiB;IAC1C,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,SAAe;IACpB,QAAQ,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC7B,OAAO,EAAE,QAAQ,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;gBAET,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;IAQlE,MAAM,CAAC,OAAO,EAAG,IAAI,CAAU;IAC/B,MAAM,CAAC,WAAW,SAAe;IACjC,MAAM,CAAC,SAAS,EAAE,iBAAiB,EAAE,CAAM;IAE3C,MAAM,CAAC,MAAM;;;;;;;;;MASX;IAEF,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,iBAAiB;IAaxF,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,iBAAiB,GAAG,MAAM;IAerD,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,iBAAiB,EAAE,IAAI,EAAE,OAAO,GAAG,iBAAiB;IASzE,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,iBAAiB;IAIjD,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO;IAItC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,iBAAiB;CAW9C"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { IInstance } from './interfaces.js';
|
|
2
|
+
import { BoolAtomDataInstance, BoolExpressionDataInstance, BoolExp } from './BoolExp.js';
|
|
3
|
+
export interface ConditionsInstance extends IInstance {
|
|
4
|
+
content?: BoolExpressionDataInstance | BoolAtomDataInstance;
|
|
5
|
+
}
|
|
6
|
+
export interface ConditionsCreateArgs {
|
|
7
|
+
content?: BoolExpressionDataInstance | BoolAtomDataInstance | BoolExp<any>;
|
|
8
|
+
}
|
|
9
|
+
export declare class Conditions implements ConditionsInstance {
|
|
10
|
+
uuid: string;
|
|
11
|
+
_type: string;
|
|
12
|
+
_options?: {
|
|
13
|
+
uuid?: string;
|
|
14
|
+
};
|
|
15
|
+
content?: BoolExpressionDataInstance | BoolAtomDataInstance;
|
|
16
|
+
constructor(args: ConditionsCreateArgs, options?: {
|
|
17
|
+
uuid?: string;
|
|
18
|
+
});
|
|
19
|
+
static isKlass: true;
|
|
20
|
+
static displayName: string;
|
|
21
|
+
static instances: ConditionsInstance[];
|
|
22
|
+
static public: {
|
|
23
|
+
content: {
|
|
24
|
+
type: readonly ["BoolExpressionData", "BoolAtomData"];
|
|
25
|
+
collection: false;
|
|
26
|
+
required: false;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
29
|
+
static create(args: ConditionsCreateArgs, options?: {
|
|
30
|
+
uuid?: string;
|
|
31
|
+
}): ConditionsInstance;
|
|
32
|
+
static stringify(instance: ConditionsInstance): string;
|
|
33
|
+
static clone(instance: ConditionsInstance, deep: boolean): ConditionsInstance;
|
|
34
|
+
static is(obj: unknown): obj is ConditionsInstance;
|
|
35
|
+
static check(data: unknown): boolean;
|
|
36
|
+
static parse(json: string): ConditionsInstance;
|
|
37
|
+
}
|
|
38
|
+
//# sourceMappingURL=Conditions.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Conditions.d.ts","sourceRoot":"","sources":["../../src/shared/Conditions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAgC,MAAM,iBAAiB,CAAC;AAE1E,OAAO,EAAE,oBAAoB,EAAE,0BAA0B,EAAE,OAAO,EAAoC,MAAM,cAAc,CAAC;AAE3H,MAAM,WAAW,kBAAmB,SAAQ,SAAS;IACnD,OAAO,CAAC,EAAE,0BAA0B,GAAG,oBAAoB,CAAC;CAC7D;AAED,MAAM,WAAW,oBAAoB;IACnC,OAAO,CAAC,EAAE,0BAA0B,GAAG,oBAAoB,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC;CAC5E;AAsBD,qBAAa,UAAW,YAAW,kBAAkB;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,SAAgB;IACrB,QAAQ,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC7B,OAAO,CAAC,EAAE,0BAA0B,GAAG,oBAAoB,CAAC;gBAEvD,IAAI,EAAE,oBAAoB,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;IAYnE,MAAM,CAAC,OAAO,EAAG,IAAI,CAAU;IAC/B,MAAM,CAAC,WAAW,SAAgB;IAClC,MAAM,CAAC,SAAS,EAAE,kBAAkB,EAAE,CAAM;IAE5C,MAAM,CAAC,MAAM;;;;;;MAMX;IAEF,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,oBAAoB,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,kBAAkB;IAa1F,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,kBAAkB,GAAG,MAAM;IAatD,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,kBAAkB,EAAE,IAAI,EAAE,OAAO,GAAG,kBAAkB;IAO3E,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,kBAAkB;IAIlD,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO;IAItC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,kBAAkB;CAI/C"}
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
import { IInstance } from './interfaces.js';
|
|
2
|
+
import { EntityInstance, RelationInstance, AttributeQueryData, DataDependencies } from './types.js';
|
|
3
|
+
export interface CountInstance extends IInstance {
|
|
4
|
+
record?: EntityInstance | RelationInstance;
|
|
5
|
+
property?: string;
|
|
6
|
+
direction?: string;
|
|
7
|
+
callback?: Function;
|
|
8
|
+
attributeQuery?: AttributeQueryData;
|
|
9
|
+
dataDeps?: DataDependencies;
|
|
10
|
+
}
|
|
11
|
+
export interface CountCreateArgs {
|
|
12
|
+
record?: EntityInstance | RelationInstance;
|
|
13
|
+
property?: string;
|
|
14
|
+
direction?: string;
|
|
15
|
+
callback?: Function;
|
|
16
|
+
attributeQuery?: AttributeQueryData;
|
|
17
|
+
dataDeps?: DataDependencies;
|
|
18
|
+
}
|
|
19
|
+
export declare class Count implements CountInstance {
|
|
20
|
+
uuid: string;
|
|
21
|
+
_type: string;
|
|
22
|
+
_options?: {
|
|
23
|
+
uuid?: string;
|
|
24
|
+
};
|
|
25
|
+
record?: EntityInstance | RelationInstance;
|
|
26
|
+
property?: string;
|
|
27
|
+
direction?: string;
|
|
28
|
+
callback?: Function;
|
|
29
|
+
attributeQuery?: AttributeQueryData;
|
|
30
|
+
dataDeps?: DataDependencies;
|
|
31
|
+
constructor(args: CountCreateArgs, options?: {
|
|
32
|
+
uuid?: string;
|
|
33
|
+
});
|
|
34
|
+
static isKlass: true;
|
|
35
|
+
static displayName: string;
|
|
36
|
+
static instances: CountInstance[];
|
|
37
|
+
static public: {
|
|
38
|
+
record: {
|
|
39
|
+
type: readonly ["Entity", "Relation"];
|
|
40
|
+
collection: false;
|
|
41
|
+
required: true;
|
|
42
|
+
};
|
|
43
|
+
direction: {
|
|
44
|
+
type: "string";
|
|
45
|
+
collection: false;
|
|
46
|
+
required: false;
|
|
47
|
+
};
|
|
48
|
+
callback: {
|
|
49
|
+
type: "function";
|
|
50
|
+
collection: false;
|
|
51
|
+
required: false;
|
|
52
|
+
};
|
|
53
|
+
attributeQuery: {
|
|
54
|
+
instanceType: {
|
|
55
|
+
[key: string]: unknown;
|
|
56
|
+
};
|
|
57
|
+
collection: false;
|
|
58
|
+
required: false;
|
|
59
|
+
};
|
|
60
|
+
dataDeps: {
|
|
61
|
+
instanceType: {
|
|
62
|
+
[key: string]: unknown;
|
|
63
|
+
};
|
|
64
|
+
collection: false;
|
|
65
|
+
required: false;
|
|
66
|
+
};
|
|
67
|
+
};
|
|
68
|
+
static create(args: CountCreateArgs, options?: {
|
|
69
|
+
uuid?: string;
|
|
70
|
+
}): CountInstance;
|
|
71
|
+
static stringify(instance: CountInstance): string;
|
|
72
|
+
static clone(instance: CountInstance, deep: boolean): CountInstance;
|
|
73
|
+
static is(obj: unknown): obj is CountInstance;
|
|
74
|
+
static check(data: unknown): boolean;
|
|
75
|
+
static parse(json: string): CountInstance;
|
|
76
|
+
}
|
|
77
|
+
//# sourceMappingURL=Count.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Count.d.ts","sourceRoot":"","sources":["../../src/shared/Count.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAgC,MAAM,iBAAiB,CAAC;AAE1E,OAAO,KAAK,EAAE,cAAc,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,MAAM,YAAY,CAAC;AAIzG,MAAM,WAAW,aAAc,SAAQ,SAAS;IAC9C,MAAM,CAAC,EAAE,cAAc,GAAG,gBAAgB,CAAC;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,cAAc,CAAC,EAAE,kBAAkB,CAAC;IACpC,QAAQ,CAAC,EAAE,gBAAgB,CAAC;CAC7B;AAED,MAAM,WAAW,eAAe;IAC9B,MAAM,CAAC,EAAE,cAAc,GAAG,gBAAgB,CAAC;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,cAAc,CAAC,EAAE,kBAAkB,CAAC;IACpC,QAAQ,CAAC,EAAE,gBAAgB,CAAC;CAC7B;AAED,qBAAa,KAAM,YAAW,aAAa;IAClC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,SAAW;IAChB,QAAQ,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC7B,MAAM,CAAC,EAAE,cAAc,GAAG,gBAAgB,CAAC;IAC3C,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB,cAAc,CAAC,EAAE,kBAAkB,CAAC;IACpC,QAAQ,CAAC,EAAE,gBAAgB,CAAC;gBAEvB,IAAI,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;IAY9D,MAAM,CAAC,OAAO,EAAG,IAAI,CAAU;IAC/B,MAAM,CAAC,WAAW,SAAW;IAC7B,MAAM,CAAC,SAAS,EAAE,aAAa,EAAE,CAAM;IAEvC,MAAM,CAAC,MAAM;;;;;;;;;;;;;;;;;0BAiBsB;gBAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;aAAC;;;;;0BAKxB;gBAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;aAAC;;;;MAIzD;IAEF,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,eAAe,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,aAAa;IAahF,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,aAAa,GAAG,MAAM;IAkBjD,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,aAAa,EAAE,IAAI,EAAE,OAAO,GAAG,aAAa;IAsBjE,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,aAAa;IAI7C,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO;IAItC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,aAAa;CAW1C"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { IInstance } from './interfaces.js';
|
|
2
|
+
import { DataDep } from './Computation.js';
|
|
3
|
+
export interface CustomInstance extends IInstance {
|
|
4
|
+
name: string;
|
|
5
|
+
dataDeps?: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
};
|
|
8
|
+
compute?: Function;
|
|
9
|
+
incrementalCompute?: Function;
|
|
10
|
+
incrementalPatchCompute?: Function;
|
|
11
|
+
createState?: Function;
|
|
12
|
+
getDefaultValue?: Function;
|
|
13
|
+
asyncReturn?: Function;
|
|
14
|
+
useLastValue?: boolean;
|
|
15
|
+
}
|
|
16
|
+
export interface CustomCreateArgs {
|
|
17
|
+
name: string;
|
|
18
|
+
dataDeps?: {
|
|
19
|
+
[key: string]: DataDep;
|
|
20
|
+
};
|
|
21
|
+
compute?: Function;
|
|
22
|
+
incrementalCompute?: Function;
|
|
23
|
+
incrementalPatchCompute?: Function;
|
|
24
|
+
createState?: Function;
|
|
25
|
+
getDefaultValue?: Function;
|
|
26
|
+
asyncReturn?: Function;
|
|
27
|
+
useLastValue?: boolean;
|
|
28
|
+
}
|
|
29
|
+
export declare class Custom implements CustomInstance {
|
|
30
|
+
uuid: string;
|
|
31
|
+
_type: string;
|
|
32
|
+
_options?: {
|
|
33
|
+
uuid?: string;
|
|
34
|
+
};
|
|
35
|
+
name: string;
|
|
36
|
+
dataDeps?: {
|
|
37
|
+
[key: string]: any;
|
|
38
|
+
};
|
|
39
|
+
compute?: Function;
|
|
40
|
+
incrementalCompute?: Function;
|
|
41
|
+
incrementalPatchCompute?: Function;
|
|
42
|
+
createState?: Function;
|
|
43
|
+
getDefaultValue?: Function;
|
|
44
|
+
asyncReturn?: Function;
|
|
45
|
+
useLastValue?: boolean;
|
|
46
|
+
constructor(args: CustomCreateArgs, options?: {
|
|
47
|
+
uuid?: string;
|
|
48
|
+
});
|
|
49
|
+
static isKlass: true;
|
|
50
|
+
static displayName: string;
|
|
51
|
+
static instances: CustomInstance[];
|
|
52
|
+
static public: {
|
|
53
|
+
name: {
|
|
54
|
+
type: "string";
|
|
55
|
+
collection: false;
|
|
56
|
+
required: true;
|
|
57
|
+
};
|
|
58
|
+
dataDeps: {
|
|
59
|
+
type: "object";
|
|
60
|
+
collection: false;
|
|
61
|
+
required: false;
|
|
62
|
+
};
|
|
63
|
+
compute: {
|
|
64
|
+
type: "function";
|
|
65
|
+
collection: false;
|
|
66
|
+
required: false;
|
|
67
|
+
};
|
|
68
|
+
incrementalCompute: {
|
|
69
|
+
type: "function";
|
|
70
|
+
collection: false;
|
|
71
|
+
required: false;
|
|
72
|
+
};
|
|
73
|
+
incrementalPatchCompute: {
|
|
74
|
+
type: "function";
|
|
75
|
+
collection: false;
|
|
76
|
+
required: false;
|
|
77
|
+
};
|
|
78
|
+
createState: {
|
|
79
|
+
type: "function";
|
|
80
|
+
collection: false;
|
|
81
|
+
required: false;
|
|
82
|
+
};
|
|
83
|
+
getDefaultValue: {
|
|
84
|
+
type: "function";
|
|
85
|
+
collection: false;
|
|
86
|
+
required: false;
|
|
87
|
+
};
|
|
88
|
+
asyncReturn: {
|
|
89
|
+
type: "function";
|
|
90
|
+
collection: false;
|
|
91
|
+
required: false;
|
|
92
|
+
};
|
|
93
|
+
useLastValue: {
|
|
94
|
+
type: "boolean";
|
|
95
|
+
collection: false;
|
|
96
|
+
required: false;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
static create(args: CustomCreateArgs, options?: {
|
|
100
|
+
uuid?: string;
|
|
101
|
+
}): CustomInstance;
|
|
102
|
+
static stringify(instance: CustomInstance): string;
|
|
103
|
+
static clone(instance: CustomInstance, deep: boolean): CustomInstance;
|
|
104
|
+
static is(obj: unknown): obj is CustomInstance;
|
|
105
|
+
static check(data: unknown): boolean;
|
|
106
|
+
static parse(json: string): CustomInstance;
|
|
107
|
+
}
|
|
108
|
+
//# sourceMappingURL=Custom.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Custom.d.ts","sourceRoot":"","sources":["../../src/shared/Custom.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAgC,MAAM,iBAAiB,CAAC;AAE1E,OAAO,EAAE,OAAO,EAAE,MAAM,kBAAkB,CAAC;AAE3C,MAAM,WAAW,cAAe,SAAQ,SAAS;IAC/C,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IAClC,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,kBAAkB,CAAC,EAAE,QAAQ,CAAC;IAC9B,uBAAuB,CAAC,EAAE,QAAQ,CAAC;IACnC,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,eAAe,CAAC,EAAE,QAAQ,CAAC;IAC3B,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,MAAM,WAAW,gBAAgB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IACtC,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,kBAAkB,CAAC,EAAE,QAAQ,CAAC;IAC9B,uBAAuB,CAAC,EAAE,QAAQ,CAAC;IACnC,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,eAAe,CAAC,EAAE,QAAQ,CAAC;IAC3B,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,qBAAa,MAAO,YAAW,cAAc;IACpC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,SAAY;IACjB,QAAQ,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;KAAE,CAAC;IAClC,OAAO,CAAC,EAAE,QAAQ,CAAC;IACnB,kBAAkB,CAAC,EAAE,QAAQ,CAAC;IAC9B,uBAAuB,CAAC,EAAE,QAAQ,CAAC;IACnC,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,eAAe,CAAC,EAAE,QAAQ,CAAC;IAC3B,WAAW,CAAC,EAAE,QAAQ,CAAC;IACvB,YAAY,CAAC,EAAE,OAAO,CAAC;gBAElB,IAAI,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE;IAe/D,MAAM,CAAC,OAAO,EAAG,IAAI,CAAU;IAC/B,MAAM,CAAC,WAAW,SAAY;IAC9B,MAAM,CAAC,SAAS,EAAE,cAAc,EAAE,CAAM;IAExC,MAAM,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MA8CX;IAEF,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,cAAc;IAalF,MAAM,CAAC,SAAS,CAAC,QAAQ,EAAE,cAAc,GAAG,MAAM;IAsBlD,MAAM,CAAC,KAAK,CAAC,QAAQ,EAAE,cAAc,EAAE,IAAI,EAAE,OAAO,GAAG,cAAc;IAcrE,MAAM,CAAC,EAAE,CAAC,GAAG,EAAE,OAAO,GAAG,GAAG,IAAI,cAAc;IAI9C,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,OAAO,GAAG,OAAO;IAIpC,MAAM,CAAC,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc;CAc3C"}
|