@elyx-code/project-logic-tree 0.0.6474 → 0.0.6475
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 +81 -41
- package/dist/index.js +19081 -19018
- package/dist/index.umd.cjs +139 -139
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -284,11 +284,6 @@ export declare const appendToListOperationError: IValueDescriptorTransfer;
|
|
|
284
284
|
|
|
285
285
|
export declare const appendToListOperationErrorParentRef: IActionDescriptorReference;
|
|
286
286
|
|
|
287
|
-
export declare enum AppendToListOperationInputIds {
|
|
288
|
-
List = "append-to-list-lsit-argument-declaration",
|
|
289
|
-
ElementToAppend = "append-to-list-element-to-append-argument-declaration"
|
|
290
|
-
}
|
|
291
|
-
|
|
292
287
|
export declare const appendToListOperationListArgument: IValueDescriptorTransfer;
|
|
293
288
|
|
|
294
289
|
export declare const appendToListOperationListArgumentParentRef: IActionDescriptorReference;
|
|
@@ -297,11 +292,6 @@ export declare const appendToListOperationListArgumentRef: IValueDescriptorRefer
|
|
|
297
292
|
|
|
298
293
|
export declare const appendToListOperationListDataType: IDataTypeTransfer;
|
|
299
294
|
|
|
300
|
-
export declare enum AppendToListOperationOutputIds {
|
|
301
|
-
ResultList = "append-to-list-result-list-return-delaration",
|
|
302
|
-
Error = "append-to-list-error-return-delaration"
|
|
303
|
-
}
|
|
304
|
-
|
|
305
295
|
export declare const appendToListOperationResultListDataType: IDataTypeTransfer;
|
|
306
296
|
|
|
307
297
|
export declare const appendToListOperationResultListReturn: IValueDescriptorTransfer;
|
|
@@ -1256,6 +1246,85 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1256
1246
|
};
|
|
1257
1247
|
};
|
|
1258
1248
|
};
|
|
1249
|
+
"list-append": {
|
|
1250
|
+
id: ListOperations;
|
|
1251
|
+
inputs: {
|
|
1252
|
+
list: {
|
|
1253
|
+
id: string;
|
|
1254
|
+
};
|
|
1255
|
+
elementToAppend: {
|
|
1256
|
+
id: string;
|
|
1257
|
+
};
|
|
1258
|
+
};
|
|
1259
|
+
outputs: {
|
|
1260
|
+
error: {
|
|
1261
|
+
id: string;
|
|
1262
|
+
};
|
|
1263
|
+
result: {
|
|
1264
|
+
id: string;
|
|
1265
|
+
};
|
|
1266
|
+
};
|
|
1267
|
+
};
|
|
1268
|
+
"list-get-last": {
|
|
1269
|
+
id: ListOperations;
|
|
1270
|
+
inputs: {
|
|
1271
|
+
list: {
|
|
1272
|
+
id: string;
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1275
|
+
outputs: {
|
|
1276
|
+
error: {
|
|
1277
|
+
id: string;
|
|
1278
|
+
};
|
|
1279
|
+
result: {
|
|
1280
|
+
id: string;
|
|
1281
|
+
};
|
|
1282
|
+
};
|
|
1283
|
+
};
|
|
1284
|
+
"list-join": {
|
|
1285
|
+
id: ListOperations;
|
|
1286
|
+
inputs: {
|
|
1287
|
+
firstList: {
|
|
1288
|
+
id: string;
|
|
1289
|
+
};
|
|
1290
|
+
secondList: {
|
|
1291
|
+
id: string;
|
|
1292
|
+
};
|
|
1293
|
+
separator: {
|
|
1294
|
+
id: string;
|
|
1295
|
+
};
|
|
1296
|
+
};
|
|
1297
|
+
outputs: {
|
|
1298
|
+
result: {
|
|
1299
|
+
id: string;
|
|
1300
|
+
};
|
|
1301
|
+
error: {
|
|
1302
|
+
id: string;
|
|
1303
|
+
};
|
|
1304
|
+
};
|
|
1305
|
+
};
|
|
1306
|
+
"list-split": {
|
|
1307
|
+
id: ListOperations;
|
|
1308
|
+
inputs: {
|
|
1309
|
+
list: {
|
|
1310
|
+
id: string;
|
|
1311
|
+
};
|
|
1312
|
+
index: {
|
|
1313
|
+
id: string;
|
|
1314
|
+
};
|
|
1315
|
+
};
|
|
1316
|
+
outputs: {
|
|
1317
|
+
firstPart: {
|
|
1318
|
+
id: string;
|
|
1319
|
+
};
|
|
1320
|
+
secondPart: {
|
|
1321
|
+
id: string;
|
|
1322
|
+
};
|
|
1323
|
+
error: {
|
|
1324
|
+
id: string;
|
|
1325
|
+
};
|
|
1326
|
+
};
|
|
1327
|
+
};
|
|
1259
1328
|
};
|
|
1260
1329
|
loop: {
|
|
1261
1330
|
"list-loop": {
|
|
@@ -3873,7 +3942,8 @@ export declare enum ExecutionState {
|
|
|
3873
3942
|
|
|
3874
3943
|
export declare enum ExecutionTerminationType {
|
|
3875
3944
|
Success = "success",
|
|
3876
|
-
|
|
3945
|
+
CaughtError = "caught-error",
|
|
3946
|
+
UnhandledError = "unhandled-error",
|
|
3877
3947
|
Break = "break",
|
|
3878
3948
|
Continue = "continue",
|
|
3879
3949
|
Return = "return"
|
|
@@ -7839,10 +7909,6 @@ export declare const getLastInListOperationError: IValueDescriptorTransfer;
|
|
|
7839
7909
|
|
|
7840
7910
|
export declare const getLastInListOperationErrorParentRef: IActionDescriptorReference;
|
|
7841
7911
|
|
|
7842
|
-
export declare enum GetLastInListOperationInputIds {
|
|
7843
|
-
InputList = "get-last-in-list-input-list-argument-declaration"
|
|
7844
|
-
}
|
|
7845
|
-
|
|
7846
7912
|
export declare const getLastInListOperationInputListArgument: IValueDescriptorTransfer;
|
|
7847
7913
|
|
|
7848
7914
|
export declare const getLastInListOperationInputListArgumentParentRef: IActionDescriptorReference;
|
|
@@ -7859,11 +7925,6 @@ export declare const getLastInListOperationOutputElementReturnParentRef: IAction
|
|
|
7859
7925
|
|
|
7860
7926
|
export declare const getLastInListOperationOutputElementReturnRef: IValueDescriptorReference;
|
|
7861
7927
|
|
|
7862
|
-
export declare enum GetLastInListOperationOutputIds {
|
|
7863
|
-
OutputElement = "get-last-in-list-output-element-return-delaration",
|
|
7864
|
-
Error = "get-last-in-list-error-return-delaration"
|
|
7865
|
-
}
|
|
7866
|
-
|
|
7867
7928
|
declare function getLimitClauseFromSelectStatement(selectStatement: SelectStmt): LimitClause | null;
|
|
7868
7929
|
|
|
7869
7930
|
export declare function getLinkedEntitiesFromArgumentDeclaration(argumentDeclaration: ArgumentDeclarationState): ValueReadingEntityState[];
|
|
@@ -12078,16 +12139,6 @@ export declare const joinListOperationFirstListArgumentRef: IValueDescriptorRefe
|
|
|
12078
12139
|
|
|
12079
12140
|
export declare const joinListOperationFirstListDataType: IDataTypeTransfer;
|
|
12080
12141
|
|
|
12081
|
-
export declare enum JoinListOperationInputIds {
|
|
12082
|
-
FirstInputList = "join-list-first-list-argument-declaration",
|
|
12083
|
-
SecondInputList = "join-list-second-list-argument-declaration"
|
|
12084
|
-
}
|
|
12085
|
-
|
|
12086
|
-
export declare enum JoinListOperationOutputIds {
|
|
12087
|
-
ResultList = "join-list-result-list-return-delaration",
|
|
12088
|
-
Error = "join-list-error-return-delaration"
|
|
12089
|
-
}
|
|
12090
|
-
|
|
12091
12142
|
export declare const joinListOperationResultListDataType: IDataTypeTransfer;
|
|
12092
12143
|
|
|
12093
12144
|
export declare const joinListOperationResultListReturn: IValueDescriptorTransfer;
|
|
@@ -15363,11 +15414,6 @@ export declare const splitListOperationFirstOutputListReturnParentRef: IActionDe
|
|
|
15363
15414
|
|
|
15364
15415
|
export declare const splitListOperationFirstOutputListReturnRef: IValueDescriptorReference;
|
|
15365
15416
|
|
|
15366
|
-
export declare enum SplitListOperationInputIds {
|
|
15367
|
-
InputList = "list-to-split-argument-declaration",
|
|
15368
|
-
SplitIndex = "split-list-index-argument-declaration"
|
|
15369
|
-
}
|
|
15370
|
-
|
|
15371
15417
|
export declare const splitListOperationInputListArgument: IValueDescriptorTransfer;
|
|
15372
15418
|
|
|
15373
15419
|
export declare const splitListOperationInputListArgumentParentRef: IActionDescriptorReference;
|
|
@@ -15376,12 +15422,6 @@ export declare const splitListOperationInputListArgumentRef: IValueDescriptorRef
|
|
|
15376
15422
|
|
|
15377
15423
|
export declare const splitListOperationInputListDataType: IDataTypeTransfer;
|
|
15378
15424
|
|
|
15379
|
-
export declare enum SplitListOperationOutputIds {
|
|
15380
|
-
FirstOutputList = "split-list-first-output-list-return-delaration",
|
|
15381
|
-
SecondOutputList = "split-list-second-output-list-return-delaration",
|
|
15382
|
-
Error = "split-list-error-return-delaration"
|
|
15383
|
-
}
|
|
15384
|
-
|
|
15385
15425
|
export declare const splitListOperationSecondOutputListDataType: IDataTypeTransfer;
|
|
15386
15426
|
|
|
15387
15427
|
export declare const splitListOperationSecondOutputListReturn: IValueDescriptorTransfer;
|