@elyx-code/project-logic-tree 0.0.6357 → 0.0.6359
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 +423 -3
- package/dist/index.js +25800 -24097
- package/dist/index.umd.cjs +216 -216
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1006,6 +1006,204 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1006
1006
|
};
|
|
1007
1007
|
};
|
|
1008
1008
|
};
|
|
1009
|
+
"generate-random-integer": {
|
|
1010
|
+
id: RandomnessOperations;
|
|
1011
|
+
inputs: {
|
|
1012
|
+
min: {
|
|
1013
|
+
id: string;
|
|
1014
|
+
};
|
|
1015
|
+
max: {
|
|
1016
|
+
id: string;
|
|
1017
|
+
};
|
|
1018
|
+
};
|
|
1019
|
+
outputs: {
|
|
1020
|
+
result: {
|
|
1021
|
+
id: string;
|
|
1022
|
+
dataType: {
|
|
1023
|
+
id: string;
|
|
1024
|
+
};
|
|
1025
|
+
};
|
|
1026
|
+
error: {
|
|
1027
|
+
id: string;
|
|
1028
|
+
};
|
|
1029
|
+
};
|
|
1030
|
+
};
|
|
1031
|
+
"generate-random-float": {
|
|
1032
|
+
id: RandomnessOperations;
|
|
1033
|
+
inputs: {};
|
|
1034
|
+
outputs: {
|
|
1035
|
+
result: {
|
|
1036
|
+
id: string;
|
|
1037
|
+
dataType: {
|
|
1038
|
+
id: string;
|
|
1039
|
+
};
|
|
1040
|
+
};
|
|
1041
|
+
error: {
|
|
1042
|
+
id: string;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
};
|
|
1046
|
+
"generate-random-hexadecimal": {
|
|
1047
|
+
id: RandomnessOperations;
|
|
1048
|
+
inputs: {
|
|
1049
|
+
length: {
|
|
1050
|
+
id: string;
|
|
1051
|
+
dataType: {
|
|
1052
|
+
id: string;
|
|
1053
|
+
};
|
|
1054
|
+
};
|
|
1055
|
+
};
|
|
1056
|
+
outputs: {
|
|
1057
|
+
result: {
|
|
1058
|
+
id: string;
|
|
1059
|
+
dataType: {
|
|
1060
|
+
id: string;
|
|
1061
|
+
};
|
|
1062
|
+
};
|
|
1063
|
+
error: {
|
|
1064
|
+
id: string;
|
|
1065
|
+
};
|
|
1066
|
+
};
|
|
1067
|
+
};
|
|
1068
|
+
"generate-random-base62": {
|
|
1069
|
+
id: RandomnessOperations;
|
|
1070
|
+
inputs: {
|
|
1071
|
+
length: {
|
|
1072
|
+
id: string;
|
|
1073
|
+
dataType: {
|
|
1074
|
+
id: string;
|
|
1075
|
+
};
|
|
1076
|
+
};
|
|
1077
|
+
};
|
|
1078
|
+
outputs: {
|
|
1079
|
+
result: {
|
|
1080
|
+
id: string;
|
|
1081
|
+
dataType: {
|
|
1082
|
+
id: string;
|
|
1083
|
+
};
|
|
1084
|
+
};
|
|
1085
|
+
error: {
|
|
1086
|
+
id: string;
|
|
1087
|
+
};
|
|
1088
|
+
};
|
|
1089
|
+
};
|
|
1090
|
+
"generate-random-base64": {
|
|
1091
|
+
id: RandomnessOperations;
|
|
1092
|
+
inputs: {
|
|
1093
|
+
length: {
|
|
1094
|
+
id: string;
|
|
1095
|
+
dataType: {
|
|
1096
|
+
id: string;
|
|
1097
|
+
};
|
|
1098
|
+
};
|
|
1099
|
+
};
|
|
1100
|
+
outputs: {
|
|
1101
|
+
result: {
|
|
1102
|
+
id: string;
|
|
1103
|
+
dataType: {
|
|
1104
|
+
id: string;
|
|
1105
|
+
};
|
|
1106
|
+
};
|
|
1107
|
+
error: {
|
|
1108
|
+
id: string;
|
|
1109
|
+
};
|
|
1110
|
+
};
|
|
1111
|
+
};
|
|
1112
|
+
"generate-random-alphanumeric": {
|
|
1113
|
+
id: RandomnessOperations;
|
|
1114
|
+
inputs: {
|
|
1115
|
+
length: {
|
|
1116
|
+
id: string;
|
|
1117
|
+
dataType: {
|
|
1118
|
+
id: string;
|
|
1119
|
+
};
|
|
1120
|
+
};
|
|
1121
|
+
};
|
|
1122
|
+
outputs: {
|
|
1123
|
+
result: {
|
|
1124
|
+
id: string;
|
|
1125
|
+
dataType: {
|
|
1126
|
+
id: string;
|
|
1127
|
+
};
|
|
1128
|
+
};
|
|
1129
|
+
error: {
|
|
1130
|
+
id: string;
|
|
1131
|
+
};
|
|
1132
|
+
};
|
|
1133
|
+
};
|
|
1134
|
+
"generate-identifier": {
|
|
1135
|
+
id: RandomnessOperations;
|
|
1136
|
+
inputs: {
|
|
1137
|
+
length: {
|
|
1138
|
+
id: string;
|
|
1139
|
+
dataType: {
|
|
1140
|
+
id: string;
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
alphabet: {
|
|
1144
|
+
id: string;
|
|
1145
|
+
dataType: {
|
|
1146
|
+
id: string;
|
|
1147
|
+
};
|
|
1148
|
+
};
|
|
1149
|
+
};
|
|
1150
|
+
outputs: {
|
|
1151
|
+
result: {
|
|
1152
|
+
id: string;
|
|
1153
|
+
dataType: {
|
|
1154
|
+
id: string;
|
|
1155
|
+
};
|
|
1156
|
+
};
|
|
1157
|
+
error: {
|
|
1158
|
+
id: string;
|
|
1159
|
+
};
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
"generate-random-uuidv4": {
|
|
1163
|
+
id: RandomnessOperations;
|
|
1164
|
+
inputs: {};
|
|
1165
|
+
outputs: {
|
|
1166
|
+
result: {
|
|
1167
|
+
id: string;
|
|
1168
|
+
dataType: {
|
|
1169
|
+
id: string;
|
|
1170
|
+
};
|
|
1171
|
+
};
|
|
1172
|
+
error: {
|
|
1173
|
+
id: string;
|
|
1174
|
+
};
|
|
1175
|
+
};
|
|
1176
|
+
};
|
|
1177
|
+
"generate-short-identifier": {
|
|
1178
|
+
id: RandomnessOperations;
|
|
1179
|
+
inputs: {};
|
|
1180
|
+
outputs: {
|
|
1181
|
+
result: {
|
|
1182
|
+
id: string;
|
|
1183
|
+
dataType: {
|
|
1184
|
+
id: string;
|
|
1185
|
+
};
|
|
1186
|
+
};
|
|
1187
|
+
error: {
|
|
1188
|
+
id: string;
|
|
1189
|
+
};
|
|
1190
|
+
};
|
|
1191
|
+
};
|
|
1192
|
+
"generate-hexadecimal-token": {
|
|
1193
|
+
id: RandomnessOperations;
|
|
1194
|
+
inputs: {};
|
|
1195
|
+
outputs: {
|
|
1196
|
+
result: {
|
|
1197
|
+
id: string;
|
|
1198
|
+
dataType: {
|
|
1199
|
+
id: string;
|
|
1200
|
+
};
|
|
1201
|
+
};
|
|
1202
|
+
error: {
|
|
1203
|
+
id: string;
|
|
1204
|
+
};
|
|
1205
|
+
};
|
|
1206
|
+
};
|
|
1009
1207
|
};
|
|
1010
1208
|
loop: {
|
|
1011
1209
|
"list-loop": {
|
|
@@ -2786,6 +2984,10 @@ export declare const endpointReturnStatementRefThree: IActionDescriptorReference
|
|
|
2786
2984
|
|
|
2787
2985
|
export declare const endpointReturnStatementRefTwo: IActionDescriptorReference;
|
|
2788
2986
|
|
|
2987
|
+
export declare const enerateRandomIntegerOperationError: IValueDescriptorTransfer;
|
|
2988
|
+
|
|
2989
|
+
export declare const enerateRandomIntegerOperationErrorParentRef: IActionDescriptorReference;
|
|
2990
|
+
|
|
2789
2991
|
export declare function enrichFromKnownEntities(entity: ElementTransfer | Element_2 | ElementShallowTransfer | IGenericReference | EntityId, allKnownEntities: Record<EntityId, Element_2 | ElementTransfer | ElementShallowTransfer>): Element_2 | ElementTransfer | ElementShallowTransfer | null;
|
|
2790
2992
|
|
|
2791
2993
|
export declare const ENTITIES_WITH_VALLUES_EXPLANATION: string;
|
|
@@ -3762,12 +3964,122 @@ export declare type GeneratedPayload = ElementGenerationTarget | {
|
|
|
3762
3964
|
|
|
3763
3965
|
export declare function generateExecutionDataType(entity: PropertyState | ArgumentDeclarationState | ReturnDeclarationState | VariableDeclarationState | ValueDescriptorState | DataTypeState, changeSet: ChangeSet | null): DataTypeState;
|
|
3764
3966
|
|
|
3967
|
+
export declare const generateHexadecimalTokenOperation: IActionDescriptorTransfer;
|
|
3968
|
+
|
|
3969
|
+
export declare const generateHexadecimalTokenOperationError: IValueDescriptorTransfer;
|
|
3970
|
+
|
|
3971
|
+
export declare const generateHexadecimalTokenOperationErrorParentRef: IActionDescriptorReference;
|
|
3972
|
+
|
|
3973
|
+
export declare const generateHexadecimalTokenOperationResultStringDataType: IDataTypeTransfer;
|
|
3974
|
+
|
|
3975
|
+
export declare const generateHexadecimalTokenOperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
3976
|
+
|
|
3977
|
+
export declare const generateHexadecimalTokenOperationResultStringOutput: IValueDescriptorTransfer;
|
|
3978
|
+
|
|
3979
|
+
export declare const generateHexadecimalTokenOperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
3980
|
+
|
|
3981
|
+
export declare const generateIdentifierOperation: IActionDescriptorTransfer;
|
|
3982
|
+
|
|
3983
|
+
export declare const generateIdentifierOperationAlphabetInput: IValueDescriptorTransfer;
|
|
3984
|
+
|
|
3985
|
+
export declare const generateIdentifierOperationAlphabetInputParentRef: IActionDescriptorReference;
|
|
3986
|
+
|
|
3987
|
+
export declare const generateIdentifierOperationAlphabetInputType: IDataTypeTransfer;
|
|
3988
|
+
|
|
3989
|
+
export declare const generateIdentifierOperationAlphabetInputTypeParentRef: IValueDescriptorReference;
|
|
3990
|
+
|
|
3991
|
+
export declare const generateIdentifierOperationError: IValueDescriptorTransfer;
|
|
3992
|
+
|
|
3993
|
+
export declare const generateIdentifierOperationErrorParentRef: IActionDescriptorReference;
|
|
3994
|
+
|
|
3995
|
+
export declare const generateIdentifierOperationLengthInput: IValueDescriptorTransfer;
|
|
3996
|
+
|
|
3997
|
+
export declare const generateIdentifierOperationLengthInputParentRef: IActionDescriptorReference;
|
|
3998
|
+
|
|
3999
|
+
export declare const generateIdentifierOperationLengthInputType: IDataTypeTransfer;
|
|
4000
|
+
|
|
4001
|
+
export declare const generateIdentifierOperationLengthInputTypeParentRef: IValueDescriptorReference;
|
|
4002
|
+
|
|
4003
|
+
export declare const generateIdentifierOperationResultStringDataType: IDataTypeTransfer;
|
|
4004
|
+
|
|
4005
|
+
export declare const generateIdentifierOperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4006
|
+
|
|
4007
|
+
export declare const generateIdentifierOperationResultStringOutput: IValueDescriptorTransfer;
|
|
4008
|
+
|
|
4009
|
+
export declare const generateIdentifierOperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4010
|
+
|
|
3765
4011
|
export declare function generateIdFromStrategy(entity: EntityState, project: ProjectState, strategy?: 'uuid' | 'semantic'): string;
|
|
3766
4012
|
|
|
3767
4013
|
export declare function generateMutablePropertiesExplanation(entityToUpdate: EntityState): string;
|
|
3768
4014
|
|
|
3769
4015
|
export declare function generatePlaceholderValueStore(id: string, project: ProjectState): IValueStoreClient;
|
|
3770
4016
|
|
|
4017
|
+
export declare const generateRandomAlphanumericOperation: IActionDescriptorTransfer;
|
|
4018
|
+
|
|
4019
|
+
export declare const generateRandomAlphanumericOperationError: IValueDescriptorTransfer;
|
|
4020
|
+
|
|
4021
|
+
export declare const generateRandomAlphanumericOperationErrorParentRef: IActionDescriptorReference;
|
|
4022
|
+
|
|
4023
|
+
export declare const generateRandomAlphanumericOperationLengthInput: IValueDescriptorTransfer;
|
|
4024
|
+
|
|
4025
|
+
export declare const generateRandomAlphanumericOperationLengthInputParentRef: IActionDescriptorReference;
|
|
4026
|
+
|
|
4027
|
+
export declare const generateRandomAlphanumericOperationLengthInputType: IDataTypeTransfer;
|
|
4028
|
+
|
|
4029
|
+
export declare const generateRandomAlphanumericOperationLengthInputTypeParentRef: IValueDescriptorReference;
|
|
4030
|
+
|
|
4031
|
+
export declare const generateRandomAlphanumericOperationResultStringDataType: IDataTypeTransfer;
|
|
4032
|
+
|
|
4033
|
+
export declare const generateRandomAlphanumericOperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4034
|
+
|
|
4035
|
+
export declare const generateRandomAlphanumericOperationResultStringOutput: IValueDescriptorTransfer;
|
|
4036
|
+
|
|
4037
|
+
export declare const generateRandomAlphanumericOperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4038
|
+
|
|
4039
|
+
export declare const generateRandomBase62Operation: IActionDescriptorTransfer;
|
|
4040
|
+
|
|
4041
|
+
export declare const generateRandomBase62OperationError: IValueDescriptorTransfer;
|
|
4042
|
+
|
|
4043
|
+
export declare const generateRandomBase62OperationErrorParentRef: IActionDescriptorReference;
|
|
4044
|
+
|
|
4045
|
+
export declare const generateRandomBase62OperationLengthInput: IValueDescriptorTransfer;
|
|
4046
|
+
|
|
4047
|
+
export declare const generateRandomBase62OperationLengthInputParentRef: IActionDescriptorReference;
|
|
4048
|
+
|
|
4049
|
+
export declare const generateRandomBase62OperationLengthInputType: IDataTypeTransfer;
|
|
4050
|
+
|
|
4051
|
+
export declare const generateRandomBase62OperationLengthInputTypeParentRef: IValueDescriptorReference;
|
|
4052
|
+
|
|
4053
|
+
export declare const generateRandomBase62OperationResultStringDataType: IDataTypeTransfer;
|
|
4054
|
+
|
|
4055
|
+
export declare const generateRandomBase62OperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4056
|
+
|
|
4057
|
+
export declare const generateRandomBase62OperationResultStringOutput: IValueDescriptorTransfer;
|
|
4058
|
+
|
|
4059
|
+
export declare const generateRandomBase62OperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4060
|
+
|
|
4061
|
+
export declare const generateRandomBase64Operation: IActionDescriptorTransfer;
|
|
4062
|
+
|
|
4063
|
+
export declare const generateRandomBase64OperationError: IValueDescriptorTransfer;
|
|
4064
|
+
|
|
4065
|
+
export declare const generateRandomBase64OperationErrorParentRef: IActionDescriptorReference;
|
|
4066
|
+
|
|
4067
|
+
export declare const generateRandomBase64OperationLengthInput: IValueDescriptorTransfer;
|
|
4068
|
+
|
|
4069
|
+
export declare const generateRandomBase64OperationLengthInputParentRef: IActionDescriptorReference;
|
|
4070
|
+
|
|
4071
|
+
export declare const generateRandomBase64OperationLengthInputType: IDataTypeTransfer;
|
|
4072
|
+
|
|
4073
|
+
export declare const generateRandomBase64OperationLengthInputTypeParentRef: IValueDescriptorReference;
|
|
4074
|
+
|
|
4075
|
+
export declare const generateRandomBase64OperationResultStringDataType: IDataTypeTransfer;
|
|
4076
|
+
|
|
4077
|
+
export declare const generateRandomBase64OperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4078
|
+
|
|
4079
|
+
export declare const generateRandomBase64OperationResultStringOutput: IValueDescriptorTransfer;
|
|
4080
|
+
|
|
4081
|
+
export declare const generateRandomBase64OperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4082
|
+
|
|
3771
4083
|
export declare function generateRandomBoolean(_: IAutogenerationRandomBoolean): boolean;
|
|
3772
4084
|
|
|
3773
4085
|
export declare function generateRandomDate(options: IAutogenerationRandomDate): Date;
|
|
@@ -3778,6 +4090,68 @@ export declare function generateRandomDateBefore(options: IAutogenerationRandomD
|
|
|
3778
4090
|
|
|
3779
4091
|
export declare function generateRandomDateBetweenRange(options: IAutogenerationRandomDateRange): Date;
|
|
3780
4092
|
|
|
4093
|
+
export declare const generateRandomFloatOperation: IActionDescriptorTransfer;
|
|
4094
|
+
|
|
4095
|
+
export declare const generateRandomFloatOperationError: IValueDescriptorTransfer;
|
|
4096
|
+
|
|
4097
|
+
export declare const generateRandomFloatOperationErrorParentRef: IActionDescriptorReference;
|
|
4098
|
+
|
|
4099
|
+
export declare const generateRandomFloatOperationResultNumberDataType: IDataTypeTransfer;
|
|
4100
|
+
|
|
4101
|
+
export declare const generateRandomFloatOperationResultNumberDataTypeParentRef: IValueDescriptorReference;
|
|
4102
|
+
|
|
4103
|
+
export declare const generateRandomFloatOperationResultNumberOutput: IValueDescriptorTransfer;
|
|
4104
|
+
|
|
4105
|
+
export declare const generateRandomFloatOperationResultNumberOutputParentRef: IActionDescriptorReference;
|
|
4106
|
+
|
|
4107
|
+
export declare const generateRandomHexadecimalOperation: IActionDescriptorTransfer;
|
|
4108
|
+
|
|
4109
|
+
export declare const generateRandomHexadecimalOperationError: IValueDescriptorTransfer;
|
|
4110
|
+
|
|
4111
|
+
export declare const generateRandomHexadecimalOperationErrorParentRef: IActionDescriptorReference;
|
|
4112
|
+
|
|
4113
|
+
export declare const generateRandomHexadecimalOperationLengthInput: IValueDescriptorTransfer;
|
|
4114
|
+
|
|
4115
|
+
export declare const generateRandomHexadecimalOperationLengthInputParentRef: IActionDescriptorReference;
|
|
4116
|
+
|
|
4117
|
+
export declare const generateRandomHexadecimalOperationLengthInputType: IDataTypeTransfer;
|
|
4118
|
+
|
|
4119
|
+
export declare const generateRandomHexadecimalOperationLengthInputTypeParentRef: IValueDescriptorReference;
|
|
4120
|
+
|
|
4121
|
+
export declare const generateRandomHexadecimalOperationResultStringDataType: IDataTypeTransfer;
|
|
4122
|
+
|
|
4123
|
+
export declare const generateRandomHexadecimalOperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4124
|
+
|
|
4125
|
+
export declare const generateRandomHexadecimalOperationResultStringOutput: IValueDescriptorTransfer;
|
|
4126
|
+
|
|
4127
|
+
export declare const generateRandomHexadecimalOperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4128
|
+
|
|
4129
|
+
export declare const generateRandomIntegerOperation: IActionDescriptorTransfer;
|
|
4130
|
+
|
|
4131
|
+
export declare const generateRandomIntegerOperationMaxValueInput: IValueDescriptorTransfer;
|
|
4132
|
+
|
|
4133
|
+
export declare const generateRandomIntegerOperationMaxValueInputParentRef: IActionDescriptorReference;
|
|
4134
|
+
|
|
4135
|
+
export declare const generateRandomIntegerOperationMaxValueInputType: IDataTypeTransfer;
|
|
4136
|
+
|
|
4137
|
+
export declare const generateRandomIntegerOperationMaxValueInputTypeParentRef: IValueDescriptorReference;
|
|
4138
|
+
|
|
4139
|
+
export declare const generateRandomIntegerOperationMinValueInput: IValueDescriptorTransfer;
|
|
4140
|
+
|
|
4141
|
+
export declare const generateRandomIntegerOperationMinValueInputParentRef: IActionDescriptorReference;
|
|
4142
|
+
|
|
4143
|
+
export declare const generateRandomIntegerOperationMinValueInputType: IDataTypeTransfer;
|
|
4144
|
+
|
|
4145
|
+
export declare const generateRandomIntegerOperationMinValueInputTypeParentRef: IValueDescriptorReference;
|
|
4146
|
+
|
|
4147
|
+
export declare const generateRandomIntegerOperationResultNumberDataType: IDataTypeTransfer;
|
|
4148
|
+
|
|
4149
|
+
export declare const generateRandomIntegerOperationResultNumberDataTypeParentRef: IValueDescriptorReference;
|
|
4150
|
+
|
|
4151
|
+
export declare const generateRandomIntegerOperationResultNumberOutput: IValueDescriptorTransfer;
|
|
4152
|
+
|
|
4153
|
+
export declare const generateRandomIntegerOperationResultNumberOutputParentRef: IActionDescriptorReference;
|
|
4154
|
+
|
|
3781
4155
|
export declare function generateRandomNumber(options: IAutogenerationRandomNumber): number;
|
|
3782
4156
|
|
|
3783
4157
|
export declare function generateRandomNumberAfter(options: IAutogenerationRandomNumberFrom): number;
|
|
@@ -3794,6 +4168,34 @@ export declare function generateRandomTextBefore(options: IAutogenerationRandomT
|
|
|
3794
4168
|
|
|
3795
4169
|
export declare function generateRandomTextBetweenRange(options: IAutogenerationRandomTextBetween): string;
|
|
3796
4170
|
|
|
4171
|
+
export declare const generateRandomUUIDv4Operation: IActionDescriptorTransfer;
|
|
4172
|
+
|
|
4173
|
+
export declare const generateRandomUUIDv4OperationError: IValueDescriptorTransfer;
|
|
4174
|
+
|
|
4175
|
+
export declare const generateRandomUUIDv4OperationErrorParentRef: IActionDescriptorReference;
|
|
4176
|
+
|
|
4177
|
+
export declare const generateRandomUUIDv4OperationResultStringDataType: IDataTypeTransfer;
|
|
4178
|
+
|
|
4179
|
+
export declare const generateRandomUUIDv4OperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4180
|
+
|
|
4181
|
+
export declare const generateRandomUUIDv4OperationResultStringOutput: IValueDescriptorTransfer;
|
|
4182
|
+
|
|
4183
|
+
export declare const generateRandomUUIDv4OperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4184
|
+
|
|
4185
|
+
export declare const generateShortIdentifierOperation: IActionDescriptorTransfer;
|
|
4186
|
+
|
|
4187
|
+
export declare const generateShortIdentifierOperationError: IValueDescriptorTransfer;
|
|
4188
|
+
|
|
4189
|
+
export declare const generateShortIdentifierOperationErrorParentRef: IActionDescriptorReference;
|
|
4190
|
+
|
|
4191
|
+
export declare const generateShortIdentifierOperationResultStringDataType: IDataTypeTransfer;
|
|
4192
|
+
|
|
4193
|
+
export declare const generateShortIdentifierOperationResultStringDataTypeParentRef: IValueDescriptorReference;
|
|
4194
|
+
|
|
4195
|
+
export declare const generateShortIdentifierOperationResultStringOutput: IValueDescriptorTransfer;
|
|
4196
|
+
|
|
4197
|
+
export declare const generateShortIdentifierOperationResultStringOutputParentRef: IActionDescriptorReference;
|
|
4198
|
+
|
|
3797
4199
|
export declare function generateStandaloneIfDefault(dynamicValue: IDynamicValue): IDynamicValue;
|
|
3798
4200
|
|
|
3799
4201
|
export declare function generateUniqueUUID(): string;
|
|
@@ -10157,6 +10559,7 @@ export declare interface IProperty_meta extends IProperty_base, IBaseVariable_me
|
|
|
10157
10559
|
hidden: boolean;
|
|
10158
10560
|
private: boolean;
|
|
10159
10561
|
abstract: boolean;
|
|
10562
|
+
interactive: boolean;
|
|
10160
10563
|
static: boolean;
|
|
10161
10564
|
required: boolean;
|
|
10162
10565
|
constant: boolean;
|
|
@@ -10169,6 +10572,7 @@ export declare interface IPropertyGenerationTarget extends IProperty_base, IBase
|
|
|
10169
10572
|
static?: boolean;
|
|
10170
10573
|
required?: boolean;
|
|
10171
10574
|
implements?: EntityId;
|
|
10575
|
+
interactive?: boolean;
|
|
10172
10576
|
extends?: EntityId;
|
|
10173
10577
|
parent: EntityId;
|
|
10174
10578
|
}
|
|
@@ -10179,7 +10583,6 @@ export declare interface IPropertyReference extends IGenericReference {
|
|
|
10179
10583
|
|
|
10180
10584
|
export declare interface IPropertyShallowTransfer extends IProperty_meta, IBaseVariableShallowTransfer {
|
|
10181
10585
|
type: EntityType.Property;
|
|
10182
|
-
constant: boolean;
|
|
10183
10586
|
implements: IPropertyReference | null;
|
|
10184
10587
|
extends: IPropertyReference | null;
|
|
10185
10588
|
parent: IDefinitionEntityReference | IBuiltInBaseEntityReference | IPrimitiveEntityReference;
|
|
@@ -10187,7 +10590,6 @@ export declare interface IPropertyShallowTransfer extends IProperty_meta, IBaseV
|
|
|
10187
10590
|
|
|
10188
10591
|
export declare interface IPropertyTransfer extends IProperty_meta, IBaseVariableTransfer {
|
|
10189
10592
|
type: EntityType.Property;
|
|
10190
|
-
constant: boolean;
|
|
10191
10593
|
implements: IProperty | IPropertyTransfer | null;
|
|
10192
10594
|
extends: IProperty | IPropertyTransfer | null;
|
|
10193
10595
|
defaultValue: ILiteralValue | ILiteralValueTransfer | null;
|
|
@@ -11794,7 +12196,7 @@ export declare class OperationState extends VersionedState implements IOperation
|
|
|
11794
12196
|
syncOutputs(changeSet?: ChangeSet | null): IChangeSet<OperationState>;
|
|
11795
12197
|
}
|
|
11796
12198
|
|
|
11797
|
-
export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | ExecutionOperations | EntityOperations | HTTPOperations;
|
|
12199
|
+
export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | ExecutionOperations | EntityOperations | HTTPOperations | RandomnessOperations;
|
|
11798
12200
|
|
|
11799
12201
|
export declare type OperationTypesUnion = IOperation | IOperationTransfer | IOperationShallowTransfer | IOperationGenerationTarget;
|
|
11800
12202
|
|
|
@@ -12496,6 +12898,7 @@ export declare class PropertyState extends VersionedState implements IProperty,
|
|
|
12496
12898
|
static: boolean;
|
|
12497
12899
|
required: boolean;
|
|
12498
12900
|
constant: boolean;
|
|
12901
|
+
interactive: boolean;
|
|
12499
12902
|
readonly type: EntityType.Property;
|
|
12500
12903
|
hidden: boolean;
|
|
12501
12904
|
defaultValue: LiteralValueState | null;
|
|
@@ -12678,6 +13081,23 @@ export declare enum PUBLISHING_DISABLED_REASONS {
|
|
|
12678
13081
|
PROJECT_PUBLICATION_ALREADY_ONGOING = "PROJECT_PUBLICATION_ALREADY_ONGOING"
|
|
12679
13082
|
}
|
|
12680
13083
|
|
|
13084
|
+
export declare const RANDOMNESS_OPERATIONS: {
|
|
13085
|
+
[key: string]: IActionDescriptorTransfer;
|
|
13086
|
+
};
|
|
13087
|
+
|
|
13088
|
+
export declare enum RandomnessOperations {
|
|
13089
|
+
GenerateRandomInteger = "generate-random-integer",
|
|
13090
|
+
GenerateRandomFloat = "generate-random-float",
|
|
13091
|
+
GenerateRandomHexadecimal = "generate-random-hexadecimal",
|
|
13092
|
+
GenerateRandomBase62 = "generate-random-base62",
|
|
13093
|
+
GenerateRandomBase64 = "generate-random-base64",
|
|
13094
|
+
GenerateRandomAlphanumeric = "generate-random-alphanumeric",
|
|
13095
|
+
GenerateIdentifier = "generate-identifier",
|
|
13096
|
+
GenerateRandomUUIDv4 = "generate-random-uuidv4",
|
|
13097
|
+
GenerateShortIdentifier = "generate-short-identifier",
|
|
13098
|
+
GenerateHexadecimalToken = "generate-hexadecimal-token"
|
|
13099
|
+
}
|
|
13100
|
+
|
|
12681
13101
|
export declare const READ_ONLY_ENTITY_PERSISTANCE_REPOSITORY: IReadOnlyEntityPersistanceRepository;
|
|
12682
13102
|
|
|
12683
13103
|
export declare const READABLE_ENTITY_TYPES: {
|