@elyx-code/project-logic-tree 0.0.6637 → 0.0.6638
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 +29 -1
- package/dist/index.js +15318 -15117
- package/dist/index.umd.cjs +109 -109
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -393,7 +393,7 @@ export declare const andConditionResultVoidDataTypeParentRef: IActionDescriptorR
|
|
|
393
393
|
|
|
394
394
|
export declare type AnyEncoding = UtfEncoding | BinEncoding;
|
|
395
395
|
|
|
396
|
-
export declare function appendToList(list: unknown, value: unknown): any[];
|
|
396
|
+
export declare function appendToList(list: unknown, value: unknown, ...values: unknown[]): any[];
|
|
397
397
|
|
|
398
398
|
export declare function applyNewScope(self: CallableEntityState, changeSet: ChangeSet | null): void;
|
|
399
399
|
|
|
@@ -2036,6 +2036,12 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
2036
2036
|
id: string;
|
|
2037
2037
|
};
|
|
2038
2038
|
};
|
|
2039
|
+
dynamicArgument: {
|
|
2040
|
+
id: string;
|
|
2041
|
+
dataType: {
|
|
2042
|
+
id: string;
|
|
2043
|
+
};
|
|
2044
|
+
};
|
|
2039
2045
|
};
|
|
2040
2046
|
dataType: {
|
|
2041
2047
|
id: string;
|
|
@@ -4613,6 +4619,12 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
4613
4619
|
id: string;
|
|
4614
4620
|
};
|
|
4615
4621
|
};
|
|
4622
|
+
dynamicArgument: {
|
|
4623
|
+
id: string;
|
|
4624
|
+
dataType: {
|
|
4625
|
+
id: string;
|
|
4626
|
+
};
|
|
4627
|
+
};
|
|
4616
4628
|
};
|
|
4617
4629
|
dataType: {
|
|
4618
4630
|
id: string;
|
|
@@ -23090,6 +23102,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23090
23102
|
|
|
23091
23103
|
export declare const listAppendOperation: IActionDescriptorTransfer;
|
|
23092
23104
|
|
|
23105
|
+
export declare const listAppendOperationDynamicArgs: IValueDescriptorTransfer;
|
|
23106
|
+
|
|
23107
|
+
export declare const listAppendOperationDynamicArgsDT: IDataTypeTransfer;
|
|
23108
|
+
|
|
23093
23109
|
export declare const listAppendOperationElementToAppendArgument: IValueDescriptorTransfer;
|
|
23094
23110
|
|
|
23095
23111
|
/** elementToAppend: any */
|
|
@@ -27981,6 +27997,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27981
27997
|
};
|
|
27982
27998
|
}
|
|
27983
27999
|
|
|
28000
|
+
export declare class OperationsImplementationsStringReplaceLastMatchModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
28001
|
+
manifest: ExtensionManifest;
|
|
28002
|
+
module: {
|
|
28003
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
28004
|
+
main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
28005
|
+
};
|
|
28006
|
+
}
|
|
28007
|
+
|
|
27984
28008
|
export declare class OperationsImplementationsStringReplaceLastNCharsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
27985
28009
|
manifest: ExtensionManifest;
|
|
27986
28010
|
module: {
|
|
@@ -31268,6 +31292,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31268
31292
|
|
|
31269
31293
|
export declare const stringAppendOperation: IActionDescriptorTransfer;
|
|
31270
31294
|
|
|
31295
|
+
export declare const stringAppendOperationDynamicArgs: IValueDescriptorTransfer;
|
|
31296
|
+
|
|
31297
|
+
export declare const stringAppendOperationDynamicArgsDT: IDataTypeTransfer;
|
|
31298
|
+
|
|
31271
31299
|
export declare const stringAppendOperationError: IValueDescriptorTransfer;
|
|
31272
31300
|
|
|
31273
31301
|
export declare const stringAppendOperationResponseDT: IDataTypeTransfer;
|