@elyx-code/project-logic-tree 0.0.6047 → 0.0.6048

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 (26) hide show
  1. package/dist/definitions/built-in-base-entities/ids.d.ts +67 -1
  2. package/dist/definitions/built-in-base-entities/operations/http-request/http-request.d.ts +13 -13
  3. package/dist/definitions/built-in-base-entities/operations/number/index.d.ts +1 -0
  4. package/dist/definitions/built-in-base-entities/operations/number/number-addition.d.ts +2 -8
  5. package/dist/definitions/built-in-base-entities/operations/number/number-subtraction.d.ts +19 -0
  6. package/dist/definitions/built-in-base-entities/operations/string/index.d.ts +1 -0
  7. package/dist/definitions/built-in-base-entities/operations/string/join-string.d.ts +0 -8
  8. package/dist/definitions/built-in-base-entities/operations/string/split-string.d.ts +21 -0
  9. package/dist/definitions/types/operation.d.ts +2 -2
  10. package/dist/index.js +9874 -9371
  11. package/dist/index.umd.cjs +165 -165
  12. package/dist/tree/built-in/operations/custom-entity/create-new.d.ts +5 -0
  13. package/dist/tree/built-in/operations/custom-entity/index.d.ts +2 -0
  14. package/dist/tree/built-in/operations/custom-entity/validate-data.d.ts +5 -0
  15. package/dist/tree/built-in/operations/http-request/http-request.d.ts +5 -0
  16. package/dist/tree/built-in/operations/http-request/index.d.ts +1 -0
  17. package/dist/tree/built-in/operations/list/append.d.ts +5 -0
  18. package/dist/tree/built-in/operations/list/get-last.d.ts +5 -0
  19. package/dist/tree/built-in/operations/list/index.d.ts +4 -0
  20. package/dist/tree/built-in/operations/list/join-lists.d.ts +5 -0
  21. package/dist/tree/built-in/operations/list/split-list.d.ts +5 -0
  22. package/dist/tree/built-in/operations/number/index.d.ts +1 -0
  23. package/dist/tree/built-in/operations/number/number-addition.d.ts +5 -0
  24. package/dist/tree/built-in/operations/string/index.d.ts +1 -0
  25. package/dist/tree/built-in/operations/string/join-string.d.ts +5 -0
  26. package/package.json +1 -1
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class CreateNewInstanceOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1,2 @@
1
+ export * from './create-new';
2
+ export * from './validate-data';
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class ValidateDataOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class HttpRequestOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1 @@
1
+ export * from './http-request';
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class AppendToListOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class GetLastInListOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1,4 @@
1
+ export * from './join-lists';
2
+ export * from './split-list';
3
+ export * from './get-last';
4
+ export * from './append';
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class JoinListOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class SplitListOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1 @@
1
+ export * from './number-addition';
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class NumberAdditionOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
@@ -0,0 +1 @@
1
+ export * from './join-string';
@@ -0,0 +1,5 @@
1
+ import { ActionDescriptorState, ProjectState } from '../../../state';
2
+
3
+ export declare class JoinStringOperation extends ActionDescriptorState {
4
+ constructor(parentProjectState: ProjectState);
5
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elyx-code/project-logic-tree",
3
- "version": "0.0.6047",
3
+ "version": "0.0.6048",
4
4
  "author": "Sergio Herrero",
5
5
  "license": "UNLICENSED",
6
6
  "description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",