@elyx-code/project-logic-tree 0.0.7069 → 0.0.7071
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.cjs +304 -304
- package/dist/index.d.ts +508 -14
- package/dist/index.js +52057 -49219
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -778,7 +778,8 @@ export declare enum BaseEntityNames {
|
|
|
778
778
|
CONTAINER_COMPUTE_ENTITY = "BUILT_IN_CONTAINER_COMPUTE_ENTITY",
|
|
779
779
|
SHARED_DRIVE_ENTITY = "BUILT_IN_SHARED_DRIVE_ENTITY",
|
|
780
780
|
SHARED_DRIVE_MOUNT_ENTITY = "BUILT_IN_SHARED_DRIVE_MOUNT_ENTITY",
|
|
781
|
-
CONTAINER_AUTH_REGISTRY_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_CONTAINER-REGISTRY_AUTH"
|
|
781
|
+
CONTAINER_AUTH_REGISTRY_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_CONTAINER-REGISTRY_AUTH",
|
|
782
|
+
CLOUD_FILE_SYSTEM_BUCKET = "BUILT_IN_CLOUD_FILE_SYSTEM_BUCKET_ENTITY"
|
|
782
783
|
}
|
|
783
784
|
|
|
784
785
|
export declare class BaseExtensionState implements IExtensionState {
|
|
@@ -1027,6 +1028,20 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1027
1028
|
}
|
|
1028
1029
|
export { breakStatementValidation }
|
|
1029
1030
|
|
|
1031
|
+
export declare const bucketBuiltInBaseEntityAllowedOriginsProperty: IPropertyTransfer;
|
|
1032
|
+
|
|
1033
|
+
export declare const bucketBuiltInBaseEntityAllowedOriginsPropertyDataTypeRef: IDataTypeReference;
|
|
1034
|
+
|
|
1035
|
+
export declare const bucketBuiltInBaseEntityAllowedOriginsPropertyRef: IPropertyReference;
|
|
1036
|
+
|
|
1037
|
+
export declare const bucketBuiltInBaseEntityPublicReadProperty: IPropertyTransfer;
|
|
1038
|
+
|
|
1039
|
+
export declare const bucketBuiltInBaseEntityPublicReadPropertyDataTypeRef: IDataTypeReference;
|
|
1040
|
+
|
|
1041
|
+
export declare const bucketBuiltInBaseEntityPublicReadPropertyRef: IPropertyReference;
|
|
1042
|
+
|
|
1043
|
+
export declare const bucketBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
1044
|
+
|
|
1030
1045
|
/** Builds a compact JWT signed with HMAC (HS256/384/512). */
|
|
1031
1046
|
export declare function buildJwtHmac(payload: JwtPayload, secret: Bytes, { alg, includeIat, expiresInSeconds, notBeforeSeconds, issuer, subject, audience, jwtid, header, }?: BuildJwtHmacOptions): Promise<string>;
|
|
1032
1047
|
|
|
@@ -1102,6 +1117,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1102
1117
|
id: string;
|
|
1103
1118
|
properties: {};
|
|
1104
1119
|
};
|
|
1120
|
+
"file-reference": {
|
|
1121
|
+
id: string;
|
|
1122
|
+
properties: {};
|
|
1123
|
+
};
|
|
1105
1124
|
};
|
|
1106
1125
|
"value-descriptor": {
|
|
1107
1126
|
"search-error-output-descriptor-id": {
|
|
@@ -1112,6 +1131,18 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1112
1131
|
};
|
|
1113
1132
|
};
|
|
1114
1133
|
"built-in-base-entity": {
|
|
1134
|
+
BUILT_IN_CLOUD_FILE_SYSTEM_BUCKET_ENTITY: {
|
|
1135
|
+
id: BaseEntityNames;
|
|
1136
|
+
properties: {
|
|
1137
|
+
publicRead: {
|
|
1138
|
+
id: string;
|
|
1139
|
+
};
|
|
1140
|
+
allowedOrigins: {
|
|
1141
|
+
id: string;
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
methods: {};
|
|
1145
|
+
};
|
|
1115
1146
|
BUILT_IN_HTTP_ENDPOINT_ENTITY: {
|
|
1116
1147
|
id: BaseEntityNames;
|
|
1117
1148
|
properties: {
|
|
@@ -4180,6 +4211,52 @@ export declare enum BaseValueDescriptorIds {
|
|
|
4180
4211
|
id: string;
|
|
4181
4212
|
};
|
|
4182
4213
|
};
|
|
4214
|
+
"op-data-type-bytes-to-file-reference": {
|
|
4215
|
+
id: DataTypeOperations;
|
|
4216
|
+
inputs: {
|
|
4217
|
+
bytes: {
|
|
4218
|
+
id: string;
|
|
4219
|
+
dataType: {
|
|
4220
|
+
id: string;
|
|
4221
|
+
};
|
|
4222
|
+
};
|
|
4223
|
+
name: {
|
|
4224
|
+
id: string;
|
|
4225
|
+
dataType: {
|
|
4226
|
+
id: string;
|
|
4227
|
+
};
|
|
4228
|
+
};
|
|
4229
|
+
mimeType: {
|
|
4230
|
+
id: string;
|
|
4231
|
+
dataType: {
|
|
4232
|
+
id: string;
|
|
4233
|
+
};
|
|
4234
|
+
};
|
|
4235
|
+
};
|
|
4236
|
+
dataType: {
|
|
4237
|
+
id: string;
|
|
4238
|
+
};
|
|
4239
|
+
error: {
|
|
4240
|
+
id: string;
|
|
4241
|
+
};
|
|
4242
|
+
};
|
|
4243
|
+
"op-data-type-file-reference-to-bytes": {
|
|
4244
|
+
id: DataTypeOperations;
|
|
4245
|
+
inputs: {
|
|
4246
|
+
fileReference: {
|
|
4247
|
+
id: string;
|
|
4248
|
+
dataType: {
|
|
4249
|
+
id: string;
|
|
4250
|
+
};
|
|
4251
|
+
};
|
|
4252
|
+
};
|
|
4253
|
+
dataType: {
|
|
4254
|
+
id: string;
|
|
4255
|
+
};
|
|
4256
|
+
error: {
|
|
4257
|
+
id: string;
|
|
4258
|
+
};
|
|
4259
|
+
};
|
|
4183
4260
|
"op-data-type-from-bytes-to-string": {
|
|
4184
4261
|
id: DataTypeOperations;
|
|
4185
4262
|
inputs: {
|
|
@@ -4782,6 +4859,191 @@ export declare enum BaseValueDescriptorIds {
|
|
|
4782
4859
|
id: string;
|
|
4783
4860
|
};
|
|
4784
4861
|
};
|
|
4862
|
+
"op-cloud-file-system-upload-file": {
|
|
4863
|
+
id: CloudFileSystemOperations;
|
|
4864
|
+
inputs: {
|
|
4865
|
+
bucket: {
|
|
4866
|
+
id: string;
|
|
4867
|
+
dataType: {
|
|
4868
|
+
id: string;
|
|
4869
|
+
};
|
|
4870
|
+
};
|
|
4871
|
+
file: {
|
|
4872
|
+
id: string;
|
|
4873
|
+
dataType: {
|
|
4874
|
+
id: string;
|
|
4875
|
+
};
|
|
4876
|
+
};
|
|
4877
|
+
key: {
|
|
4878
|
+
id: string;
|
|
4879
|
+
dataType: {
|
|
4880
|
+
id: string;
|
|
4881
|
+
};
|
|
4882
|
+
};
|
|
4883
|
+
};
|
|
4884
|
+
dataType: {
|
|
4885
|
+
id: string;
|
|
4886
|
+
};
|
|
4887
|
+
error: {
|
|
4888
|
+
id: string;
|
|
4889
|
+
};
|
|
4890
|
+
};
|
|
4891
|
+
"op-cloud-file-system-download-file": {
|
|
4892
|
+
id: CloudFileSystemOperations;
|
|
4893
|
+
inputs: {
|
|
4894
|
+
bucket: {
|
|
4895
|
+
id: string;
|
|
4896
|
+
dataType: {
|
|
4897
|
+
id: string;
|
|
4898
|
+
};
|
|
4899
|
+
};
|
|
4900
|
+
key: {
|
|
4901
|
+
id: string;
|
|
4902
|
+
dataType: {
|
|
4903
|
+
id: string;
|
|
4904
|
+
};
|
|
4905
|
+
};
|
|
4906
|
+
};
|
|
4907
|
+
dataType: {
|
|
4908
|
+
id: string;
|
|
4909
|
+
};
|
|
4910
|
+
error: {
|
|
4911
|
+
id: string;
|
|
4912
|
+
};
|
|
4913
|
+
};
|
|
4914
|
+
"op-cloud-file-system-list-files": {
|
|
4915
|
+
id: CloudFileSystemOperations;
|
|
4916
|
+
inputs: {
|
|
4917
|
+
bucket: {
|
|
4918
|
+
id: string;
|
|
4919
|
+
dataType: {
|
|
4920
|
+
id: string;
|
|
4921
|
+
};
|
|
4922
|
+
};
|
|
4923
|
+
prefix: {
|
|
4924
|
+
id: string;
|
|
4925
|
+
dataType: {
|
|
4926
|
+
id: string;
|
|
4927
|
+
};
|
|
4928
|
+
};
|
|
4929
|
+
};
|
|
4930
|
+
dataType: {
|
|
4931
|
+
id: string;
|
|
4932
|
+
};
|
|
4933
|
+
error: {
|
|
4934
|
+
id: string;
|
|
4935
|
+
};
|
|
4936
|
+
};
|
|
4937
|
+
"op-cloud-file-system-delete-file": {
|
|
4938
|
+
id: CloudFileSystemOperations;
|
|
4939
|
+
inputs: {
|
|
4940
|
+
bucket: {
|
|
4941
|
+
id: string;
|
|
4942
|
+
dataType: {
|
|
4943
|
+
id: string;
|
|
4944
|
+
};
|
|
4945
|
+
};
|
|
4946
|
+
key: {
|
|
4947
|
+
id: string;
|
|
4948
|
+
dataType: {
|
|
4949
|
+
id: string;
|
|
4950
|
+
};
|
|
4951
|
+
};
|
|
4952
|
+
};
|
|
4953
|
+
dataType: {
|
|
4954
|
+
id: string;
|
|
4955
|
+
};
|
|
4956
|
+
error: {
|
|
4957
|
+
id: string;
|
|
4958
|
+
};
|
|
4959
|
+
};
|
|
4960
|
+
"op-cloud-file-system-copy-file": {
|
|
4961
|
+
id: CloudFileSystemOperations;
|
|
4962
|
+
inputs: {
|
|
4963
|
+
bucket: {
|
|
4964
|
+
id: string;
|
|
4965
|
+
dataType: {
|
|
4966
|
+
id: string;
|
|
4967
|
+
};
|
|
4968
|
+
};
|
|
4969
|
+
sourceKey: {
|
|
4970
|
+
id: string;
|
|
4971
|
+
dataType: {
|
|
4972
|
+
id: string;
|
|
4973
|
+
};
|
|
4974
|
+
};
|
|
4975
|
+
destinationKey: {
|
|
4976
|
+
id: string;
|
|
4977
|
+
dataType: {
|
|
4978
|
+
id: string;
|
|
4979
|
+
};
|
|
4980
|
+
};
|
|
4981
|
+
};
|
|
4982
|
+
dataType: {
|
|
4983
|
+
id: string;
|
|
4984
|
+
};
|
|
4985
|
+
error: {
|
|
4986
|
+
id: string;
|
|
4987
|
+
};
|
|
4988
|
+
};
|
|
4989
|
+
"op-cloud-file-system-move-file": {
|
|
4990
|
+
id: CloudFileSystemOperations;
|
|
4991
|
+
inputs: {
|
|
4992
|
+
bucket: {
|
|
4993
|
+
id: string;
|
|
4994
|
+
dataType: {
|
|
4995
|
+
id: string;
|
|
4996
|
+
};
|
|
4997
|
+
};
|
|
4998
|
+
sourceKey: {
|
|
4999
|
+
id: string;
|
|
5000
|
+
dataType: {
|
|
5001
|
+
id: string;
|
|
5002
|
+
};
|
|
5003
|
+
};
|
|
5004
|
+
destinationKey: {
|
|
5005
|
+
id: string;
|
|
5006
|
+
dataType: {
|
|
5007
|
+
id: string;
|
|
5008
|
+
};
|
|
5009
|
+
};
|
|
5010
|
+
};
|
|
5011
|
+
dataType: {
|
|
5012
|
+
id: string;
|
|
5013
|
+
};
|
|
5014
|
+
error: {
|
|
5015
|
+
id: string;
|
|
5016
|
+
};
|
|
5017
|
+
};
|
|
5018
|
+
"op-cloud-file-system-rename-file": {
|
|
5019
|
+
id: CloudFileSystemOperations;
|
|
5020
|
+
inputs: {
|
|
5021
|
+
bucket: {
|
|
5022
|
+
id: string;
|
|
5023
|
+
dataType: {
|
|
5024
|
+
id: string;
|
|
5025
|
+
};
|
|
5026
|
+
};
|
|
5027
|
+
key: {
|
|
5028
|
+
id: string;
|
|
5029
|
+
dataType: {
|
|
5030
|
+
id: string;
|
|
5031
|
+
};
|
|
5032
|
+
};
|
|
5033
|
+
newName: {
|
|
5034
|
+
id: string;
|
|
5035
|
+
dataType: {
|
|
5036
|
+
id: string;
|
|
5037
|
+
};
|
|
5038
|
+
};
|
|
5039
|
+
};
|
|
5040
|
+
dataType: {
|
|
5041
|
+
id: string;
|
|
5042
|
+
};
|
|
5043
|
+
error: {
|
|
5044
|
+
id: string;
|
|
5045
|
+
};
|
|
5046
|
+
};
|
|
4785
5047
|
"op-sql-execute-query": {
|
|
4786
5048
|
id: SQLOperations;
|
|
4787
5049
|
inputs: {
|
|
@@ -10336,6 +10598,136 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10336
10598
|
maps: Map<EntityId, EntityId>;
|
|
10337
10599
|
}>;
|
|
10338
10600
|
|
|
10601
|
+
export declare const CLOUD_FILE_SYSTEM_OPERATIONS: {
|
|
10602
|
+
[key: string]: IActionDescriptorTransfer;
|
|
10603
|
+
};
|
|
10604
|
+
|
|
10605
|
+
export declare const cloudFileSystemBucketBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
10606
|
+
|
|
10607
|
+
export declare const cloudFileSystemCopyFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10608
|
+
|
|
10609
|
+
export declare const cloudFileSystemCopyFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
10610
|
+
|
|
10611
|
+
export declare const cloudFileSystemCopyFileDestinationKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10612
|
+
|
|
10613
|
+
export declare const cloudFileSystemCopyFileDestinationKeyInputTransfer: IValueDescriptorTransfer;
|
|
10614
|
+
|
|
10615
|
+
export declare const cloudFileSystemCopyFileOperation: IActionDescriptorTransfer;
|
|
10616
|
+
|
|
10617
|
+
export declare const cloudFileSystemCopyFileOperationError: IValueDescriptorTransfer;
|
|
10618
|
+
|
|
10619
|
+
export declare const cloudFileSystemCopyFileResponseDataTypeTransfer: null;
|
|
10620
|
+
|
|
10621
|
+
export declare const cloudFileSystemCopyFileSourceKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10622
|
+
|
|
10623
|
+
export declare const cloudFileSystemCopyFileSourceKeyInputTransfer: IValueDescriptorTransfer;
|
|
10624
|
+
|
|
10625
|
+
export declare const cloudFileSystemDeleteFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10626
|
+
|
|
10627
|
+
export declare const cloudFileSystemDeleteFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
10628
|
+
|
|
10629
|
+
export declare const cloudFileSystemDeleteFileKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10630
|
+
|
|
10631
|
+
export declare const cloudFileSystemDeleteFileKeyInputTransfer: IValueDescriptorTransfer;
|
|
10632
|
+
|
|
10633
|
+
export declare const cloudFileSystemDeleteFileOperation: IActionDescriptorTransfer;
|
|
10634
|
+
|
|
10635
|
+
export declare const cloudFileSystemDeleteFileOperationError: IValueDescriptorTransfer;
|
|
10636
|
+
|
|
10637
|
+
export declare const cloudFileSystemDeleteFileResponseDataTypeTransfer: null;
|
|
10638
|
+
|
|
10639
|
+
export declare const cloudFileSystemDownloadFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10640
|
+
|
|
10641
|
+
export declare const cloudFileSystemDownloadFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
10642
|
+
|
|
10643
|
+
export declare const cloudFileSystemDownloadFileKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10644
|
+
|
|
10645
|
+
export declare const cloudFileSystemDownloadFileKeyInputTransfer: IValueDescriptorTransfer;
|
|
10646
|
+
|
|
10647
|
+
export declare const cloudFileSystemDownloadFileOperation: IActionDescriptorTransfer;
|
|
10648
|
+
|
|
10649
|
+
export declare const cloudFileSystemDownloadFileOperationError: IValueDescriptorTransfer;
|
|
10650
|
+
|
|
10651
|
+
export declare const cloudFileSystemDownloadFileResponseDataTypeTransfer: IDataTypeTransfer;
|
|
10652
|
+
|
|
10653
|
+
export declare const cloudFileSystemListFilesBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10654
|
+
|
|
10655
|
+
export declare const cloudFileSystemListFilesBucketInputTransfer: IValueDescriptorTransfer;
|
|
10656
|
+
|
|
10657
|
+
export declare const cloudFileSystemListFilesOperation: IActionDescriptorTransfer;
|
|
10658
|
+
|
|
10659
|
+
export declare const cloudFileSystemListFilesOperationError: IValueDescriptorTransfer;
|
|
10660
|
+
|
|
10661
|
+
export declare const cloudFileSystemListFilesPrefixInputDataTypeTransfer: IDataTypeTransfer;
|
|
10662
|
+
|
|
10663
|
+
export declare const cloudFileSystemListFilesPrefixInputTransfer: IValueDescriptorTransfer;
|
|
10664
|
+
|
|
10665
|
+
export declare const cloudFileSystemListFilesResponseDataTypeTransfer: IDataTypeTransfer;
|
|
10666
|
+
|
|
10667
|
+
export declare const cloudFileSystemMoveFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10668
|
+
|
|
10669
|
+
export declare const cloudFileSystemMoveFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
10670
|
+
|
|
10671
|
+
export declare const cloudFileSystemMoveFileDestinationKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10672
|
+
|
|
10673
|
+
export declare const cloudFileSystemMoveFileDestinationKeyInputTransfer: IValueDescriptorTransfer;
|
|
10674
|
+
|
|
10675
|
+
export declare const cloudFileSystemMoveFileOperation: IActionDescriptorTransfer;
|
|
10676
|
+
|
|
10677
|
+
export declare const cloudFileSystemMoveFileOperationError: IValueDescriptorTransfer;
|
|
10678
|
+
|
|
10679
|
+
export declare const cloudFileSystemMoveFileResponseDataTypeTransfer: null;
|
|
10680
|
+
|
|
10681
|
+
export declare const cloudFileSystemMoveFileSourceKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10682
|
+
|
|
10683
|
+
export declare const cloudFileSystemMoveFileSourceKeyInputTransfer: IValueDescriptorTransfer;
|
|
10684
|
+
|
|
10685
|
+
export declare enum CloudFileSystemOperations {
|
|
10686
|
+
UploadFile = "op-cloud-file-system-upload-file",
|
|
10687
|
+
DownloadFile = "op-cloud-file-system-download-file",
|
|
10688
|
+
ListFiles = "op-cloud-file-system-list-files",
|
|
10689
|
+
DeleteFile = "op-cloud-file-system-delete-file",
|
|
10690
|
+
CopyFile = "op-cloud-file-system-copy-file",
|
|
10691
|
+
MoveFile = "op-cloud-file-system-move-file",
|
|
10692
|
+
RenameFile = "op-cloud-file-system-rename-file"
|
|
10693
|
+
}
|
|
10694
|
+
|
|
10695
|
+
export declare const cloudFileSystemRenameFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10696
|
+
|
|
10697
|
+
export declare const cloudFileSystemRenameFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
10698
|
+
|
|
10699
|
+
export declare const cloudFileSystemRenameFileKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10700
|
+
|
|
10701
|
+
export declare const cloudFileSystemRenameFileKeyInputTransfer: IValueDescriptorTransfer;
|
|
10702
|
+
|
|
10703
|
+
export declare const cloudFileSystemRenameFileNewNameInputDataTypeTransfer: IDataTypeTransfer;
|
|
10704
|
+
|
|
10705
|
+
export declare const cloudFileSystemRenameFileNewNameInputTransfer: IValueDescriptorTransfer;
|
|
10706
|
+
|
|
10707
|
+
export declare const cloudFileSystemRenameFileOperation: IActionDescriptorTransfer;
|
|
10708
|
+
|
|
10709
|
+
export declare const cloudFileSystemRenameFileOperationError: IValueDescriptorTransfer;
|
|
10710
|
+
|
|
10711
|
+
export declare const cloudFileSystemRenameFileResponseDataTypeTransfer: null;
|
|
10712
|
+
|
|
10713
|
+
export declare const cloudFileSystemUploadFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10714
|
+
|
|
10715
|
+
export declare const cloudFileSystemUploadFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
10716
|
+
|
|
10717
|
+
export declare const cloudFileSystemUploadFileFileInputDataTypeTransfer: IDataTypeTransfer;
|
|
10718
|
+
|
|
10719
|
+
export declare const cloudFileSystemUploadFileFileInputTransfer: IValueDescriptorTransfer;
|
|
10720
|
+
|
|
10721
|
+
export declare const cloudFileSystemUploadFileKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
10722
|
+
|
|
10723
|
+
export declare const cloudFileSystemUploadFileKeyInputTransfer: IValueDescriptorTransfer;
|
|
10724
|
+
|
|
10725
|
+
export declare const cloudFileSystemUploadFileOperation: IActionDescriptorTransfer;
|
|
10726
|
+
|
|
10727
|
+
export declare const cloudFileSystemUploadFileOperationError: IValueDescriptorTransfer;
|
|
10728
|
+
|
|
10729
|
+
export declare const cloudFileSystemUploadFileResponseDataTypeTransfer: null;
|
|
10730
|
+
|
|
10339
10731
|
export declare class CloudHostedCodebaseInfrastructureResource extends InfrastructureResource implements ICloudHostedCodebaseInfrastructureResource {
|
|
10340
10732
|
resourceType: InfrastructureResourceType.CloudHostedCodebase;
|
|
10341
10733
|
details: ICloudHostedCodebaseDetails | null;
|
|
@@ -11342,6 +11734,24 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11342
11734
|
Function = "function"
|
|
11343
11735
|
}
|
|
11344
11736
|
|
|
11737
|
+
export declare const dataTypeBytesToFileReferenceBytesInput: IValueDescriptorTransfer;
|
|
11738
|
+
|
|
11739
|
+
export declare const dataTypeBytesToFileReferenceBytesInputDT: IDataTypeTransfer;
|
|
11740
|
+
|
|
11741
|
+
export declare const dataTypeBytesToFileReferenceError: IValueDescriptorTransfer;
|
|
11742
|
+
|
|
11743
|
+
export declare const dataTypeBytesToFileReferenceMimeTypeInput: IValueDescriptorTransfer;
|
|
11744
|
+
|
|
11745
|
+
export declare const dataTypeBytesToFileReferenceMimeTypeInputDT: IDataTypeTransfer;
|
|
11746
|
+
|
|
11747
|
+
export declare const dataTypeBytesToFileReferenceNameInput: IValueDescriptorTransfer;
|
|
11748
|
+
|
|
11749
|
+
export declare const dataTypeBytesToFileReferenceNameInputDT: IDataTypeTransfer;
|
|
11750
|
+
|
|
11751
|
+
export declare const dataTypeBytesToFileReferenceOperation: IActionDescriptorTransfer;
|
|
11752
|
+
|
|
11753
|
+
export declare const dataTypeBytesToFileReferenceResponseDT: IDataTypeTransfer;
|
|
11754
|
+
|
|
11345
11755
|
export declare function dataTypeCompatibilityToErrorExplanation(entityWithValueA: EntityWithValueState, entityWithValueB: EntityWithValueState, compatibility: IDataTypeCompatible | IDataTypeIncompatibile): string;
|
|
11346
11756
|
|
|
11347
11757
|
export declare enum DataTypeCompatibilityTypes {
|
|
@@ -11460,6 +11870,16 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11460
11870
|
|
|
11461
11871
|
export declare type DataTypeEntityTransferOption = DataTypeEntityOption | IDefinitionEntityTransfer | IPrimitiveEntityTransfer | IActionDescriptorTransfer | IBuiltInBaseEntityTransfer | ILiteralValueTransfer;
|
|
11462
11872
|
|
|
11873
|
+
export declare const dataTypeFileReferenceToBytesError: IValueDescriptorTransfer;
|
|
11874
|
+
|
|
11875
|
+
export declare const dataTypeFileReferenceToBytesFileInput: IValueDescriptorTransfer;
|
|
11876
|
+
|
|
11877
|
+
export declare const dataTypeFileReferenceToBytesFileInputDT: IDataTypeTransfer;
|
|
11878
|
+
|
|
11879
|
+
export declare const dataTypeFileReferenceToBytesOperation: IActionDescriptorTransfer;
|
|
11880
|
+
|
|
11881
|
+
export declare const dataTypeFileReferenceToBytesResponseDT: IDataTypeTransfer;
|
|
11882
|
+
|
|
11463
11883
|
export declare const dataTypeFromBytesBytes: IValueDescriptorTransfer;
|
|
11464
11884
|
|
|
11465
11885
|
export declare const dataTypeFromBytesBytesDT: IDataTypeTransfer;
|
|
@@ -11497,7 +11917,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11497
11917
|
EncodeBase64Url = "op-data-type-encode-base64url",
|
|
11498
11918
|
DecodeBase64Url = "op-data-type-decode-base64url",
|
|
11499
11919
|
EncodeHex = "op-data-type-encode-hex",
|
|
11500
|
-
DecodeHex = "op-data-type-decode-hex"
|
|
11920
|
+
DecodeHex = "op-data-type-decode-hex",
|
|
11921
|
+
BytesToFileReference = "op-data-type-bytes-to-file-reference",
|
|
11922
|
+
FileReferenceToBytes = "op-data-type-file-reference-to-bytes"
|
|
11501
11923
|
}
|
|
11502
11924
|
|
|
11503
11925
|
export declare enum DataTypeParentChildRelation {
|
|
@@ -12242,6 +12664,13 @@ export declare enum BaseValueDescriptorIds {
|
|
|
12242
12664
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATA_TYPE_DECODE_HEX: string;
|
|
12243
12665
|
BUILT_IN_OPERATIONS_IMPLEMENTATIONS__JSON_PARSE: string;
|
|
12244
12666
|
BUILT_IN_OPERATIONS_IMPLEMENTATIONS__JSON_STRINGIFY: string;
|
|
12667
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_UPLOAD_FILE: string;
|
|
12668
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_DOWNLOAD_FILE: string;
|
|
12669
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_LIST_FILES: string;
|
|
12670
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_DELETE_FILE: string;
|
|
12671
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_COPY_FILE: string;
|
|
12672
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_MOVE_FILE: string;
|
|
12673
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_RENAME_FILE: string;
|
|
12245
12674
|
};
|
|
12246
12675
|
|
|
12247
12676
|
export declare const DEFAULT_PROJECT_INSTANCE_PARENT_CONTEXT: IProjectInstanceParentContext;
|
|
@@ -14866,6 +15295,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14866
15295
|
|
|
14867
15296
|
export declare function fieldTypeToReadableString(fieldType: EntityFieldType): string;
|
|
14868
15297
|
|
|
15298
|
+
export declare const fileReferencePrototype: IPrimitiveEntity;
|
|
15299
|
+
|
|
14869
15300
|
export declare const filesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
14870
15301
|
|
|
14871
15302
|
/**
|
|
@@ -19161,8 +19592,15 @@ export declare enum BaseValueDescriptorIds {
|
|
|
19161
19592
|
delete(key: string): void;
|
|
19162
19593
|
}
|
|
19163
19594
|
|
|
19164
|
-
export declare interface
|
|
19165
|
-
name: PrimitiveTypes.
|
|
19595
|
+
export declare interface IFileReference extends IPrimitiveEntity {
|
|
19596
|
+
name: PrimitiveTypes.FileReference;
|
|
19597
|
+
}
|
|
19598
|
+
|
|
19599
|
+
export declare interface IFileReferenceData {
|
|
19600
|
+
uri: string;
|
|
19601
|
+
name: string;
|
|
19602
|
+
mimeType: string;
|
|
19603
|
+
size: number;
|
|
19166
19604
|
}
|
|
19167
19605
|
|
|
19168
19606
|
export declare interface IFunctionCall extends IFunctionCallTransfer, IChildEntity, ICalledEntity {
|
|
@@ -20353,15 +20791,15 @@ export declare enum BaseValueDescriptorIds {
|
|
|
20353
20791
|
error: any | null;
|
|
20354
20792
|
}
|
|
20355
20793
|
|
|
20356
|
-
export declare interface
|
|
20357
|
-
name: PrimitiveTypes.
|
|
20358
|
-
value:
|
|
20794
|
+
export declare interface IPrimitiveFileReferenceValue extends ILiteralValue {
|
|
20795
|
+
name: PrimitiveTypes.FileReference;
|
|
20796
|
+
value: IFileReferenceData | null;
|
|
20359
20797
|
autogeneration: null;
|
|
20360
20798
|
}
|
|
20361
20799
|
|
|
20362
|
-
export declare interface
|
|
20363
|
-
name: PrimitiveTypes.
|
|
20364
|
-
value:
|
|
20800
|
+
export declare interface IPrimitiveFileReferenceValueTransfer extends ILiteralValueTransfer {
|
|
20801
|
+
name: PrimitiveTypes.FileReference;
|
|
20802
|
+
value: IFileReferenceData | null;
|
|
20365
20803
|
autogeneration: null;
|
|
20366
20804
|
}
|
|
20367
20805
|
|
|
@@ -22557,7 +22995,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
22557
22995
|
merge(sourceEntity: LiteralValueState, changeSet?: ChangeSet | null): IChangeSet<LiteralValueState>;
|
|
22558
22996
|
}
|
|
22559
22997
|
|
|
22560
|
-
export declare type LiteralValueType = string | number | boolean | null | Date | UntypedValue;
|
|
22998
|
+
export declare type LiteralValueType = string | number | boolean | null | Date | UntypedValue | IFileReferenceData;
|
|
22561
22999
|
|
|
22562
23000
|
export declare type LiteralValueTypesUnion = ILiteralValue | ILiteralValueTransfer | ILiteralValueShallowTransfer | ILiteralValueGenerationTarget;
|
|
22563
23001
|
|
|
@@ -24166,6 +24604,62 @@ export declare enum BaseValueDescriptorIds {
|
|
|
24166
24604
|
main: ((entity: OperationState, inputs: IDynamicValue[]) => IPrimitiveExecutionResult | Promise<IPrimitiveExecutionResult>) | null;
|
|
24167
24605
|
};
|
|
24168
24606
|
|
|
24607
|
+
export declare class OperationsImplementationsCloudFileSystemCopyFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24608
|
+
manifest: ExtensionManifest;
|
|
24609
|
+
module: {
|
|
24610
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24611
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24612
|
+
};
|
|
24613
|
+
}
|
|
24614
|
+
|
|
24615
|
+
export declare class OperationsImplementationsCloudFileSystemDeleteFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24616
|
+
manifest: ExtensionManifest;
|
|
24617
|
+
module: {
|
|
24618
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24619
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24620
|
+
};
|
|
24621
|
+
}
|
|
24622
|
+
|
|
24623
|
+
export declare class OperationsImplementationsCloudFileSystemDownloadFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24624
|
+
manifest: ExtensionManifest;
|
|
24625
|
+
module: {
|
|
24626
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24627
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24628
|
+
};
|
|
24629
|
+
}
|
|
24630
|
+
|
|
24631
|
+
export declare class OperationsImplementationsCloudFileSystemListFilesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24632
|
+
manifest: ExtensionManifest;
|
|
24633
|
+
module: {
|
|
24634
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24635
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24636
|
+
};
|
|
24637
|
+
}
|
|
24638
|
+
|
|
24639
|
+
export declare class OperationsImplementationsCloudFileSystemMoveFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24640
|
+
manifest: ExtensionManifest;
|
|
24641
|
+
module: {
|
|
24642
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24643
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24644
|
+
};
|
|
24645
|
+
}
|
|
24646
|
+
|
|
24647
|
+
export declare class OperationsImplementationsCloudFileSystemRenameFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24648
|
+
manifest: ExtensionManifest;
|
|
24649
|
+
module: {
|
|
24650
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24651
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24652
|
+
};
|
|
24653
|
+
}
|
|
24654
|
+
|
|
24655
|
+
export declare class OperationsImplementationsCloudFileSystemUploadFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24656
|
+
manifest: ExtensionManifest;
|
|
24657
|
+
module: {
|
|
24658
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
24659
|
+
main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
24660
|
+
};
|
|
24661
|
+
}
|
|
24662
|
+
|
|
24169
24663
|
export declare class OperationsImplementationsComparisonEmptyModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
24170
24664
|
manifest: ExtensionManifest;
|
|
24171
24665
|
module: {
|
|
@@ -27178,7 +27672,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
27178
27672
|
getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
|
|
27179
27673
|
}
|
|
27180
27674
|
|
|
27181
|
-
export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | DateOperations | DataTypeOperations | JsonOperations | CryptoOperations | PasswordOperations | JwtOperations | ExecutionOperations | ObjectOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations | ComparisonOperations;
|
|
27675
|
+
export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | DateOperations | DataTypeOperations | JsonOperations | CryptoOperations | PasswordOperations | JwtOperations | ExecutionOperations | ObjectOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations | ComparisonOperations | CloudFileSystemOperations;
|
|
27182
27676
|
|
|
27183
27677
|
export declare type OperationTypesUnion = IOperation | IOperationTransfer | IOperationShallowTransfer | IOperationGenerationTarget;
|
|
27184
27678
|
|
|
@@ -27718,7 +28212,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
27718
28212
|
KeyValue = "key-value",
|
|
27719
28213
|
Date = "date",
|
|
27720
28214
|
UUID = "uuid",
|
|
27721
|
-
|
|
28215
|
+
FileReference = "file-reference",
|
|
27722
28216
|
Untyped = "untyped",
|
|
27723
28217
|
SqlProgram = "sql-program"
|
|
27724
28218
|
}
|
|
@@ -31788,7 +32282,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
31788
32282
|
[key: string]: UntypedValue;
|
|
31789
32283
|
};
|
|
31790
32284
|
|
|
31791
|
-
export declare type UntypedValue = string | number | boolean | null | Date | Uint8Array | {
|
|
32285
|
+
export declare type UntypedValue = string | number | boolean | null | Date | Uint8Array | IFileReferenceData | {
|
|
31792
32286
|
[key: string]: UntypedValue;
|
|
31793
32287
|
} | UntypedValue[];
|
|
31794
32288
|
|