@elyx-code/project-logic-tree 0.0.6048 → 0.0.6049
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/definitions/built-in-base-entities/ids.d.ts +12 -6
- package/dist/definitions/built-in-base-entities/loops/counted/body.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/loops/counted/loop.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/list/body.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/loops/list/loop.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/manual-flow/body.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/loops/manual-flow/loop.d.ts +3 -1
- package/dist/definitions/built-in-base-entities/loops/object-keys-loop/body.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/loops/object-keys-loop/loop.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/object-values-loop/body.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/loops/object-values-loop/loop.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/loops/string/body.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/loops/string/loop.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/operations/function-execution/parallel.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/operations/function-execution/sequential.d.ts +2 -0
- package/dist/definitions/built-in-base-entities/operations/number/number-addition.d.ts +2 -1
- package/dist/definitions/built-in-base-entities/operations/number/number-subtraction.d.ts +3 -2
- package/dist/definitions/built-in-base-entities/operations/string/index.d.ts +1 -1
- package/dist/definitions/built-in-base-entities/operations/string/join-strings.d.ts +27 -0
- package/dist/definitions/mock/default-mock/functions/concurrency-and-waits/function-list-variable.d.ts +5 -1
- package/dist/definitions/types/action-descriptor.d.ts +70 -0
- package/dist/definitions/types/data-type.d.ts +4 -6
- package/dist/definitions/types/function.d.ts +2 -83
- package/dist/definitions/types/index.d.ts +4 -2
- package/dist/index.js +11934 -11668
- package/dist/index.umd.cjs +221 -223
- package/dist/tree/built-in/operations/function-execution/parallel.d.ts +3 -5
- package/dist/tree/built-in/operations/function-execution/sequential.d.ts +3 -5
- package/dist/tree/built-in/operations/function-execution/wait.d.ts +3 -5
- package/dist/tree/built-in/operations/string/index.d.ts +1 -1
- package/dist/tree/built-in/operations/string/{join-string.d.ts → join-strings.d.ts} +1 -1
- package/dist/tree/state/action-descriptor/action-descriptor.d.ts +5 -15
- package/dist/tree/state/action-descriptor/validation/validation-schema.d.ts +13 -90
- package/dist/tree/state/data-type/data-type.d.ts +3 -3
- package/dist/tree/state/data-type/validation/validation-schema.d.ts +0 -50
- package/dist/tree/state/global-event/validation/validation-schema.d.ts +20 -116
- package/dist/tree/utils/data-type.d.ts +1 -2
- package/package.json +1 -1
- package/dist/definitions/built-in-base-entities/operations/string/join-string.d.ts +0 -17
|
@@ -100,39 +100,23 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
100
100
|
type: z.ZodLiteral<EntityType.ActionDescriptor>;
|
|
101
101
|
name: z.ZodString;
|
|
102
102
|
description: z.ZodNullable<z.ZodString>;
|
|
103
|
-
argumentsType: z.ZodEnum<[import("@src/definitions").ActionDescriptorValuesType.Dynamic, import("@src/definitions").ActionDescriptorValuesType.Fixed, import("@src/definitions").ActionDescriptorValuesType.None]>;
|
|
104
|
-
returnsType: z.ZodEnum<[import("@src/definitions").ActionDescriptorValuesType.Dynamic, import("@src/definitions").ActionDescriptorValuesType.Fixed, import("@src/definitions").ActionDescriptorValuesType.None]>;
|
|
105
103
|
}, {
|
|
106
104
|
version: z.ZodNumber;
|
|
107
105
|
}>, {
|
|
108
|
-
|
|
106
|
+
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
109
107
|
type: z.ZodLiteral<EntityType.ValueDescriptor>;
|
|
110
108
|
}, "strip", z.ZodTypeAny, {
|
|
111
109
|
type: EntityType.ValueDescriptor;
|
|
112
110
|
}, {
|
|
113
111
|
type: EntityType.ValueDescriptor;
|
|
114
112
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
|
115
|
-
|
|
113
|
+
outputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
116
114
|
type: z.ZodLiteral<EntityType.ValueDescriptor>;
|
|
117
115
|
}, "strip", z.ZodTypeAny, {
|
|
118
116
|
type: EntityType.ValueDescriptor;
|
|
119
117
|
}, {
|
|
120
118
|
type: EntityType.ValueDescriptor;
|
|
121
119
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
|
122
|
-
dynamicArgumentTypes: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
123
|
-
type: z.ZodLiteral<EntityType.DataType>;
|
|
124
|
-
}, "strip", z.ZodTypeAny, {
|
|
125
|
-
type: EntityType.DataType;
|
|
126
|
-
}, {
|
|
127
|
-
type: EntityType.DataType;
|
|
128
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
129
|
-
dynamicReturnTypes: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
130
|
-
type: z.ZodLiteral<EntityType.DataType>;
|
|
131
|
-
}, "strip", z.ZodTypeAny, {
|
|
132
|
-
type: EntityType.DataType;
|
|
133
|
-
}, {
|
|
134
|
-
type: EntityType.DataType;
|
|
135
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
136
120
|
parent: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
137
121
|
entityType: z.ZodLiteral<EntityType.Project>;
|
|
138
122
|
entityId: z.ZodString;
|
|
@@ -221,20 +205,12 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
221
205
|
entityId: string;
|
|
222
206
|
} | null;
|
|
223
207
|
version: number;
|
|
224
|
-
|
|
225
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
226
|
-
fixedArguments: ({
|
|
208
|
+
inputs: ({
|
|
227
209
|
type: EntityType.ValueDescriptor;
|
|
228
210
|
} | Record<string, any>)[];
|
|
229
|
-
|
|
211
|
+
outputs: ({
|
|
230
212
|
type: EntityType.ValueDescriptor;
|
|
231
213
|
} | Record<string, any>)[];
|
|
232
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
233
|
-
type: EntityType.DataType;
|
|
234
|
-
} | null;
|
|
235
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
236
|
-
type: EntityType.DataType;
|
|
237
|
-
} | null;
|
|
238
214
|
}, {
|
|
239
215
|
id: string;
|
|
240
216
|
type: EntityType.ActionDescriptor;
|
|
@@ -262,20 +238,12 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
262
238
|
entityId: string;
|
|
263
239
|
} | null;
|
|
264
240
|
version: number;
|
|
265
|
-
|
|
266
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
267
|
-
fixedArguments: ({
|
|
241
|
+
inputs: ({
|
|
268
242
|
type: EntityType.ValueDescriptor;
|
|
269
243
|
} | Record<string, any>)[];
|
|
270
|
-
|
|
244
|
+
outputs: ({
|
|
271
245
|
type: EntityType.ValueDescriptor;
|
|
272
246
|
} | Record<string, any>)[];
|
|
273
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
274
|
-
type: EntityType.DataType;
|
|
275
|
-
} | null;
|
|
276
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
277
|
-
type: EntityType.DataType;
|
|
278
|
-
} | null;
|
|
279
247
|
}>, "many">;
|
|
280
248
|
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
281
249
|
type: z.ZodLiteral<EntityType.ArgumentDeclaration>;
|
|
@@ -512,20 +480,12 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
512
480
|
entityId: string;
|
|
513
481
|
} | null;
|
|
514
482
|
version: number;
|
|
515
|
-
|
|
516
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
517
|
-
fixedArguments: ({
|
|
483
|
+
inputs: ({
|
|
518
484
|
type: EntityType.ValueDescriptor;
|
|
519
485
|
} | Record<string, any>)[];
|
|
520
|
-
|
|
486
|
+
outputs: ({
|
|
521
487
|
type: EntityType.ValueDescriptor;
|
|
522
488
|
} | Record<string, any>)[];
|
|
523
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
524
|
-
type: EntityType.DataType;
|
|
525
|
-
} | null;
|
|
526
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
527
|
-
type: EntityType.DataType;
|
|
528
|
-
} | null;
|
|
529
489
|
}[];
|
|
530
490
|
parent: {
|
|
531
491
|
id: string;
|
|
@@ -632,20 +592,12 @@ export declare function getGlobalEventNestedEntitiesSchema(): z.ZodObject<z.obje
|
|
|
632
592
|
entityId: string;
|
|
633
593
|
} | null;
|
|
634
594
|
version: number;
|
|
635
|
-
|
|
636
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
637
|
-
fixedArguments: ({
|
|
595
|
+
inputs: ({
|
|
638
596
|
type: EntityType.ValueDescriptor;
|
|
639
597
|
} | Record<string, any>)[];
|
|
640
|
-
|
|
598
|
+
outputs: ({
|
|
641
599
|
type: EntityType.ValueDescriptor;
|
|
642
600
|
} | Record<string, any>)[];
|
|
643
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
644
|
-
type: EntityType.DataType;
|
|
645
|
-
} | null;
|
|
646
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
647
|
-
type: EntityType.DataType;
|
|
648
|
-
} | null;
|
|
649
601
|
}[];
|
|
650
602
|
parent: {
|
|
651
603
|
id: string;
|
|
@@ -749,39 +701,23 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
749
701
|
type: z.ZodLiteral<EntityType.ActionDescriptor>;
|
|
750
702
|
name: z.ZodString;
|
|
751
703
|
description: z.ZodNullable<z.ZodString>;
|
|
752
|
-
argumentsType: z.ZodEnum<[import("@src/definitions").ActionDescriptorValuesType.Dynamic, import("@src/definitions").ActionDescriptorValuesType.Fixed, import("@src/definitions").ActionDescriptorValuesType.None]>;
|
|
753
|
-
returnsType: z.ZodEnum<[import("@src/definitions").ActionDescriptorValuesType.Dynamic, import("@src/definitions").ActionDescriptorValuesType.Fixed, import("@src/definitions").ActionDescriptorValuesType.None]>;
|
|
754
704
|
}, {
|
|
755
705
|
version: z.ZodNumber;
|
|
756
706
|
}>, {
|
|
757
|
-
|
|
707
|
+
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
758
708
|
type: z.ZodLiteral<EntityType.ValueDescriptor>;
|
|
759
709
|
}, "strip", z.ZodTypeAny, {
|
|
760
710
|
type: EntityType.ValueDescriptor;
|
|
761
711
|
}, {
|
|
762
712
|
type: EntityType.ValueDescriptor;
|
|
763
713
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
|
764
|
-
|
|
714
|
+
outputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
765
715
|
type: z.ZodLiteral<EntityType.ValueDescriptor>;
|
|
766
716
|
}, "strip", z.ZodTypeAny, {
|
|
767
717
|
type: EntityType.ValueDescriptor;
|
|
768
718
|
}, {
|
|
769
719
|
type: EntityType.ValueDescriptor;
|
|
770
720
|
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>, "many">;
|
|
771
|
-
dynamicArgumentTypes: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
772
|
-
type: z.ZodLiteral<EntityType.DataType>;
|
|
773
|
-
}, "strip", z.ZodTypeAny, {
|
|
774
|
-
type: EntityType.DataType;
|
|
775
|
-
}, {
|
|
776
|
-
type: EntityType.DataType;
|
|
777
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
778
|
-
dynamicReturnTypes: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
779
|
-
type: z.ZodLiteral<EntityType.DataType>;
|
|
780
|
-
}, "strip", z.ZodTypeAny, {
|
|
781
|
-
type: EntityType.DataType;
|
|
782
|
-
}, {
|
|
783
|
-
type: EntityType.DataType;
|
|
784
|
-
}>, z.ZodRecord<z.ZodString, z.ZodAny>]>>;
|
|
785
721
|
parent: z.ZodNullable<z.ZodUnion<[z.ZodObject<{
|
|
786
722
|
entityType: z.ZodLiteral<EntityType.Project>;
|
|
787
723
|
entityId: z.ZodString;
|
|
@@ -870,20 +806,12 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
870
806
|
entityId: string;
|
|
871
807
|
} | null;
|
|
872
808
|
version: number;
|
|
873
|
-
|
|
874
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
875
|
-
fixedArguments: ({
|
|
809
|
+
inputs: ({
|
|
876
810
|
type: EntityType.ValueDescriptor;
|
|
877
811
|
} | Record<string, any>)[];
|
|
878
|
-
|
|
812
|
+
outputs: ({
|
|
879
813
|
type: EntityType.ValueDescriptor;
|
|
880
814
|
} | Record<string, any>)[];
|
|
881
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
882
|
-
type: EntityType.DataType;
|
|
883
|
-
} | null;
|
|
884
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
885
|
-
type: EntityType.DataType;
|
|
886
|
-
} | null;
|
|
887
815
|
}, {
|
|
888
816
|
id: string;
|
|
889
817
|
type: EntityType.ActionDescriptor;
|
|
@@ -911,20 +839,12 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
911
839
|
entityId: string;
|
|
912
840
|
} | null;
|
|
913
841
|
version: number;
|
|
914
|
-
|
|
915
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
916
|
-
fixedArguments: ({
|
|
842
|
+
inputs: ({
|
|
917
843
|
type: EntityType.ValueDescriptor;
|
|
918
844
|
} | Record<string, any>)[];
|
|
919
|
-
|
|
845
|
+
outputs: ({
|
|
920
846
|
type: EntityType.ValueDescriptor;
|
|
921
847
|
} | Record<string, any>)[];
|
|
922
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
923
|
-
type: EntityType.DataType;
|
|
924
|
-
} | null;
|
|
925
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
926
|
-
type: EntityType.DataType;
|
|
927
|
-
} | null;
|
|
928
848
|
}>, "many">;
|
|
929
849
|
inputs: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
930
850
|
type: z.ZodLiteral<EntityType.ArgumentDeclaration>;
|
|
@@ -1161,20 +1081,12 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1161
1081
|
entityId: string;
|
|
1162
1082
|
} | null;
|
|
1163
1083
|
version: number;
|
|
1164
|
-
|
|
1165
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
1166
|
-
fixedArguments: ({
|
|
1084
|
+
inputs: ({
|
|
1167
1085
|
type: EntityType.ValueDescriptor;
|
|
1168
1086
|
} | Record<string, any>)[];
|
|
1169
|
-
|
|
1087
|
+
outputs: ({
|
|
1170
1088
|
type: EntityType.ValueDescriptor;
|
|
1171
1089
|
} | Record<string, any>)[];
|
|
1172
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
1173
|
-
type: EntityType.DataType;
|
|
1174
|
-
} | null;
|
|
1175
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
1176
|
-
type: EntityType.DataType;
|
|
1177
|
-
} | null;
|
|
1178
1090
|
}[];
|
|
1179
1091
|
parent: {
|
|
1180
1092
|
id: string;
|
|
@@ -1284,20 +1196,12 @@ export declare function getGlobalEventSchema(): z.ZodObject<z.objectUtil.extendS
|
|
|
1284
1196
|
entityId: string;
|
|
1285
1197
|
} | null;
|
|
1286
1198
|
version: number;
|
|
1287
|
-
|
|
1288
|
-
returnsType: import("@src/definitions").ActionDescriptorValuesType.Fixed | import("@src/definitions").ActionDescriptorValuesType.None | import("@src/definitions").ActionDescriptorValuesType.Dynamic;
|
|
1289
|
-
fixedArguments: ({
|
|
1199
|
+
inputs: ({
|
|
1290
1200
|
type: EntityType.ValueDescriptor;
|
|
1291
1201
|
} | Record<string, any>)[];
|
|
1292
|
-
|
|
1202
|
+
outputs: ({
|
|
1293
1203
|
type: EntityType.ValueDescriptor;
|
|
1294
1204
|
} | Record<string, any>)[];
|
|
1295
|
-
dynamicArgumentTypes: Record<string, any> | {
|
|
1296
|
-
type: EntityType.DataType;
|
|
1297
|
-
} | null;
|
|
1298
|
-
dynamicReturnTypes: Record<string, any> | {
|
|
1299
|
-
type: EntityType.DataType;
|
|
1300
|
-
} | null;
|
|
1301
1205
|
}[];
|
|
1302
1206
|
parent: {
|
|
1303
1207
|
id: string;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { ArgumentDeclarationState, CustomEntityState, DataTypeState, EntityWithValueState, InputMapState, OutputMapState, PropertyState, ReturnDeclarationState, VariableDeclarationState, VariableInstanceState } from '../state';
|
|
2
|
-
import { ActionDescriptorState } from '../state/action-descriptor';
|
|
3
2
|
import { ValueDescriptorState } from '../state/value-descriptor';
|
|
4
3
|
|
|
5
4
|
export declare function checkArePropertiesCompatibleAsDataType(sourceProperty: PropertyState, targetProperty: PropertyState): boolean;
|
|
@@ -41,7 +40,7 @@ export interface IDataTypeIncompatibile extends IDataTypeCompatibility {
|
|
|
41
40
|
type: DataTypeCompatibilityTypes.AIsListBIsNot | DataTypeCompatibilityTypes.BIsListAIsNot | DataTypeCompatibilityTypes.AIsNullableBIsNot | DataTypeCompatibilityTypes.BIsNullableAIsNot | DataTypeCompatibilityTypes.AIsTemplateBIsNot | DataTypeCompatibilityTypes.BIsTemplateAIsNot | DataTypeCompatibilityTypes.TypeEntityMismatch | DataTypeCompatibilityTypes.IncompatibleCustomEntities | DataTypeCompatibilityTypes.IncompatiblePrimitiveEntities | DataTypeCompatibilityTypes.IncompatibleBuiltInBaseEntities | DataTypeCompatibilityTypes.CheckUnknown;
|
|
42
41
|
}
|
|
43
42
|
export declare function checkAreDataTypesCompatible(dataTypeA: DataTypeState | null, dataTypeB: DataTypeState | null): IDataTypeCompatible | IDataTypeIncompatibile;
|
|
44
|
-
export declare function generateExecutionDataType(entity: PropertyState | ArgumentDeclarationState | ReturnDeclarationState | VariableDeclarationState |
|
|
43
|
+
export declare function generateExecutionDataType(entity: PropertyState | ArgumentDeclarationState | ReturnDeclarationState | VariableDeclarationState | ValueDescriptorState | DataTypeState): DataTypeState;
|
|
45
44
|
export declare function inferArgumentDeclarationDataType(entity: ArgumentDeclarationState): DataTypeState | null;
|
|
46
45
|
export declare function inferInputMapDataType(entity: InputMapState): DataTypeState | null;
|
|
47
46
|
export declare function inferReturnDeclarationDataType(entity: ReturnDeclarationState): DataTypeState | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6049",
|
|
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",
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { IValueDescriptorReference, IValueDescriptorTransfer, IDataTypeTransfer, IActionDescriptorReference, IActionDescriptorTransfer } from '../../..';
|
|
2
|
-
|
|
3
|
-
export declare const joinStringOperationFirstStringArgumentRef: IValueDescriptorReference;
|
|
4
|
-
export declare const joinStringOperationFirstStringDataType: IDataTypeTransfer;
|
|
5
|
-
export declare const joinStringOperationSecondStringArgumentRef: IValueDescriptorReference;
|
|
6
|
-
export declare const joinStringOperationSecondStringDataType: IDataTypeTransfer;
|
|
7
|
-
export declare const joinStringOperationResultStringReturnRef: IValueDescriptorReference;
|
|
8
|
-
export declare const joinStringOperationResultStringDataType: IDataTypeTransfer;
|
|
9
|
-
export declare const joinStringOperationFirstStringArgumentParentRef: IActionDescriptorReference;
|
|
10
|
-
export declare const joinStringOperationFirstStringArgument: IValueDescriptorTransfer;
|
|
11
|
-
export declare const joinStringOperationSecondStringArgumentParentRef: IActionDescriptorReference;
|
|
12
|
-
export declare const joinStringOperationSecondStringArgument: IValueDescriptorTransfer;
|
|
13
|
-
export declare const joinStringOperationResultStringReturnParentRef: IActionDescriptorReference;
|
|
14
|
-
export declare const joinStringOperationResultStringReturn: IValueDescriptorTransfer;
|
|
15
|
-
export declare const joinStringOperationErrorParentRef: IActionDescriptorReference;
|
|
16
|
-
export declare const joinStringOperationError: IValueDescriptorTransfer;
|
|
17
|
-
export declare const joinStringOperation: IActionDescriptorTransfer;
|