@elyx-code/project-logic-tree 0.0.6423 → 0.0.6424
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 +24 -8
- package/dist/index.js +4167 -4137
- package/dist/index.umd.cjs +73 -73
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -817,7 +817,7 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
817
817
|
};
|
|
818
818
|
};
|
|
819
819
|
methods: {
|
|
820
|
-
|
|
820
|
+
create: {
|
|
821
821
|
id: BuiltInFunctionIds;
|
|
822
822
|
};
|
|
823
823
|
update: {
|
|
@@ -1504,7 +1504,7 @@ export declare type BuiltInElementTypesUnion = BuiltInElement | BuiltInElementTr
|
|
|
1504
1504
|
|
|
1505
1505
|
export declare enum BuiltInFunctionIds {
|
|
1506
1506
|
DeletePersistedEntity = "base-delete-persisted-entity",
|
|
1507
|
-
|
|
1507
|
+
CreatePersistedEntity = "base-create-persisted-entity",
|
|
1508
1508
|
UpdatePersistedEntity = "base-update-persisted-entity",
|
|
1509
1509
|
AbortExecution = "base-abort-execution"
|
|
1510
1510
|
}
|
|
@@ -1521,6 +1521,18 @@ export declare class BuiltInFunctionImplementationAbortExecutionModule extends B
|
|
|
1521
1521
|
};
|
|
1522
1522
|
}
|
|
1523
1523
|
|
|
1524
|
+
export declare class BuiltInFunctionImplementationCreatePersistedEntityModule extends BaseRegisteredExtension implements IRegisteredExtension<BuiltInFunctionImplementationModule> {
|
|
1525
|
+
manifest: ExtensionManifest;
|
|
1526
|
+
module: {
|
|
1527
|
+
main: (entity: InternalCallState, _inputs: IDynamicValue[]) => Promise<{
|
|
1528
|
+
value: ExecutionTerminationType;
|
|
1529
|
+
entity: InternalCallState;
|
|
1530
|
+
error: null;
|
|
1531
|
+
results: never[];
|
|
1532
|
+
}>;
|
|
1533
|
+
};
|
|
1534
|
+
}
|
|
1535
|
+
|
|
1524
1536
|
export declare class BuiltInFunctionImplementationDeletePersistedEntityModule extends BaseRegisteredExtension implements IRegisteredExtension<BuiltInFunctionImplementationModule> {
|
|
1525
1537
|
manifest: ExtensionManifest;
|
|
1526
1538
|
module: {
|
|
@@ -1537,7 +1549,7 @@ export declare interface BuiltInFunctionImplementationModule {
|
|
|
1537
1549
|
main: (entity: InternalCallState, _inputs: IDynamicValue[]) => Promise<IExecutionResult>;
|
|
1538
1550
|
}
|
|
1539
1551
|
|
|
1540
|
-
export declare class
|
|
1552
|
+
export declare class BuiltInFunctionImplementationUpdatePersistedEntityModule extends BaseRegisteredExtension implements IRegisteredExtension<BuiltInFunctionImplementationModule> {
|
|
1541
1553
|
manifest: ExtensionManifest;
|
|
1542
1554
|
module: {
|
|
1543
1555
|
main: (entity: InternalCallState, _inputs: IDynamicValue[]) => Promise<{
|
|
@@ -2274,6 +2286,10 @@ export declare enum CreateNewOutputIds {
|
|
|
2274
2286
|
Error = "create-new-instance-error-return-delaration"
|
|
2275
2287
|
}
|
|
2276
2288
|
|
|
2289
|
+
export declare const createPersistedEntityMethod: IFunctionDeclarationTransfer;
|
|
2290
|
+
|
|
2291
|
+
export declare const createPersistedEntityMethodParentRef: IBuiltInBaseEntityReference;
|
|
2292
|
+
|
|
2277
2293
|
export declare function createSemanticId(entityName: string, entityType: EntityType, project: ProjectState): string;
|
|
2278
2294
|
|
|
2279
2295
|
export declare function createStateFromGenerationTargetType(entity: ElementGenerationTarget, parentProjectState: ProjectState): UserManagedEntityState;
|
|
@@ -2573,7 +2589,7 @@ export declare const DEFAULT_MODULE_IDS: {
|
|
|
2573
2589
|
UUID: string;
|
|
2574
2590
|
SEARCH_NODE_IMPLEMENTATION: string;
|
|
2575
2591
|
BUILT_IN_FUNCTION_IMPLEMENTATIONS__ABORT_EXECUTION: string;
|
|
2576
|
-
|
|
2592
|
+
BUILT_IN_FUNCTION_IMPLEMENTATIONS__CREATE_PERSISTED_ENTITY: string;
|
|
2577
2593
|
BUILT_IN_FUNCTION_IMPLEMENTATIONS__UPDATE_PERSISTED_ENTITY: string;
|
|
2578
2594
|
BUILT_IN_FUNCTION_IMPLEMENTATIONS__DELETE_PERSISTED_ENTITY: string;
|
|
2579
2595
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__HTTP_REQUEST: string;
|
|
@@ -14629,10 +14645,6 @@ declare function sanitizeQuery(query: string): string;
|
|
|
14629
14645
|
|
|
14630
14646
|
declare function sanitizeSQLIdentifierText(text: string): string;
|
|
14631
14647
|
|
|
14632
|
-
export declare const savePersistedEntityMethod: IFunctionDeclarationTransfer;
|
|
14633
|
-
|
|
14634
|
-
export declare const savePersistedEntityMethodParentRef: IBuiltInBaseEntityReference;
|
|
14635
|
-
|
|
14636
14648
|
export declare type ScopeCompatibility = ICompatibleSameBothLocalScope | ICompatibleSameBothGlobalScope | ICompatibleAInBScope | ICompatibleBInAScope | IIncompatibleParallelInProjectScope | IIncompatibleParallelInCommonParentScope | IIncompatibleAIsGlobalBIsNotScope | IIncompatibleBIsGlobalAIsNotScope;
|
|
14637
14649
|
|
|
14638
14650
|
export declare enum ScopeCompatibilityType {
|
|
@@ -15376,6 +15388,10 @@ export declare type UntypedValue = string | number | boolean | null | Date | {
|
|
|
15376
15388
|
|
|
15377
15389
|
export declare function updateErrorsList(oldErrors: EntityError[], newErrors: EntityError[]): EntityError[];
|
|
15378
15390
|
|
|
15391
|
+
export declare const updatePersistedEntityMethod: IFunctionDeclarationTransfer;
|
|
15392
|
+
|
|
15393
|
+
export declare const updatePersistedEntityMethodParentRef: IBuiltInBaseEntityReference;
|
|
15394
|
+
|
|
15379
15395
|
export declare const urlDefaultValue: ILiteralValueTransfer;
|
|
15380
15396
|
|
|
15381
15397
|
export declare const USER_MANAGED_ENTITY_TYPES: EntityType[];
|