@elyx-code/project-logic-tree 0.0.6635 → 0.0.6637
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 +127 -100
- package/dist/index.js +7236 -7124
- package/dist/index.umd.cjs +93 -93
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -209,8 +209,6 @@ export declare class ActionOutputMapState extends OutputMapState implements IAct
|
|
|
209
209
|
toJSON(seenEntities?: Set<EntityId>): IActionOutputMap | IOutputMapReference;
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
export declare function addAtIndex(list: unknown, index: unknown, value: unknown): any[];
|
|
213
|
-
|
|
214
212
|
export declare const addBDBusinessDaysArgument: IValueDescriptorTransfer;
|
|
215
213
|
|
|
216
214
|
export declare const addBDBusinessDaysDataType: IDataTypeTransfer;
|
|
@@ -606,6 +604,8 @@ declare namespace argumentDeclarationValidation {
|
|
|
606
604
|
}
|
|
607
605
|
export { argumentDeclarationValidation }
|
|
608
606
|
|
|
607
|
+
declare type ArrayBufferView_2 = TypedArray | DataView;
|
|
608
|
+
|
|
609
609
|
export declare function asGenerationActionExample(payload: Record<string, any> | string): string;
|
|
610
610
|
|
|
611
611
|
export declare function assembleAndAddLiteralValueFromDataType(dataType: DataTypeState | null, valueOwner: EntityWithDefaultValueState, project: ProjectState, changeSet: ChangeSet | null): LiteralValueState;
|
|
@@ -688,6 +688,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
688
688
|
SearchErrorOutputDescriptor = "search-error-output-descriptor-id"
|
|
689
689
|
}
|
|
690
690
|
|
|
691
|
+
export declare type BinaryLike = string | ArrayBufferView_2;
|
|
692
|
+
|
|
691
693
|
export declare type BinEncoding = 'hex' | 'base64' | 'base64url';
|
|
692
694
|
|
|
693
695
|
export declare type BooleanAutogenerationOptions = IAutogenerationRandomBoolean;
|
|
@@ -1709,7 +1711,7 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1709
1711
|
id: string;
|
|
1710
1712
|
};
|
|
1711
1713
|
};
|
|
1712
|
-
"op-string-replace-first": {
|
|
1714
|
+
"op-string-replace-n-chars-first": {
|
|
1713
1715
|
id: StringOperations;
|
|
1714
1716
|
inputs: {
|
|
1715
1717
|
stringValue: {
|
|
@@ -1741,7 +1743,7 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1741
1743
|
id: string;
|
|
1742
1744
|
};
|
|
1743
1745
|
};
|
|
1744
|
-
"op-string-replace-last": {
|
|
1746
|
+
"op-string-replace-n-chars-last": {
|
|
1745
1747
|
id: StringOperations;
|
|
1746
1748
|
inputs: {
|
|
1747
1749
|
stringValue: {
|
|
@@ -5103,7 +5105,7 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
5103
5105
|
id: string;
|
|
5104
5106
|
};
|
|
5105
5107
|
};
|
|
5106
|
-
"op-list-replace-first": {
|
|
5108
|
+
"op-list-replace-n-items-first": {
|
|
5107
5109
|
id: ListOperations;
|
|
5108
5110
|
inputs: {
|
|
5109
5111
|
listValue: {
|
|
@@ -5141,7 +5143,7 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
5141
5143
|
id: string;
|
|
5142
5144
|
};
|
|
5143
5145
|
};
|
|
5144
|
-
"op-list-replace-last": {
|
|
5146
|
+
"op-list-replace-n-items-last": {
|
|
5145
5147
|
id: ListOperations;
|
|
5146
5148
|
inputs: {
|
|
5147
5149
|
listValue: {
|
|
@@ -10959,6 +10961,8 @@ export declare const dateValueAutogenerationSchema: z_2.ZodUnion<[z_2.ZodObject<
|
|
|
10959
10961
|
rangeEnd: null;
|
|
10960
10962
|
}>]>;
|
|
10961
10963
|
|
|
10964
|
+
export declare const decodeBase64: (str: string) => Bytes;
|
|
10965
|
+
|
|
10962
10966
|
export declare const decodeBase64Url: (str: string) => Bytes;
|
|
10963
10967
|
|
|
10964
10968
|
export declare function decodeBuildJwtHmac(payload: JwtPayload, secret: string | Bytes, alg: 'HS256' | 'HS384' | 'HS512', includeIat: boolean, expiresInSec: number, notBeforeSec: number, issuer: string, subject: string, audience: string | string[], jwtid: string, header: Partial<JwtHeader>, secretEncoding: 'utf8' | 'hex' | 'base64' | 'base64url'): Promise<string>;
|
|
@@ -11008,8 +11012,8 @@ export declare const DEFAULT_MODULE_IDS: {
|
|
|
11008
11012
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_DELETE_FIRST_N_ITEMS: string;
|
|
11009
11013
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_DELETE_AT_INDEX: string;
|
|
11010
11014
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_ADD_AT_INDEX: string;
|
|
11011
|
-
|
|
11012
|
-
|
|
11015
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_REPLACE_FIRST_N_ITEMS: string;
|
|
11016
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_REPLACE_LAST_N_ITEMS: string;
|
|
11013
11017
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_REPLACE_ALL: string;
|
|
11014
11018
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_REPLACE_AT_INDEX: string;
|
|
11015
11019
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_GET_INDEX_ITEM: string;
|
|
@@ -11033,6 +11037,7 @@ export declare const DEFAULT_MODULE_IDS: {
|
|
|
11033
11037
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_PAD_START: string;
|
|
11034
11038
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_PAD_END: string;
|
|
11035
11039
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_REPEAT: string;
|
|
11040
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_GET_LENGTH: string;
|
|
11036
11041
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_TO_LOWER_CASE: string;
|
|
11037
11042
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_TO_UPPER_CASE: string;
|
|
11038
11043
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_JOIN: string;
|
|
@@ -11047,8 +11052,8 @@ export declare const DEFAULT_MODULE_IDS: {
|
|
|
11047
11052
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_DELETE_FIRST_N_CHARS: string;
|
|
11048
11053
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_DELETE_AT_INDEX: string;
|
|
11049
11054
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_ADD_AT_INDEX: string;
|
|
11050
|
-
|
|
11051
|
-
|
|
11055
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_REPLACE_FIRST_N_CHARS: string;
|
|
11056
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_REPLACE_LAST_N_CHARS: string;
|
|
11052
11057
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_REPLACE_AT_INDEX: string;
|
|
11053
11058
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_REPLACE_FIRST_MATCH: string;
|
|
11054
11059
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__STRING_REPLACE_LAST_MATCH: string;
|
|
@@ -11642,15 +11647,13 @@ declare namespace definitionEntityValidation {
|
|
|
11642
11647
|
}
|
|
11643
11648
|
export { definitionEntityValidation }
|
|
11644
11649
|
|
|
11645
|
-
export declare function deleteAtIndex(list: unknown, index: unknown): any[];
|
|
11646
|
-
|
|
11647
11650
|
export declare function deleteFirstNItems(list: unknown): any[];
|
|
11648
11651
|
|
|
11649
|
-
export declare function deleteKey(obj: unknown, key: unknown): Record<string, unknown>;
|
|
11650
|
-
|
|
11651
11652
|
export declare function deleteLastNItems(list: unknown): any[];
|
|
11652
11653
|
|
|
11653
|
-
export declare function
|
|
11654
|
+
export declare function deleteObjectKey(obj: unknown, key: unknown): Record<string, unknown>;
|
|
11655
|
+
|
|
11656
|
+
export declare function deleteObjectNestedKey(obj: unknown, path: unknown): Record<string, unknown>;
|
|
11654
11657
|
|
|
11655
11658
|
export declare const deletePersistedEntityMethod: IActionDescriptorTransfer;
|
|
11656
11659
|
|
|
@@ -11882,13 +11885,15 @@ export declare function emitAsyncProjectSideEffects(changeSet: ChangeSet): Promi
|
|
|
11882
11885
|
|
|
11883
11886
|
export declare function emitProjectSideEffects(changeSet: ChangeSet): ChangeSet;
|
|
11884
11887
|
|
|
11885
|
-
export declare const
|
|
11888
|
+
export declare const encodeBase64: (input: Bytes | string, inputEncoding?: AnyEncoding) => string;
|
|
11889
|
+
|
|
11890
|
+
export declare const encodeBase64Url: (input: Bytes | string, inputEncoding?: AnyEncoding) => string;
|
|
11886
11891
|
|
|
11887
11892
|
export declare function encodeConstantTimeEqual(a: string, b: string, aEncoding: AnyEncoding, bEncoding: AnyEncoding): boolean;
|
|
11888
11893
|
|
|
11889
11894
|
export declare function encodeDeriveKeyPBKDF2(password: string, salt: string, iterations: number, length: number, hashAlg: 'SHA-256' | 'SHA-512', passwordEncoding: 'utf8' | 'hex' | 'base64' | 'base64url', saltEncoding: 'utf8' | 'hex' | 'base64' | 'base64url', outputEncoding: 'utf8' | 'hex' | 'base64' | 'base64url'): Promise<string>;
|
|
11890
11895
|
|
|
11891
|
-
export declare const encodeHex: (
|
|
11896
|
+
export declare const encodeHex: (input: Bytes | string, inputEncoding?: AnyEncoding) => string;
|
|
11892
11897
|
|
|
11893
11898
|
export declare function encodeHmacDecode(key: string, data: string, alg?: string, keyEncoding?: string, dataEncoding?: string, outputEncoding?: string): Promise<string>;
|
|
11894
11899
|
|
|
@@ -17681,8 +17686,6 @@ export declare function getFirst(list: unknown): any;
|
|
|
17681
17686
|
|
|
17682
17687
|
export declare function getFirstBaseEntityWithOwnBase(entity: DefinitionEntityState | BuiltInBaseEntityState, baseEntityName: BaseEntityNames): BuiltInBaseEntityState | null;
|
|
17683
17688
|
|
|
17684
|
-
export declare function getFirstN(list: unknown, n: unknown): any[];
|
|
17685
|
-
|
|
17686
17689
|
export declare function getFirstNonLoopScopeOwner(entity: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, project: ProjectState, _initialEntity?: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer | null): EntryPointEntityState | ProjectState | null;
|
|
17687
17690
|
|
|
17688
17691
|
export declare function getFirstParentExecutableEntity(entity: EntityState): ExecutableEntityState | null;
|
|
@@ -17753,14 +17756,16 @@ declare function getJoinTypeFromJoinClause(joinClause: JoinExpr): AggregationSta
|
|
|
17753
17756
|
|
|
17754
17757
|
export declare function getLast(list: unknown): any;
|
|
17755
17758
|
|
|
17756
|
-
export declare function getLastN(list: unknown, n: unknown): any[];
|
|
17757
|
-
|
|
17758
|
-
export declare function getLength(list: unknown): number;
|
|
17759
|
-
|
|
17760
17759
|
declare function getLimitClauseFromSelectStatement(selectStatement: SelectStmt): LimitClause | null;
|
|
17761
17760
|
|
|
17762
17761
|
export declare function getLinkedEntitiesFromArgumentDeclaration(argumentDeclaration: ArgumentDeclarationState): ValueReadingEntityState[];
|
|
17763
17762
|
|
|
17763
|
+
export declare function getListFirstN(list: unknown, n: unknown): any[];
|
|
17764
|
+
|
|
17765
|
+
export declare function getListLastN(list: unknown, n: unknown): any[];
|
|
17766
|
+
|
|
17767
|
+
export declare function getListLength(list: unknown): number;
|
|
17768
|
+
|
|
17764
17769
|
export declare function getLiteralValueNameFromDataType(dataType: DataTypeState | null): PrimitiveTypes;
|
|
17765
17770
|
|
|
17766
17771
|
/**
|
|
@@ -19472,10 +19477,6 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
19472
19477
|
saltBytes?: Bytes;
|
|
19473
19478
|
}
|
|
19474
19479
|
|
|
19475
|
-
export declare function hasKey(obj: unknown, key: unknown): boolean;
|
|
19476
|
-
|
|
19477
|
-
export declare function hasNestedKey(obj: unknown, path: unknown): boolean;
|
|
19478
|
-
|
|
19479
19480
|
export declare function hexToken(): string;
|
|
19480
19481
|
|
|
19481
19482
|
/** HMAC over data with SHA-256/384/512. */
|
|
@@ -21144,8 +21145,6 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
21144
21145
|
|
|
21145
21146
|
export declare type IncompatibleScope = IIncompatibleParallelInProjectScope | IIncompatibleParallelInCommonParentScope | IIncompatibleAIsGlobalBIsNotScope | IIncompatibleBIsGlobalAIsNotScope;
|
|
21146
21147
|
|
|
21147
|
-
export declare function indexOf(list: unknown, value: unknown): number;
|
|
21148
|
-
|
|
21149
21148
|
export declare function inferArgumentDeclarationDataType(entity: ArgumentDeclarationState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
21150
21149
|
|
|
21151
21150
|
export declare function inferBreakStatementDataType(entity: BreakStatementState, _changeSet?: ChangeSet | null): DataTypeState | null;
|
|
@@ -23061,18 +23060,16 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23061
23060
|
|
|
23062
23061
|
export declare const jwtVerifyHmacTokenDT: IDataTypeTransfer;
|
|
23063
23062
|
|
|
23064
|
-
export declare function keyValueEquals(obj: unknown, key: unknown, expected: unknown): boolean;
|
|
23065
|
-
|
|
23066
23063
|
export declare const keyValuePrototype: IPrimitiveEntity;
|
|
23067
23064
|
|
|
23068
|
-
export declare function lastIndexOf(list: unknown, value: unknown): number;
|
|
23069
|
-
|
|
23070
23065
|
export declare const lengthDefault: ILiteralValueTransfer;
|
|
23071
23066
|
|
|
23072
23067
|
export declare const LIST_OPERATIONS: {
|
|
23073
23068
|
[key: string]: IActionDescriptorTransfer;
|
|
23074
23069
|
};
|
|
23075
23070
|
|
|
23071
|
+
export declare function listAddAtIndex(list: unknown, index: unknown, value: unknown): any[];
|
|
23072
|
+
|
|
23076
23073
|
export declare const listAddAtIndexOperation: IActionDescriptorTransfer;
|
|
23077
23074
|
|
|
23078
23075
|
export declare const listAddAtIndexOperationError: IValueDescriptorTransfer;
|
|
@@ -23239,6 +23236,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23239
23236
|
|
|
23240
23237
|
export declare const listContainsOperationResultVoidDT: IDataTypeTransfer;
|
|
23241
23238
|
|
|
23239
|
+
export declare function listDeleteAtIndex(list: unknown, index: unknown): any[];
|
|
23240
|
+
|
|
23242
23241
|
export declare const listDeleteAtIndexOperation: IActionDescriptorTransfer;
|
|
23243
23242
|
|
|
23244
23243
|
export declare const listDeleteAtIndexOperationCountArg: IValueDescriptorTransfer;
|
|
@@ -23349,6 +23348,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23349
23348
|
|
|
23350
23349
|
export declare const listGetIndexItemOperationResponseDT: IDataTypeTransfer;
|
|
23351
23350
|
|
|
23351
|
+
export declare function listGetIndexOf(list: unknown, value: unknown): number;
|
|
23352
|
+
|
|
23352
23353
|
export declare const listGetIndexOfOperation: IActionDescriptorTransfer;
|
|
23353
23354
|
|
|
23354
23355
|
export declare const listGetIndexOfOperationError: IValueDescriptorTransfer;
|
|
@@ -23369,6 +23370,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23369
23370
|
|
|
23370
23371
|
export declare const listGetIndexOfOperationSearchDT: IDataTypeTransfer;
|
|
23371
23372
|
|
|
23373
|
+
export declare function listGetLastIndexOf(list: unknown, value: unknown): number;
|
|
23374
|
+
|
|
23372
23375
|
export declare const listGetLastIndexOfOperation: IActionDescriptorTransfer;
|
|
23373
23376
|
|
|
23374
23377
|
export declare const listGetLastIndexOfOperationError: IValueDescriptorTransfer;
|
|
@@ -23452,8 +23455,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23452
23455
|
DeleteFirstNItems = "op-list-delete-first-n-items",
|
|
23453
23456
|
DeleteAtIndex = "op-list-delete-at-index",
|
|
23454
23457
|
AddAtIndex = "op-list-add-at-index",
|
|
23455
|
-
|
|
23456
|
-
|
|
23458
|
+
ReplaceFirstNItems = "op-list-replace-n-items-first",
|
|
23459
|
+
ReplaceLastNItems = "op-list-replace-n-items-last",
|
|
23457
23460
|
ReplaceAll = "op-list-replace-all",
|
|
23458
23461
|
ReplaceAtIndex = "op-list-replace-at-index",
|
|
23459
23462
|
GetIndexItem = "op-list-get-index-item",
|
|
@@ -23545,6 +23548,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23545
23548
|
|
|
23546
23549
|
export declare const listRepeatOperationResponseDT: IDataTypeTransfer;
|
|
23547
23550
|
|
|
23551
|
+
export declare function listReplaceAll(list: unknown, valueToReplace: unknown, newValue: unknown): any[];
|
|
23552
|
+
|
|
23548
23553
|
export declare const listReplaceAllOperation: IActionDescriptorTransfer;
|
|
23549
23554
|
|
|
23550
23555
|
export declare const listReplaceAllOperationError: IValueDescriptorTransfer;
|
|
@@ -23569,6 +23574,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23569
23574
|
|
|
23570
23575
|
export declare const listReplaceAllOperationSearchDT: IDataTypeTransfer;
|
|
23571
23576
|
|
|
23577
|
+
export declare function listReplaceAtIndex(list: unknown, index: unknown, value: unknown): any[];
|
|
23578
|
+
|
|
23572
23579
|
export declare const listReplaceAtIndexOperation: IActionDescriptorTransfer;
|
|
23573
23580
|
|
|
23574
23581
|
export declare const listReplaceAtIndexOperationError: IValueDescriptorTransfer;
|
|
@@ -23587,53 +23594,57 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
23587
23594
|
|
|
23588
23595
|
export declare const listReplaceAtIndexOperationValueDT: IDataTypeTransfer;
|
|
23589
23596
|
|
|
23590
|
-
export declare
|
|
23597
|
+
export declare function listReplaceFirstNItems(list: unknown, valueToReplace: unknown, newValue: unknown): any[];
|
|
23598
|
+
|
|
23599
|
+
export declare const listReplaceFirstNItemsOperation: IActionDescriptorTransfer;
|
|
23591
23600
|
|
|
23592
|
-
export declare const
|
|
23601
|
+
export declare const listReplaceFirstNItemsOperationError: IValueDescriptorTransfer;
|
|
23593
23602
|
|
|
23594
|
-
export declare const
|
|
23603
|
+
export declare const listReplaceFirstNItemsOperationListArg: IValueDescriptorTransfer;
|
|
23595
23604
|
|
|
23596
|
-
export declare const
|
|
23605
|
+
export declare const listReplaceFirstNItemsOperationListDT: IDataTypeTransfer;
|
|
23597
23606
|
|
|
23598
|
-
export declare const
|
|
23607
|
+
export declare const listReplaceFirstNItemsOperationListDTOrDate: IDataTypeTransfer;
|
|
23599
23608
|
|
|
23600
|
-
export declare const
|
|
23609
|
+
export declare const listReplaceFirstNItemsOperationListDTOrNumber: IDataTypeTransfer;
|
|
23601
23610
|
|
|
23602
|
-
export declare const
|
|
23611
|
+
export declare const listReplaceFirstNItemsOperationListDTOrString: IDataTypeTransfer;
|
|
23603
23612
|
|
|
23604
|
-
export declare const
|
|
23613
|
+
export declare const listReplaceFirstNItemsOperationReplaceArg: IValueDescriptorTransfer;
|
|
23605
23614
|
|
|
23606
|
-
export declare const
|
|
23615
|
+
export declare const listReplaceFirstNItemsOperationReplaceDT: IDataTypeTransfer;
|
|
23607
23616
|
|
|
23608
|
-
export declare const
|
|
23617
|
+
export declare const listReplaceFirstNItemsOperationResponseDT: IDataTypeTransfer;
|
|
23609
23618
|
|
|
23610
|
-
export declare const
|
|
23619
|
+
export declare const listReplaceFirstNItemsOperationSearchArg: IValueDescriptorTransfer;
|
|
23611
23620
|
|
|
23612
|
-
export declare const
|
|
23621
|
+
export declare const listReplaceFirstNItemsOperationSearchDT: IDataTypeTransfer;
|
|
23613
23622
|
|
|
23614
|
-
export declare
|
|
23623
|
+
export declare function listReplaceLastNItems(list: unknown, valueToReplace: unknown, newValue: unknown): any[];
|
|
23615
23624
|
|
|
23616
|
-
export declare const
|
|
23625
|
+
export declare const listReplaceLastNItemsOperation: IActionDescriptorTransfer;
|
|
23617
23626
|
|
|
23618
|
-
export declare const
|
|
23627
|
+
export declare const listReplaceLastNItemsOperationError: IValueDescriptorTransfer;
|
|
23619
23628
|
|
|
23620
|
-
export declare const
|
|
23629
|
+
export declare const listReplaceLastNItemsOperationListArg: IValueDescriptorTransfer;
|
|
23621
23630
|
|
|
23622
|
-
export declare const
|
|
23631
|
+
export declare const listReplaceLastNItemsOperationListDT: IDataTypeTransfer;
|
|
23623
23632
|
|
|
23624
|
-
export declare const
|
|
23633
|
+
export declare const listReplaceLastNItemsOperationListDTOrDate: IDataTypeTransfer;
|
|
23625
23634
|
|
|
23626
|
-
export declare const
|
|
23635
|
+
export declare const listReplaceLastNItemsOperationListDTOrNumber: IDataTypeTransfer;
|
|
23627
23636
|
|
|
23628
|
-
export declare const
|
|
23637
|
+
export declare const listReplaceLastNItemsOperationListDTOrString: IDataTypeTransfer;
|
|
23629
23638
|
|
|
23630
|
-
export declare const
|
|
23639
|
+
export declare const listReplaceLastNItemsOperationReplaceArg: IValueDescriptorTransfer;
|
|
23631
23640
|
|
|
23632
|
-
export declare const
|
|
23641
|
+
export declare const listReplaceLastNItemsOperationReplaceDT: IDataTypeTransfer;
|
|
23633
23642
|
|
|
23634
|
-
export declare const
|
|
23643
|
+
export declare const listReplaceLastNItemsOperationResponseDT: IDataTypeTransfer;
|
|
23635
23644
|
|
|
23636
|
-
export declare const
|
|
23645
|
+
export declare const listReplaceLastNItemsOperationSearchArg: IValueDescriptorTransfer;
|
|
23646
|
+
|
|
23647
|
+
export declare const listReplaceLastNItemsOperationSearchDT: IDataTypeTransfer;
|
|
23637
23648
|
|
|
23638
23649
|
export declare const listReverseOperation: IActionDescriptorTransfer;
|
|
23639
23650
|
|
|
@@ -24323,7 +24334,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
24323
24334
|
|
|
24324
24335
|
export declare const NESTED_PROPERTY_HEIGHT = 26;
|
|
24325
24336
|
|
|
24326
|
-
export declare function
|
|
24337
|
+
export declare function nestedObjectKeyValueEquals(obj: unknown, path: unknown, expected: unknown): boolean;
|
|
24327
24338
|
|
|
24328
24339
|
declare class NestedSearchStatement implements ISearchNode {
|
|
24329
24340
|
owner: SearchStatementState;
|
|
@@ -25112,6 +25123,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
25112
25123
|
|
|
25113
25124
|
export declare const objectEntriesOperationResultDT: IDataTypeTransfer;
|
|
25114
25125
|
|
|
25126
|
+
export declare function objectHasKey(obj: unknown, key: unknown): boolean;
|
|
25127
|
+
|
|
25115
25128
|
export declare const objectHasKeyOperation: IActionDescriptorTransfer;
|
|
25116
25129
|
|
|
25117
25130
|
export declare const objectHasKeyOperationError: IValueDescriptorTransfer;
|
|
@@ -25126,6 +25139,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
25126
25139
|
|
|
25127
25140
|
export declare const objectHasKeyOperationResultVoidDT: IDataTypeTransfer;
|
|
25128
25141
|
|
|
25142
|
+
export declare function objectHasNestedKey(obj: unknown, path: unknown): boolean;
|
|
25143
|
+
|
|
25129
25144
|
export declare const objectHasNestedKeyOperation: IActionDescriptorTransfer;
|
|
25130
25145
|
|
|
25131
25146
|
export declare const objectHasNestedKeyOperationError: IValueDescriptorTransfer;
|
|
@@ -25177,6 +25192,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
25177
25192
|
|
|
25178
25193
|
export declare const objectKeysOperationResultDT: IDataTypeTransfer;
|
|
25179
25194
|
|
|
25195
|
+
export declare function objectKeyValueEquals(obj: unknown, key: unknown, expected: unknown): boolean;
|
|
25196
|
+
|
|
25180
25197
|
export declare const objectKeyValueEqualsOperation: IActionDescriptorTransfer;
|
|
25181
25198
|
|
|
25182
25199
|
export declare const objectKeyValueEqualsOperationError: IValueDescriptorTransfer;
|
|
@@ -26515,7 +26532,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
26515
26532
|
};
|
|
26516
26533
|
}
|
|
26517
26534
|
|
|
26518
|
-
export declare class
|
|
26535
|
+
export declare class OperationsImplementationsListReplaceFirstNItemsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
26519
26536
|
manifest: ExtensionManifest;
|
|
26520
26537
|
module: {
|
|
26521
26538
|
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
@@ -26523,7 +26540,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
26523
26540
|
};
|
|
26524
26541
|
}
|
|
26525
26542
|
|
|
26526
|
-
export declare class
|
|
26543
|
+
export declare class OperationsImplementationsListReplaceLastNItemsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
26527
26544
|
manifest: ExtensionManifest;
|
|
26528
26545
|
module: {
|
|
26529
26546
|
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
@@ -27739,11 +27756,27 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27739
27756
|
};
|
|
27740
27757
|
}
|
|
27741
27758
|
|
|
27759
|
+
export declare class OperationsImplementationsStringGetLengthModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
27760
|
+
manifest: ExtensionManifest;
|
|
27761
|
+
module: {
|
|
27762
|
+
init: (ctxs: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
27763
|
+
main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<{
|
|
27764
|
+
value: ExecutionTerminationType;
|
|
27765
|
+
error: null;
|
|
27766
|
+
result: number;
|
|
27767
|
+
} | {
|
|
27768
|
+
value: ExecutionTerminationType;
|
|
27769
|
+
error: unknown;
|
|
27770
|
+
result: null;
|
|
27771
|
+
}>;
|
|
27772
|
+
};
|
|
27773
|
+
}
|
|
27774
|
+
|
|
27742
27775
|
export declare class OperationsImplementationsStringJoinModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
27743
27776
|
manifest: ExtensionManifest;
|
|
27744
27777
|
module: {
|
|
27745
27778
|
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
27746
|
-
main: (entity: OperationState,
|
|
27779
|
+
main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
27747
27780
|
};
|
|
27748
27781
|
}
|
|
27749
27782
|
|
|
@@ -27940,7 +27973,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27940
27973
|
};
|
|
27941
27974
|
}
|
|
27942
27975
|
|
|
27943
|
-
export declare class
|
|
27976
|
+
export declare class OperationsImplementationsStringReplaceFirstNCharsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
27944
27977
|
manifest: ExtensionManifest;
|
|
27945
27978
|
module: {
|
|
27946
27979
|
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
@@ -27948,7 +27981,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
27948
27981
|
};
|
|
27949
27982
|
}
|
|
27950
27983
|
|
|
27951
|
-
export declare class
|
|
27984
|
+
export declare class OperationsImplementationsStringReplaceLastNCharsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
27952
27985
|
manifest: ExtensionManifest;
|
|
27953
27986
|
module: {
|
|
27954
27987
|
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
@@ -29509,9 +29542,9 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29509
29542
|
};
|
|
29510
29543
|
};
|
|
29511
29544
|
|
|
29512
|
-
export declare function
|
|
29545
|
+
export declare function readObjectKey(obj: unknown, key: unknown): unknown;
|
|
29513
29546
|
|
|
29514
|
-
export declare function
|
|
29547
|
+
export declare function readObjectNestedKey(obj: unknown, path: unknown, defaultValue?: unknown): unknown;
|
|
29515
29548
|
|
|
29516
29549
|
export declare function readValueFromWritter(entity: ValueReadingEntityState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
29517
29550
|
|
|
@@ -29596,14 +29629,6 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29596
29629
|
|
|
29597
29630
|
export declare function repeatList(list: unknown, count: unknown): any[];
|
|
29598
29631
|
|
|
29599
|
-
export declare function replaceAll(list: unknown, valueToReplace: unknown, newValue: unknown): any[];
|
|
29600
|
-
|
|
29601
|
-
export declare function replaceAtIndex(list: unknown, index: unknown, value: unknown): any[];
|
|
29602
|
-
|
|
29603
|
-
export declare function replaceFirst(list: unknown, valueToReplace: unknown, newValue: unknown): any[];
|
|
29604
|
-
|
|
29605
|
-
export declare function replaceLast(list: unknown, valueToReplace: unknown, newValue: unknown): any[];
|
|
29606
|
-
|
|
29607
29632
|
export declare const repliesActionRef: IActionDescriptorReference;
|
|
29608
29633
|
|
|
29609
29634
|
export declare const repliesAutoPaginateInputDTParentRef: IValueDescriptorReference;
|
|
@@ -31549,8 +31574,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31549
31574
|
DeleteFirstNChars = "op-string-delete-first-n-chars",
|
|
31550
31575
|
DeleteAtIndex = "op-string-delete-at-index",
|
|
31551
31576
|
AddAtIndex = "op-string-add-at-index",
|
|
31552
|
-
|
|
31553
|
-
|
|
31577
|
+
ReplaceFirstNChars = "op-string-replace-n-chars-first",
|
|
31578
|
+
ReplaceLastNChars = "op-string-replace-n-chars-last",
|
|
31554
31579
|
ReplaceAtIndex = "op-string-replace-at-index",
|
|
31555
31580
|
ReplaceFirstMatch = "op-string-replace-first-match",
|
|
31556
31581
|
ReplaceLastMatch = "op-string-replace-last-match",
|
|
@@ -31754,25 +31779,25 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31754
31779
|
|
|
31755
31780
|
export declare const stringReplaceFirstMatchOperationStringDT: IDataTypeTransfer;
|
|
31756
31781
|
|
|
31757
|
-
export declare const
|
|
31782
|
+
export declare const stringReplaceFirstNCharsOperation: IActionDescriptorTransfer;
|
|
31758
31783
|
|
|
31759
|
-
export declare const
|
|
31784
|
+
export declare const stringReplaceFirstNCharsOperationCountArg: IValueDescriptorTransfer;
|
|
31760
31785
|
|
|
31761
|
-
export declare const
|
|
31786
|
+
export declare const stringReplaceFirstNCharsOperationCountDefaultValue: ILiteralValueTransfer;
|
|
31762
31787
|
|
|
31763
|
-
export declare const
|
|
31788
|
+
export declare const stringReplaceFirstNCharsOperationCountDT: IDataTypeTransfer;
|
|
31764
31789
|
|
|
31765
|
-
export declare const
|
|
31790
|
+
export declare const stringReplaceFirstNCharsOperationError: IValueDescriptorTransfer;
|
|
31766
31791
|
|
|
31767
|
-
export declare const
|
|
31792
|
+
export declare const stringReplaceFirstNCharsOperationReplaceArg: IValueDescriptorTransfer;
|
|
31768
31793
|
|
|
31769
|
-
export declare const
|
|
31794
|
+
export declare const stringReplaceFirstNCharsOperationReplaceDT: IDataTypeTransfer;
|
|
31770
31795
|
|
|
31771
|
-
export declare const
|
|
31796
|
+
export declare const stringReplaceFirstNCharsOperationResponseDT: IDataTypeTransfer;
|
|
31772
31797
|
|
|
31773
|
-
export declare const
|
|
31798
|
+
export declare const stringReplaceFirstNCharsOperationStringArg: IValueDescriptorTransfer;
|
|
31774
31799
|
|
|
31775
|
-
export declare const
|
|
31800
|
+
export declare const stringReplaceFirstNCharsOperationStringDT: IDataTypeTransfer;
|
|
31776
31801
|
|
|
31777
31802
|
export declare const stringReplaceLastMatchOperation: IActionDescriptorTransfer;
|
|
31778
31803
|
|
|
@@ -31792,25 +31817,25 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
31792
31817
|
|
|
31793
31818
|
export declare const stringReplaceLastMatchOperationStringDT: IDataTypeTransfer;
|
|
31794
31819
|
|
|
31795
|
-
export declare const
|
|
31820
|
+
export declare const stringReplaceLastNCharsOperation: IActionDescriptorTransfer;
|
|
31796
31821
|
|
|
31797
|
-
export declare const
|
|
31822
|
+
export declare const stringReplaceLastNCharsOperationCountArg: IValueDescriptorTransfer;
|
|
31798
31823
|
|
|
31799
|
-
export declare const
|
|
31824
|
+
export declare const stringReplaceLastNCharsOperationCountDefaultValue: ILiteralValueTransfer;
|
|
31800
31825
|
|
|
31801
|
-
export declare const
|
|
31826
|
+
export declare const stringReplaceLastNCharsOperationCountDT: IDataTypeTransfer;
|
|
31802
31827
|
|
|
31803
|
-
export declare const
|
|
31828
|
+
export declare const stringReplaceLastNCharsOperationError: IValueDescriptorTransfer;
|
|
31804
31829
|
|
|
31805
|
-
export declare const
|
|
31830
|
+
export declare const stringReplaceLastNCharsOperationReplaceArg: IValueDescriptorTransfer;
|
|
31806
31831
|
|
|
31807
|
-
export declare const
|
|
31832
|
+
export declare const stringReplaceLastNCharsOperationReplaceDT: IDataTypeTransfer;
|
|
31808
31833
|
|
|
31809
|
-
export declare const
|
|
31834
|
+
export declare const stringReplaceLastNCharsOperationResponseDT: IDataTypeTransfer;
|
|
31810
31835
|
|
|
31811
|
-
export declare const
|
|
31836
|
+
export declare const stringReplaceLastNCharsOperationStringArg: IValueDescriptorTransfer;
|
|
31812
31837
|
|
|
31813
|
-
export declare const
|
|
31838
|
+
export declare const stringReplaceLastNCharsOperationStringDT: IDataTypeTransfer;
|
|
31814
31839
|
|
|
31815
31840
|
export declare const stringReplaceRegexOperation: IActionDescriptorTransfer;
|
|
31816
31841
|
|
|
@@ -32236,6 +32261,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
32236
32261
|
}): Promise<Traverser>;
|
|
32237
32262
|
}
|
|
32238
32263
|
|
|
32264
|
+
declare type TypedArray = Uint8Array | Uint8ClampedArray | Uint16Array | Uint32Array | Int8Array | Int16Array | Int32Array | BigUint64Array | BigInt64Array | Float32Array | Float64Array;
|
|
32265
|
+
|
|
32239
32266
|
export declare function unfreezeDownstreamEntitiesFromGiven(entity: UserManagedEntityState, changeSet: ChangeSet, seenEntities?: Set<string>, allBuiltInEntityIds?: string[]): void;
|
|
32240
32267
|
|
|
32241
32268
|
export declare function uniqueList(list: unknown): any[];
|
|
@@ -33825,17 +33852,17 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
33825
33852
|
|
|
33826
33853
|
declare function whereStatementOperatorToSQL(operator: WhereStatementOperator): 'LIKE' | 'NOT LIKE' | 'IS NOT' | 'BETWEEN' | 'IN' | WhereStatementOperator.BiggerThan | WhereStatementOperator.SmallerThan | WhereStatementOperator.BiggerThanOrEqualTo | WhereStatementOperator.SmallerThanOrEqualTo;
|
|
33827
33854
|
|
|
33828
|
-
export declare function
|
|
33855
|
+
export declare function writeObjectKey(obj: unknown, key: unknown, value: unknown): Record<string, unknown>;
|
|
33829
33856
|
|
|
33830
33857
|
/**
|
|
33831
33858
|
* Strict nested write (no auto-create).
|
|
33832
33859
|
* Throws if parent chain is missing.
|
|
33833
33860
|
*/
|
|
33834
|
-
export declare function
|
|
33861
|
+
export declare function writeObjectNestedKey(obj: unknown, path: unknown, value: unknown): Record<string, unknown>;
|
|
33835
33862
|
|
|
33836
33863
|
/**
|
|
33837
33864
|
* Safe nested write (auto-create parents).
|
|
33838
33865
|
*/
|
|
33839
|
-
export declare function
|
|
33866
|
+
export declare function writeSafeObjectNestedKeyRecursively(obj: unknown, path: unknown, value: unknown): Record<string, unknown>;
|
|
33840
33867
|
|
|
33841
33868
|
export { }
|