@elyx-code/project-logic-tree 0.0.7094 → 0.0.7095
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 +305 -305
- package/dist/index.d.ts +105 -1
- package/dist/index.js +44275 -43559
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -5592,6 +5592,64 @@ export declare enum BaseValueDescriptorIds {
|
|
|
5592
5592
|
id: string;
|
|
5593
5593
|
};
|
|
5594
5594
|
};
|
|
5595
|
+
"op-cloud-file-system-upload-file-part": {
|
|
5596
|
+
id: CloudFileSystemOperations;
|
|
5597
|
+
inputs: {
|
|
5598
|
+
bucket: {
|
|
5599
|
+
id: string;
|
|
5600
|
+
dataType: {
|
|
5601
|
+
id: string;
|
|
5602
|
+
};
|
|
5603
|
+
};
|
|
5604
|
+
key: {
|
|
5605
|
+
id: string;
|
|
5606
|
+
dataType: {
|
|
5607
|
+
id: string;
|
|
5608
|
+
};
|
|
5609
|
+
};
|
|
5610
|
+
uploadId: {
|
|
5611
|
+
id: string;
|
|
5612
|
+
dataType: {
|
|
5613
|
+
id: string;
|
|
5614
|
+
};
|
|
5615
|
+
};
|
|
5616
|
+
partNumber: {
|
|
5617
|
+
id: string;
|
|
5618
|
+
dataType: {
|
|
5619
|
+
id: string;
|
|
5620
|
+
};
|
|
5621
|
+
};
|
|
5622
|
+
bytes: {
|
|
5623
|
+
id: string;
|
|
5624
|
+
dataType: {
|
|
5625
|
+
id: string;
|
|
5626
|
+
};
|
|
5627
|
+
};
|
|
5628
|
+
};
|
|
5629
|
+
dataType: {
|
|
5630
|
+
id: string;
|
|
5631
|
+
entity: {
|
|
5632
|
+
id: string;
|
|
5633
|
+
properties: {
|
|
5634
|
+
partNumber: {
|
|
5635
|
+
id: string;
|
|
5636
|
+
dataType: {
|
|
5637
|
+
id: string;
|
|
5638
|
+
};
|
|
5639
|
+
};
|
|
5640
|
+
etag: {
|
|
5641
|
+
id: string;
|
|
5642
|
+
dataType: {
|
|
5643
|
+
id: string;
|
|
5644
|
+
};
|
|
5645
|
+
};
|
|
5646
|
+
};
|
|
5647
|
+
};
|
|
5648
|
+
};
|
|
5649
|
+
error: {
|
|
5650
|
+
id: string;
|
|
5651
|
+
};
|
|
5652
|
+
};
|
|
5595
5653
|
"op-sql-execute-query": {
|
|
5596
5654
|
id: SQLOperations;
|
|
5597
5655
|
inputs: {
|
|
@@ -11580,7 +11638,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11580
11638
|
CreateMultipartUpload = "op-cloud-file-system-create-multipart-upload",
|
|
11581
11639
|
GetUploadPartPresignedUrl = "op-cloud-file-system-get-upload-part-presigned-url",
|
|
11582
11640
|
CompleteMultipartUpload = "op-cloud-file-system-complete-multipart-upload",
|
|
11583
|
-
AbortMultipartUpload = "op-cloud-file-system-abort-multipart-upload"
|
|
11641
|
+
AbortMultipartUpload = "op-cloud-file-system-abort-multipart-upload",
|
|
11642
|
+
UploadFilePart = "op-cloud-file-system-upload-file-part"
|
|
11584
11643
|
}
|
|
11585
11644
|
|
|
11586
11645
|
export declare const cloudFileSystemRenameFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
@@ -11635,6 +11694,42 @@ export declare enum BaseValueDescriptorIds {
|
|
|
11635
11694
|
|
|
11636
11695
|
export declare const cloudFileSystemUploadFileOperationError: IValueDescriptorTransfer;
|
|
11637
11696
|
|
|
11697
|
+
export declare const cloudFileSystemUploadFilePartBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
11698
|
+
|
|
11699
|
+
export declare const cloudFileSystemUploadFilePartBucketInputTransfer: IValueDescriptorTransfer;
|
|
11700
|
+
|
|
11701
|
+
export declare const cloudFileSystemUploadFilePartBytesInputDataTypeTransfer: IDataTypeTransfer;
|
|
11702
|
+
|
|
11703
|
+
export declare const cloudFileSystemUploadFilePartBytesInputTransfer: IValueDescriptorTransfer;
|
|
11704
|
+
|
|
11705
|
+
export declare const cloudFileSystemUploadFilePartETagPropertyDataTypeTransfer: IDataTypeTransfer;
|
|
11706
|
+
|
|
11707
|
+
export declare const cloudFileSystemUploadFilePartETagPropertyTransfer: IPropertyTransfer;
|
|
11708
|
+
|
|
11709
|
+
export declare const cloudFileSystemUploadFilePartKeyInputDataTypeTransfer: IDataTypeTransfer;
|
|
11710
|
+
|
|
11711
|
+
export declare const cloudFileSystemUploadFilePartKeyInputTransfer: IValueDescriptorTransfer;
|
|
11712
|
+
|
|
11713
|
+
export declare const cloudFileSystemUploadFilePartOperation: IActionDescriptorTransfer;
|
|
11714
|
+
|
|
11715
|
+
export declare const cloudFileSystemUploadFilePartOperationError: IValueDescriptorTransfer;
|
|
11716
|
+
|
|
11717
|
+
export declare const cloudFileSystemUploadFilePartPartNumberInputDataTypeTransfer: IDataTypeTransfer;
|
|
11718
|
+
|
|
11719
|
+
export declare const cloudFileSystemUploadFilePartPartNumberInputTransfer: IValueDescriptorTransfer;
|
|
11720
|
+
|
|
11721
|
+
export declare const cloudFileSystemUploadFilePartPartNumberPropertyDataTypeTransfer: IDataTypeTransfer;
|
|
11722
|
+
|
|
11723
|
+
export declare const cloudFileSystemUploadFilePartPartNumberPropertyTransfer: IPropertyTransfer;
|
|
11724
|
+
|
|
11725
|
+
export declare const cloudFileSystemUploadFilePartResponseDataTypeTransfer: IDataTypeTransfer;
|
|
11726
|
+
|
|
11727
|
+
export declare const cloudFileSystemUploadFilePartResponseEntityTransfer: IDefinitionEntityTransfer;
|
|
11728
|
+
|
|
11729
|
+
export declare const cloudFileSystemUploadFilePartUploadIdInputDataTypeTransfer: IDataTypeTransfer;
|
|
11730
|
+
|
|
11731
|
+
export declare const cloudFileSystemUploadFilePartUploadIdInputTransfer: IValueDescriptorTransfer;
|
|
11732
|
+
|
|
11638
11733
|
export declare const cloudFileSystemUploadFileResponseDataTypeTransfer: IDataTypeTransfer;
|
|
11639
11734
|
|
|
11640
11735
|
export declare class CloudHostedCodebaseInfrastructureResource extends InfrastructureResource implements ICloudHostedCodebaseInfrastructureResource {
|
|
@@ -13594,6 +13689,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13594
13689
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_GET_UPLOAD_PART_PRESIGNED_URL: string;
|
|
13595
13690
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_COMPLETE_MULTIPART_UPLOAD: string;
|
|
13596
13691
|
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_ABORT_MULTIPART_UPLOAD: string;
|
|
13692
|
+
BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CLOUD_FILE_SYSTEM_UPLOAD_FILE_PART: string;
|
|
13597
13693
|
};
|
|
13598
13694
|
|
|
13599
13695
|
export declare const DEFAULT_PROJECT_INSTANCE_PARENT_CONTEXT: IProjectInstanceParentContext;
|
|
@@ -25671,6 +25767,14 @@ export declare enum BaseValueDescriptorIds {
|
|
|
25671
25767
|
};
|
|
25672
25768
|
}
|
|
25673
25769
|
|
|
25770
|
+
export declare class OperationsImplementationsCloudFileSystemUploadFilePartModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
25771
|
+
manifest: ExtensionManifest;
|
|
25772
|
+
module: {
|
|
25773
|
+
init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
|
|
25774
|
+
main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
|
|
25775
|
+
};
|
|
25776
|
+
}
|
|
25777
|
+
|
|
25674
25778
|
export declare class OperationsImplementationsComparisonEmptyModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
|
|
25675
25779
|
manifest: ExtensionManifest;
|
|
25676
25780
|
module: {
|