@sovity.de/edc-client 16.3.0 → 16.4.1

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.
@@ -2692,6 +2692,11 @@ export declare function instanceOfUiCriterionOperator(value: any): boolean;
2692
2692
  */
2693
2693
  export declare function instanceOfUiDataOffer(value: any): value is UiDataOffer;
2694
2694
 
2695
+ /**
2696
+ * Check if a given object implements the UiDataSinkAzureStorage interface.
2697
+ */
2698
+ export declare function instanceOfUiDataSinkAzureStorage(value: any): value is UiDataSinkAzureStorage;
2699
+
2695
2700
  /**
2696
2701
  * Check if a given object implements the UiDataSinkHttpDataPush interface.
2697
2702
  */
@@ -5054,6 +5059,46 @@ export declare function UiDataOfferToJSON(json: any): UiDataOffer;
5054
5059
 
5055
5060
  export declare function UiDataOfferToJSONTyped(value?: UiDataOffer | null, ignoreDiscriminator?: boolean): any;
5056
5061
 
5062
+ /**
5063
+ * AZURE_STORAGE type Data Sink.
5064
+ * @export
5065
+ * @interface UiDataSinkAzureStorage
5066
+ */
5067
+ export declare interface UiDataSinkAzureStorage {
5068
+ /**
5069
+ * Storage Account Name. Note, that the corresponding secret must be stored in the vault under storageAccountName + '-key1'
5070
+ * @type {string}
5071
+ * @memberof UiDataSinkAzureStorage
5072
+ */
5073
+ storageAccountName: string;
5074
+ /**
5075
+ * Container Name of the Blob Storage
5076
+ * @type {string}
5077
+ * @memberof UiDataSinkAzureStorage
5078
+ */
5079
+ containerName: string;
5080
+ /**
5081
+ * Folder Name of the Blob Storage
5082
+ * @type {string}
5083
+ * @memberof UiDataSinkAzureStorage
5084
+ */
5085
+ folderName?: string;
5086
+ /**
5087
+ * Blob Name of the Blob Storage
5088
+ * @type {string}
5089
+ * @memberof UiDataSinkAzureStorage
5090
+ */
5091
+ blobName?: string;
5092
+ }
5093
+
5094
+ export declare function UiDataSinkAzureStorageFromJSON(json: any): UiDataSinkAzureStorage;
5095
+
5096
+ export declare function UiDataSinkAzureStorageFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSinkAzureStorage;
5097
+
5098
+ export declare function UiDataSinkAzureStorageToJSON(json: any): UiDataSinkAzureStorage;
5099
+
5100
+ export declare function UiDataSinkAzureStorageToJSONTyped(value?: UiDataSinkAzureStorage | null, ignoreDiscriminator?: boolean): any;
5101
+
5057
5102
  /**
5058
5103
  * HTTP_DATA type Data Source. This is an HttpData-PUSH data sink. Note that consumption of parameterized data sources is not supported via HttpData-PUSH
5059
5104
  * @export
@@ -5649,6 +5694,12 @@ export declare interface UiInitiateTransferRequest {
5649
5694
  * @memberof UiInitiateTransferRequest
5650
5695
  */
5651
5696
  httpDataPush?: UiDataSinkHttpDataPush;
5697
+ /**
5698
+ * Only for type AZURE_STORAGE
5699
+ * @type {UiDataSinkAzureStorage}
5700
+ * @memberof UiInitiateTransferRequest
5701
+ */
5702
+ azureStorage?: UiDataSinkAzureStorage;
5652
5703
  /**
5653
5704
  * List of endpoints to call upon given transfer events
5654
5705
  * @type {Array<CallbackAddressDto>}
@@ -5702,6 +5753,7 @@ export declare const UiInitiateTransferType: {
5702
5753
  readonly HttpDataPush: "HTTP_DATA_PUSH";
5703
5754
  readonly HttpDataProxy: "HTTP_DATA_PROXY";
5704
5755
  readonly Custom: "CUSTOM";
5756
+ readonly AzureStorage: "AZURE_STORAGE";
5705
5757
  };
5706
5758
 
5707
5759
  export declare type UiInitiateTransferType = (typeof UiInitiateTransferType)[keyof typeof UiInitiateTransferType];