@elyx-code/project-logic-tree 0.0.6637 → 0.0.6639
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 +39 -6
- package/dist/index.js +15453 -15243
- 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
|
|
|
@@ -636,7 +636,7 @@ export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegration
|
|
|
636
636
|
|
|
637
637
|
export declare const audienceStringListDT: IDataTypeTransfer;
|
|
638
638
|
|
|
639
|
-
export declare function average(numsRaw: unknown[]): number;
|
|
639
|
+
export declare function average(...numsRaw: unknown[]): number;
|
|
640
640
|
|
|
641
641
|
export declare type BaseActionImplementation = (...args: any[]) => any[] | Promise<any[]>;
|
|
642
642
|
|
|
@@ -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;
|
|
@@ -2444,6 +2450,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
2444
2450
|
dataType: {
|
|
2445
2451
|
id: string;
|
|
2446
2452
|
};
|
|
2453
|
+
defaultValue: {
|
|
2454
|
+
id: string;
|
|
2455
|
+
};
|
|
2447
2456
|
};
|
|
2448
2457
|
};
|
|
2449
2458
|
dataType: {
|
|
@@ -4613,6 +4622,12 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
4613
4622
|
id: string;
|
|
4614
4623
|
};
|
|
4615
4624
|
};
|
|
4625
|
+
dynamicArgument: {
|
|
4626
|
+
id: string;
|
|
4627
|
+
dataType: {
|
|
4628
|
+
id: string;
|
|
4629
|
+
};
|
|
4630
|
+
};
|
|
4616
4631
|
};
|
|
4617
4632
|
dataType: {
|
|
4618
4633
|
id: string;
|
|
@@ -23090,6 +23105,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23090
23105
|
|
|
23091
23106
|
export declare const listAppendOperation: IActionDescriptorTransfer;
|
|
23092
23107
|
|
|
23108
|
+
export declare const listAppendOperationDynamicArgs: IValueDescriptorTransfer;
|
|
23109
|
+
|
|
23110
|
+
export declare const listAppendOperationDynamicArgsDT: IDataTypeTransfer;
|
|
23111
|
+
|
|
23093
23112
|
export declare const listAppendOperationElementToAppendArgument: IValueDescriptorTransfer;
|
|
23094
23113
|
|
|
23095
23114
|
/** elementToAppend: any */
|
|
@@ -24152,7 +24171,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
24152
24171
|
|
|
24153
24172
|
export declare const maxOfResponseDT: IDataTypeTransfer;
|
|
24154
24173
|
|
|
24155
|
-
export declare function median(numsRaw: unknown[]): number;
|
|
24174
|
+
export declare function median(...numsRaw: unknown[]): number;
|
|
24156
24175
|
|
|
24157
24176
|
export declare function mergeArraysOfStringsWithoutDuplicates(arr1: string[], arr2: string[]): string[];
|
|
24158
24177
|
|
|
@@ -27787,7 +27806,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27787
27806
|
main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<{
|
|
27788
27807
|
value: ExecutionTerminationType;
|
|
27789
27808
|
error: null;
|
|
27790
|
-
result:
|
|
27809
|
+
result: string[][];
|
|
27791
27810
|
} | {
|
|
27792
27811
|
value: ExecutionTerminationType;
|
|
27793
27812
|
error: unknown;
|
|
@@ -27819,7 +27838,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27819
27838
|
main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<{
|
|
27820
27839
|
value: ExecutionTerminationType;
|
|
27821
27840
|
error: null;
|
|
27822
|
-
result:
|
|
27841
|
+
result: RegExpMatchArray | null;
|
|
27823
27842
|
} | {
|
|
27824
27843
|
value: ExecutionTerminationType;
|
|
27825
27844
|
error: unknown;
|
|
@@ -27981,6 +28000,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27981
28000
|
};
|
|
27982
28001
|
}
|
|
27983
28002
|
|
|
28003
|
+
export declare class OperationsImplementationsStringReplaceLastMatchModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
28004
|
+
manifest: ExtensionManifest;
|
|
28005
|
+
module: {
|
|
28006
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
28007
|
+
main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
28008
|
+
};
|
|
28009
|
+
}
|
|
28010
|
+
|
|
27984
28011
|
export declare class OperationsImplementationsStringReplaceLastNCharsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
27985
28012
|
manifest: ExtensionManifest;
|
|
27986
28013
|
module: {
|
|
@@ -29347,7 +29374,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29347
29374
|
|
|
29348
29375
|
export declare const pwdEncDefault: ILiteralValueTransfer;
|
|
29349
29376
|
|
|
29350
|
-
export declare function
|
|
29377
|
+
export declare function randomAlphanumeric(length: number): string;
|
|
29351
29378
|
|
|
29352
29379
|
export declare function randomBase62(length: number): string;
|
|
29353
29380
|
|
|
@@ -31268,6 +31295,10 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31268
31295
|
|
|
31269
31296
|
export declare const stringAppendOperation: IActionDescriptorTransfer;
|
|
31270
31297
|
|
|
31298
|
+
export declare const stringAppendOperationDynamicArgs: IValueDescriptorTransfer;
|
|
31299
|
+
|
|
31300
|
+
export declare const stringAppendOperationDynamicArgsDT: IDataTypeTransfer;
|
|
31301
|
+
|
|
31271
31302
|
export declare const stringAppendOperationError: IValueDescriptorTransfer;
|
|
31272
31303
|
|
|
31273
31304
|
export declare const stringAppendOperationResponseDT: IDataTypeTransfer;
|
|
@@ -31555,6 +31586,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31555
31586
|
|
|
31556
31587
|
export declare const stringNormalizeUnicodeOperationFormArg: IValueDescriptorTransfer;
|
|
31557
31588
|
|
|
31589
|
+
export declare const stringNormalizeUnicodeOperationFormArgDefaultValue: ILiteralValueTransfer;
|
|
31590
|
+
|
|
31558
31591
|
export declare const stringNormalizeUnicodeOperationFormDT: IDataTypeTransfer;
|
|
31559
31592
|
|
|
31560
31593
|
export declare const stringNormalizeUnicodeOperationResponseDT: IDataTypeTransfer;
|