@sovity.de/edc-client 12.0.0 → 13.0.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.
|
@@ -3,6 +3,66 @@ export declare interface ApiResponse<T> {
|
|
|
3
3
|
value(): Promise<T>;
|
|
4
4
|
}
|
|
5
5
|
|
|
6
|
+
/**
|
|
7
|
+
* Generic expression for filtering the data offers in the catalog
|
|
8
|
+
* @export
|
|
9
|
+
* @interface AssetFilterConstraint
|
|
10
|
+
*/
|
|
11
|
+
export declare interface AssetFilterConstraint {
|
|
12
|
+
/**
|
|
13
|
+
* Asset property path
|
|
14
|
+
* @type {Array<string>}
|
|
15
|
+
* @memberof AssetFilterConstraint
|
|
16
|
+
*/
|
|
17
|
+
assetPropertyPath: Array<string>;
|
|
18
|
+
/**
|
|
19
|
+
* Operator
|
|
20
|
+
* @type {AssetFilterConstraintOperator}
|
|
21
|
+
* @memberof AssetFilterConstraint
|
|
22
|
+
*/
|
|
23
|
+
operator: AssetFilterConstraintOperator;
|
|
24
|
+
/**
|
|
25
|
+
* For operators EQ and LIKE. Can contain '%' for operator LIKE.
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof AssetFilterConstraint
|
|
28
|
+
*/
|
|
29
|
+
value?: string;
|
|
30
|
+
/**
|
|
31
|
+
* For operator IN.
|
|
32
|
+
* @type {Array<string>}
|
|
33
|
+
* @memberof AssetFilterConstraint
|
|
34
|
+
*/
|
|
35
|
+
valueList?: Array<string>;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export declare function AssetFilterConstraintFromJSON(json: any): AssetFilterConstraint;
|
|
39
|
+
|
|
40
|
+
export declare function AssetFilterConstraintFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetFilterConstraint;
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Operator for filter expressions
|
|
44
|
+
* @export
|
|
45
|
+
*/
|
|
46
|
+
export declare const AssetFilterConstraintOperator: {
|
|
47
|
+
readonly Like: "LIKE";
|
|
48
|
+
readonly Eq: "EQ";
|
|
49
|
+
readonly In: "IN";
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
export declare type AssetFilterConstraintOperator = (typeof AssetFilterConstraintOperator)[keyof typeof AssetFilterConstraintOperator];
|
|
53
|
+
|
|
54
|
+
export declare function AssetFilterConstraintOperatorFromJSON(json: any): AssetFilterConstraintOperator;
|
|
55
|
+
|
|
56
|
+
export declare function AssetFilterConstraintOperatorFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetFilterConstraintOperator;
|
|
57
|
+
|
|
58
|
+
export declare function AssetFilterConstraintOperatorToJSON(value?: AssetFilterConstraintOperator | null): any;
|
|
59
|
+
|
|
60
|
+
export declare function AssetFilterConstraintOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): AssetFilterConstraintOperator;
|
|
61
|
+
|
|
62
|
+
export declare function AssetFilterConstraintToJSON(json: any): AssetFilterConstraint;
|
|
63
|
+
|
|
64
|
+
export declare function AssetFilterConstraintToJSONTyped(value?: AssetFilterConstraint | null, ignoreDiscriminator?: boolean): any;
|
|
65
|
+
|
|
6
66
|
/**
|
|
7
67
|
* All data for the Asset Page
|
|
8
68
|
* @export
|
|
@@ -110,6 +170,68 @@ export declare function BuildInfoToJSON(json: any): BuildInfo;
|
|
|
110
170
|
|
|
111
171
|
export declare function BuildInfoToJSONTyped(value?: BuildInfo | null, ignoreDiscriminator?: boolean): any;
|
|
112
172
|
|
|
173
|
+
/**
|
|
174
|
+
* Callback address to be called after a transfer or negotiation success/failure
|
|
175
|
+
* @export
|
|
176
|
+
* @interface CallbackAddressDto
|
|
177
|
+
*/
|
|
178
|
+
export declare interface CallbackAddressDto {
|
|
179
|
+
/**
|
|
180
|
+
* URL to be called when the event is fired
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof CallbackAddressDto
|
|
183
|
+
*/
|
|
184
|
+
url: string;
|
|
185
|
+
/**
|
|
186
|
+
* Event Types to subscribe to.
|
|
187
|
+
* @type {Array<CallbackAddressEventType>}
|
|
188
|
+
* @memberof CallbackAddressDto
|
|
189
|
+
*/
|
|
190
|
+
events: Array<CallbackAddressEventType>;
|
|
191
|
+
/**
|
|
192
|
+
* Authentication: Header Name
|
|
193
|
+
* @type {string}
|
|
194
|
+
* @memberof CallbackAddressDto
|
|
195
|
+
*/
|
|
196
|
+
authHeaderName?: string;
|
|
197
|
+
/**
|
|
198
|
+
* Authentication: Header Value (Vault Secret Name)
|
|
199
|
+
* @type {string}
|
|
200
|
+
* @memberof CallbackAddressDto
|
|
201
|
+
*/
|
|
202
|
+
authHeaderVaultSecretName?: string;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
export declare function CallbackAddressDtoFromJSON(json: any): CallbackAddressDto;
|
|
206
|
+
|
|
207
|
+
export declare function CallbackAddressDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallbackAddressDto;
|
|
208
|
+
|
|
209
|
+
export declare function CallbackAddressDtoToJSON(json: any): CallbackAddressDto;
|
|
210
|
+
|
|
211
|
+
export declare function CallbackAddressDtoToJSONTyped(value?: CallbackAddressDto | null, ignoreDiscriminator?: boolean): any;
|
|
212
|
+
|
|
213
|
+
/**
|
|
214
|
+
* Currently Supported Event Types
|
|
215
|
+
* @export
|
|
216
|
+
*/
|
|
217
|
+
export declare const CallbackAddressEventType: {
|
|
218
|
+
readonly ContractNegotiationFinalized: "CONTRACT_NEGOTIATION_FINALIZED";
|
|
219
|
+
readonly ContractNegotiationTerminated: "CONTRACT_NEGOTIATION_TERMINATED";
|
|
220
|
+
readonly TransferProcessStarted: "TRANSFER_PROCESS_STARTED";
|
|
221
|
+
readonly TransferProcessTerminated: "TRANSFER_PROCESS_TERMINATED";
|
|
222
|
+
readonly TransferProcessCompleted: "TRANSFER_PROCESS_COMPLETED";
|
|
223
|
+
};
|
|
224
|
+
|
|
225
|
+
export declare type CallbackAddressEventType = (typeof CallbackAddressEventType)[keyof typeof CallbackAddressEventType];
|
|
226
|
+
|
|
227
|
+
export declare function CallbackAddressEventTypeFromJSON(json: any): CallbackAddressEventType;
|
|
228
|
+
|
|
229
|
+
export declare function CallbackAddressEventTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CallbackAddressEventType;
|
|
230
|
+
|
|
231
|
+
export declare function CallbackAddressEventTypeToJSON(value?: CallbackAddressEventType | null): any;
|
|
232
|
+
|
|
233
|
+
export declare function CallbackAddressEventTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CallbackAddressEventType;
|
|
234
|
+
|
|
113
235
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
114
236
|
|
|
115
237
|
/**
|
|
@@ -128,12 +250,14 @@ export declare interface CatalogFilterExpression {
|
|
|
128
250
|
* Operator
|
|
129
251
|
* @type {CatalogFilterExpressionOperator}
|
|
130
252
|
* @memberof CatalogFilterExpression
|
|
253
|
+
* @deprecated
|
|
131
254
|
*/
|
|
132
255
|
operator: CatalogFilterExpressionOperator;
|
|
133
256
|
/**
|
|
134
257
|
* Right Operand
|
|
135
258
|
* @type {CatalogFilterExpressionLiteral}
|
|
136
259
|
* @memberof CatalogFilterExpression
|
|
260
|
+
* @deprecated
|
|
137
261
|
*/
|
|
138
262
|
operandRight: CatalogFilterExpressionLiteral;
|
|
139
263
|
}
|
|
@@ -152,6 +276,7 @@ export declare interface CatalogFilterExpressionLiteral {
|
|
|
152
276
|
*
|
|
153
277
|
* @type {CatalogFilterExpressionLiteralType}
|
|
154
278
|
* @memberof CatalogFilterExpressionLiteral
|
|
279
|
+
* @deprecated
|
|
155
280
|
*/
|
|
156
281
|
type?: CatalogFilterExpressionLiteralType;
|
|
157
282
|
/**
|
|
@@ -265,6 +390,106 @@ export declare function CatalogQueryToJSON(json: any): CatalogQuery;
|
|
|
265
390
|
|
|
266
391
|
export declare function CatalogQueryToJSONTyped(value?: CatalogQuery | null, ignoreDiscriminator?: boolean): any;
|
|
267
392
|
|
|
393
|
+
/**
|
|
394
|
+
* Catalog query parameters
|
|
395
|
+
* @export
|
|
396
|
+
* @interface CatalogQueryV2
|
|
397
|
+
*/
|
|
398
|
+
export declare interface CatalogQueryV2 {
|
|
399
|
+
/**
|
|
400
|
+
* Target EDC DSP endpoint URL
|
|
401
|
+
* @type {string}
|
|
402
|
+
* @memberof CatalogQueryV2
|
|
403
|
+
*/
|
|
404
|
+
connectorEndpoint: string;
|
|
405
|
+
/**
|
|
406
|
+
* Target EDC Participant ID
|
|
407
|
+
* @type {string}
|
|
408
|
+
* @memberof CatalogQueryV2
|
|
409
|
+
*/
|
|
410
|
+
participantId: string;
|
|
411
|
+
/**
|
|
412
|
+
* Conjunction of filter expressions for data offer filtering
|
|
413
|
+
* @type {Array<AssetFilterConstraint>}
|
|
414
|
+
* @memberof CatalogQueryV2
|
|
415
|
+
*/
|
|
416
|
+
filter?: Array<AssetFilterConstraint>;
|
|
417
|
+
/**
|
|
418
|
+
* Limit the number of results
|
|
419
|
+
* @type {number}
|
|
420
|
+
* @memberof CatalogQueryV2
|
|
421
|
+
*/
|
|
422
|
+
limit?: number;
|
|
423
|
+
/**
|
|
424
|
+
* Offset for returned results, e.g. start at result 2
|
|
425
|
+
* @type {number}
|
|
426
|
+
* @memberof CatalogQueryV2
|
|
427
|
+
*/
|
|
428
|
+
offset?: number;
|
|
429
|
+
/**
|
|
430
|
+
* Field to sort by
|
|
431
|
+
* @type {CatalogSortBy}
|
|
432
|
+
* @memberof CatalogQueryV2
|
|
433
|
+
* @deprecated
|
|
434
|
+
*/
|
|
435
|
+
sortBy?: CatalogSortBy;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
export declare function CatalogQueryV2FromJSON(json: any): CatalogQueryV2;
|
|
439
|
+
|
|
440
|
+
export declare function CatalogQueryV2FromJSONTyped(json: any, ignoreDiscriminator: boolean): CatalogQueryV2;
|
|
441
|
+
|
|
442
|
+
export declare function CatalogQueryV2ToJSON(json: any): CatalogQueryV2;
|
|
443
|
+
|
|
444
|
+
export declare function CatalogQueryV2ToJSONTyped(value?: CatalogQueryV2 | null, ignoreDiscriminator?: boolean): any;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* One field to sort by
|
|
448
|
+
* @export
|
|
449
|
+
* @interface CatalogSortBy
|
|
450
|
+
*/
|
|
451
|
+
export declare interface CatalogSortBy {
|
|
452
|
+
/**
|
|
453
|
+
* Asset property path
|
|
454
|
+
* @type {Array<string>}
|
|
455
|
+
* @memberof CatalogSortBy
|
|
456
|
+
*/
|
|
457
|
+
assetPropertyPath: Array<string>;
|
|
458
|
+
/**
|
|
459
|
+
* Direction to sort by
|
|
460
|
+
* @type {CatalogSortByDirection}
|
|
461
|
+
* @memberof CatalogSortBy
|
|
462
|
+
*/
|
|
463
|
+
direction?: CatalogSortByDirection;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
/**
|
|
467
|
+
* Sort Direction
|
|
468
|
+
* @export
|
|
469
|
+
*/
|
|
470
|
+
export declare const CatalogSortByDirection: {
|
|
471
|
+
readonly Asc: "ASC";
|
|
472
|
+
readonly Desc: "DESC";
|
|
473
|
+
};
|
|
474
|
+
|
|
475
|
+
export declare type CatalogSortByDirection = (typeof CatalogSortByDirection)[keyof typeof CatalogSortByDirection];
|
|
476
|
+
|
|
477
|
+
export declare function CatalogSortByDirectionFromJSON(json: any): CatalogSortByDirection;
|
|
478
|
+
|
|
479
|
+
export declare function CatalogSortByDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): CatalogSortByDirection;
|
|
480
|
+
|
|
481
|
+
export declare function CatalogSortByDirectionToJSON(value?: CatalogSortByDirection | null): any;
|
|
482
|
+
|
|
483
|
+
export declare function CatalogSortByDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): CatalogSortByDirection;
|
|
484
|
+
|
|
485
|
+
export declare function CatalogSortByFromJSON(json: any): CatalogSortBy;
|
|
486
|
+
|
|
487
|
+
export declare function CatalogSortByFromJSONTyped(json: any, ignoreDiscriminator: boolean): CatalogSortBy;
|
|
488
|
+
|
|
489
|
+
export declare function CatalogSortByToJSON(json: any): CatalogSortBy;
|
|
490
|
+
|
|
491
|
+
export declare function CatalogSortByToJSONTyped(value?: CatalogSortBy | null, ignoreDiscriminator?: boolean): any;
|
|
492
|
+
|
|
268
493
|
/**
|
|
269
494
|
* Credentials for connecting to the EDC via the OAuth2 "Client Credentials" flow.
|
|
270
495
|
*/
|
|
@@ -608,7 +833,7 @@ export declare function ContractDefinitionEntryToJSON(json: any): ContractDefini
|
|
|
608
833
|
export declare function ContractDefinitionEntryToJSONTyped(value?: ContractDefinitionEntry | null, ignoreDiscriminator?: boolean): any;
|
|
609
834
|
|
|
610
835
|
/**
|
|
611
|
-
*
|
|
836
|
+
* Data as required by the UI's Contract Definition Page. Will be replaced with a Catalog Definition Page that shall support asset property paths properly
|
|
612
837
|
* @export
|
|
613
838
|
* @interface ContractDefinitionPage
|
|
614
839
|
*/
|
|
@@ -705,6 +930,12 @@ export declare interface ContractNegotiationRequest {
|
|
|
705
930
|
* @memberof ContractNegotiationRequest
|
|
706
931
|
*/
|
|
707
932
|
assetId: string;
|
|
933
|
+
/**
|
|
934
|
+
* List of endpoints to call upon given transfer events
|
|
935
|
+
* @type {Array<CallbackAddressDto>}
|
|
936
|
+
* @memberof ContractNegotiationRequest
|
|
937
|
+
*/
|
|
938
|
+
callbackAddresses?: Array<CallbackAddressDto>;
|
|
708
939
|
}
|
|
709
940
|
|
|
710
941
|
export declare function ContractNegotiationRequestFromJSON(json: any): ContractNegotiationRequest;
|
|
@@ -765,6 +996,52 @@ export declare function ContractNegotiationStateFromJSON(json: any): ContractNeg
|
|
|
765
996
|
|
|
766
997
|
export declare function ContractNegotiationStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractNegotiationState;
|
|
767
998
|
|
|
999
|
+
/**
|
|
1000
|
+
* Contract Negotiation state
|
|
1001
|
+
* @export
|
|
1002
|
+
* @interface ContractNegotiationStateResult
|
|
1003
|
+
*/
|
|
1004
|
+
export declare interface ContractNegotiationStateResult {
|
|
1005
|
+
/**
|
|
1006
|
+
* Contract Negotiation ID
|
|
1007
|
+
* @type {string}
|
|
1008
|
+
* @memberof ContractNegotiationStateResult
|
|
1009
|
+
*/
|
|
1010
|
+
contractNegotiationId: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* Contract Negotiation State
|
|
1013
|
+
* @type {ContractNegotiationState}
|
|
1014
|
+
* @memberof ContractNegotiationStateResult
|
|
1015
|
+
*/
|
|
1016
|
+
state: ContractNegotiationState;
|
|
1017
|
+
/**
|
|
1018
|
+
* Contract Agreement ID
|
|
1019
|
+
* @type {string}
|
|
1020
|
+
* @memberof ContractNegotiationStateResult
|
|
1021
|
+
*/
|
|
1022
|
+
contractAgreementId?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* Contract Agreement Termination State
|
|
1025
|
+
* @type {ContractAgreementTerminationInfo}
|
|
1026
|
+
* @memberof ContractNegotiationStateResult
|
|
1027
|
+
*/
|
|
1028
|
+
contractAgreementTerminationInfo?: ContractAgreementTerminationInfo;
|
|
1029
|
+
/**
|
|
1030
|
+
* Contract Negotiation State Last Change
|
|
1031
|
+
* @type {Date}
|
|
1032
|
+
* @memberof ContractNegotiationStateResult
|
|
1033
|
+
*/
|
|
1034
|
+
stateChangedAt: Date;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
export declare function ContractNegotiationStateResultFromJSON(json: any): ContractNegotiationStateResult;
|
|
1038
|
+
|
|
1039
|
+
export declare function ContractNegotiationStateResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractNegotiationStateResult;
|
|
1040
|
+
|
|
1041
|
+
export declare function ContractNegotiationStateResultToJSON(json: any): ContractNegotiationStateResult;
|
|
1042
|
+
|
|
1043
|
+
export declare function ContractNegotiationStateResultToJSONTyped(value?: ContractNegotiationStateResult | null, ignoreDiscriminator?: boolean): any;
|
|
1044
|
+
|
|
768
1045
|
export declare function ContractNegotiationStateToJSON(json: any): ContractNegotiationState;
|
|
769
1046
|
|
|
770
1047
|
export declare function ContractNegotiationStateToJSONTyped(value?: ContractNegotiationState | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -1228,6 +1505,40 @@ export declare interface EditAssetRequest {
|
|
|
1228
1505
|
uiAssetEditRequest?: UiAssetEditRequest;
|
|
1229
1506
|
}
|
|
1230
1507
|
|
|
1508
|
+
/**
|
|
1509
|
+
* Issued for a single transfer, calling the given endpoint allows you to directly interact with the data source. Depending on the asset you can pass data to the data source, provide query params or append a custom sub-path.
|
|
1510
|
+
* @export
|
|
1511
|
+
* @interface EdrDto
|
|
1512
|
+
*/
|
|
1513
|
+
export declare interface EdrDto {
|
|
1514
|
+
/**
|
|
1515
|
+
* Base URL
|
|
1516
|
+
* @type {string}
|
|
1517
|
+
* @memberof EdrDto
|
|
1518
|
+
*/
|
|
1519
|
+
baseUrl: string;
|
|
1520
|
+
/**
|
|
1521
|
+
* Value for the 'Authorization' header.
|
|
1522
|
+
* @type {string}
|
|
1523
|
+
* @memberof EdrDto
|
|
1524
|
+
*/
|
|
1525
|
+
authorizationHeaderValue: string;
|
|
1526
|
+
/**
|
|
1527
|
+
* Expiration date of the EDR token or null, if EDR never expires. After expiration you must re-fetch the EDR.
|
|
1528
|
+
* @type {Date}
|
|
1529
|
+
* @memberof EdrDto
|
|
1530
|
+
*/
|
|
1531
|
+
expiresAt?: Date;
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
export declare function EdrDtoFromJSON(json: any): EdrDto;
|
|
1535
|
+
|
|
1536
|
+
export declare function EdrDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): EdrDto;
|
|
1537
|
+
|
|
1538
|
+
export declare function EdrDtoToJSON(json: any): EdrDto;
|
|
1539
|
+
|
|
1540
|
+
export declare function EdrDtoToJSONTyped(value?: EdrDto | null, ignoreDiscriminator?: boolean): any;
|
|
1541
|
+
|
|
1231
1542
|
/**
|
|
1232
1543
|
*
|
|
1233
1544
|
*/
|
|
@@ -1290,6 +1601,12 @@ export declare interface FileUploadCreateAssetRequest {
|
|
|
1290
1601
|
uiAssetCreateRequest: UiAssetCreateRequest;
|
|
1291
1602
|
}
|
|
1292
1603
|
|
|
1604
|
+
export declare interface GetCatalogPageDataOfferRequest {
|
|
1605
|
+
participantId: string;
|
|
1606
|
+
connectorEndpoint: string;
|
|
1607
|
+
dataOfferId: string;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1293
1610
|
export declare interface GetCatalogPageDataOffersRequest {
|
|
1294
1611
|
participantId?: string;
|
|
1295
1612
|
connectorEndpoint?: string;
|
|
@@ -1307,10 +1624,22 @@ export declare interface GetContractNegotiationRequest {
|
|
|
1307
1624
|
contractNegotiationId: string;
|
|
1308
1625
|
}
|
|
1309
1626
|
|
|
1627
|
+
export declare interface GetContractNegotiationStatesRequest {
|
|
1628
|
+
requestBody: Array<string>;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1310
1631
|
export declare interface GetTransferProcessAssetRequest {
|
|
1311
1632
|
transferProcessId: string;
|
|
1312
1633
|
}
|
|
1313
1634
|
|
|
1635
|
+
export declare interface GetTransferProcessEdrRequest {
|
|
1636
|
+
transferId: string;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
export declare interface GetTransferProcessStatesRequest {
|
|
1640
|
+
requestBody: Array<string>;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1314
1643
|
export declare type HTTPBody = Json | FormData | URLSearchParams;
|
|
1315
1644
|
|
|
1316
1645
|
export declare type HTTPHeaders = {
|
|
@@ -1470,11 +1799,22 @@ export declare function InitiateTransferRequestToJSON(json: any): InitiateTransf
|
|
|
1470
1799
|
|
|
1471
1800
|
export declare function InitiateTransferRequestToJSONTyped(value?: InitiateTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1472
1801
|
|
|
1802
|
+
export declare interface InitiateTransferV2Request {
|
|
1803
|
+
uiInitiateTransferRequest?: UiInitiateTransferRequest;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1473
1806
|
export declare type InitOverrideFunction = (requestContext: {
|
|
1474
1807
|
init: HTTPRequestInit;
|
|
1475
1808
|
context: RequestOpts;
|
|
1476
1809
|
}) => Promise<RequestInit>;
|
|
1477
1810
|
|
|
1811
|
+
/**
|
|
1812
|
+
* Check if a given object implements the AssetFilterConstraint interface.
|
|
1813
|
+
*/
|
|
1814
|
+
export declare function instanceOfAssetFilterConstraint(value: any): value is AssetFilterConstraint;
|
|
1815
|
+
|
|
1816
|
+
export declare function instanceOfAssetFilterConstraintOperator(value: any): boolean;
|
|
1817
|
+
|
|
1478
1818
|
/**
|
|
1479
1819
|
* Check if a given object implements the AssetPage interface.
|
|
1480
1820
|
*/
|
|
@@ -1485,6 +1825,13 @@ export declare function instanceOfAssetPage(value: any): value is AssetPage;
|
|
|
1485
1825
|
*/
|
|
1486
1826
|
export declare function instanceOfBuildInfo(value: any): value is BuildInfo;
|
|
1487
1827
|
|
|
1828
|
+
/**
|
|
1829
|
+
* Check if a given object implements the CallbackAddressDto interface.
|
|
1830
|
+
*/
|
|
1831
|
+
export declare function instanceOfCallbackAddressDto(value: any): value is CallbackAddressDto;
|
|
1832
|
+
|
|
1833
|
+
export declare function instanceOfCallbackAddressEventType(value: any): boolean;
|
|
1834
|
+
|
|
1488
1835
|
/**
|
|
1489
1836
|
* Check if a given object implements the CatalogFilterExpression interface.
|
|
1490
1837
|
*/
|
|
@@ -1504,6 +1851,18 @@ export declare function instanceOfCatalogFilterExpressionOperator(value: any): b
|
|
|
1504
1851
|
*/
|
|
1505
1852
|
export declare function instanceOfCatalogQuery(value: any): value is CatalogQuery;
|
|
1506
1853
|
|
|
1854
|
+
/**
|
|
1855
|
+
* Check if a given object implements the CatalogQueryV2 interface.
|
|
1856
|
+
*/
|
|
1857
|
+
export declare function instanceOfCatalogQueryV2(value: any): value is CatalogQueryV2;
|
|
1858
|
+
|
|
1859
|
+
/**
|
|
1860
|
+
* Check if a given object implements the CatalogSortBy interface.
|
|
1861
|
+
*/
|
|
1862
|
+
export declare function instanceOfCatalogSortBy(value: any): value is CatalogSortBy;
|
|
1863
|
+
|
|
1864
|
+
export declare function instanceOfCatalogSortByDirection(value: any): boolean;
|
|
1865
|
+
|
|
1507
1866
|
/**
|
|
1508
1867
|
* Check if a given object implements the ConnectorLimits interface.
|
|
1509
1868
|
*/
|
|
@@ -1563,6 +1922,11 @@ export declare function instanceOfContractNegotiationSimplifiedState(value: any)
|
|
|
1563
1922
|
*/
|
|
1564
1923
|
export declare function instanceOfContractNegotiationState(value: any): value is ContractNegotiationState;
|
|
1565
1924
|
|
|
1925
|
+
/**
|
|
1926
|
+
* Check if a given object implements the ContractNegotiationStateResult interface.
|
|
1927
|
+
*/
|
|
1928
|
+
export declare function instanceOfContractNegotiationStateResult(value: any): value is ContractNegotiationStateResult;
|
|
1929
|
+
|
|
1566
1930
|
export declare function instanceOfContractTerminatedBy(value: any): boolean;
|
|
1567
1931
|
|
|
1568
1932
|
/**
|
|
@@ -1603,6 +1967,11 @@ export declare function instanceOfDataSourceAvailability(value: any): boolean;
|
|
|
1603
1967
|
|
|
1604
1968
|
export declare function instanceOfDataSourceType(value: any): boolean;
|
|
1605
1969
|
|
|
1970
|
+
/**
|
|
1971
|
+
* Check if a given object implements the EdrDto interface.
|
|
1972
|
+
*/
|
|
1973
|
+
export declare function instanceOfEdrDto(value: any): value is EdrDto;
|
|
1974
|
+
|
|
1606
1975
|
/**
|
|
1607
1976
|
* Check if a given object implements the IdAvailabilityResponse interface.
|
|
1608
1977
|
*/
|
|
@@ -1628,6 +1997,16 @@ export declare function instanceOfInitiateTransferRequest(value: any): value is
|
|
|
1628
1997
|
*/
|
|
1629
1998
|
export declare function instanceOfKpiResult(value: any): value is KpiResult;
|
|
1630
1999
|
|
|
2000
|
+
/**
|
|
2001
|
+
* Check if a given object implements the NegotiateAllQuery interface.
|
|
2002
|
+
*/
|
|
2003
|
+
export declare function instanceOfNegotiateAllQuery(value: any): value is NegotiateAllQuery;
|
|
2004
|
+
|
|
2005
|
+
/**
|
|
2006
|
+
* Check if a given object implements the NegotiateAllResult interface.
|
|
2007
|
+
*/
|
|
2008
|
+
export declare function instanceOfNegotiateAllResult(value: any): value is NegotiateAllResult;
|
|
2009
|
+
|
|
1631
2010
|
export declare function instanceOfOperatorDto(value: any): boolean;
|
|
1632
2011
|
|
|
1633
2012
|
/**
|
|
@@ -1672,6 +2051,11 @@ export declare function instanceOfTransferProcessSimplifiedState(value: any): bo
|
|
|
1672
2051
|
*/
|
|
1673
2052
|
export declare function instanceOfTransferProcessState(value: any): value is TransferProcessState;
|
|
1674
2053
|
|
|
2054
|
+
/**
|
|
2055
|
+
* Check if a given object implements the TransferProcessStateResult interface.
|
|
2056
|
+
*/
|
|
2057
|
+
export declare function instanceOfTransferProcessStateResult(value: any): value is TransferProcessStateResult;
|
|
2058
|
+
|
|
1675
2059
|
/**
|
|
1676
2060
|
* Check if a given object implements the TransferProcessStatesDto interface.
|
|
1677
2061
|
*/
|
|
@@ -1733,6 +2117,13 @@ export declare function instanceOfUiCriterionOperator(value: any): boolean;
|
|
|
1733
2117
|
*/
|
|
1734
2118
|
export declare function instanceOfUiDataOffer(value: any): value is UiDataOffer;
|
|
1735
2119
|
|
|
2120
|
+
/**
|
|
2121
|
+
* Check if a given object implements the UiDataSinkHttpDataPush interface.
|
|
2122
|
+
*/
|
|
2123
|
+
export declare function instanceOfUiDataSinkHttpDataPush(value: any): value is UiDataSinkHttpDataPush;
|
|
2124
|
+
|
|
2125
|
+
export declare function instanceOfUiDataSinkHttpDataPushMethod(value: any): boolean;
|
|
2126
|
+
|
|
1736
2127
|
/**
|
|
1737
2128
|
* Check if a given object implements the UiDataSource interface.
|
|
1738
2129
|
*/
|
|
@@ -1750,6 +2141,13 @@ export declare function instanceOfUiDataSourceHttpDataMethod(value: any): boolea
|
|
|
1750
2141
|
*/
|
|
1751
2142
|
export declare function instanceOfUiDataSourceOnRequest(value: any): value is UiDataSourceOnRequest;
|
|
1752
2143
|
|
|
2144
|
+
/**
|
|
2145
|
+
* Check if a given object implements the UiInitiateTransferRequest interface.
|
|
2146
|
+
*/
|
|
2147
|
+
export declare function instanceOfUiInitiateTransferRequest(value: any): value is UiInitiateTransferRequest;
|
|
2148
|
+
|
|
2149
|
+
export declare function instanceOfUiInitiateTransferType(value: any): boolean;
|
|
2150
|
+
|
|
1753
2151
|
/**
|
|
1754
2152
|
* Check if a given object implements the UiPolicy interface.
|
|
1755
2153
|
*/
|
|
@@ -1846,15 +2244,117 @@ export declare function KpiResultToJSON(json: any): KpiResult;
|
|
|
1846
2244
|
|
|
1847
2245
|
export declare function KpiResultToJSONTyped(value?: KpiResult | null, ignoreDiscriminator?: boolean): any;
|
|
1848
2246
|
|
|
1849
|
-
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
2247
|
+
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
2248
|
+
|
|
2249
|
+
export declare interface Middleware {
|
|
2250
|
+
pre?(context: RequestContext): Promise<FetchParams | void>;
|
|
2251
|
+
post?(context: ResponseContext): Promise<Response | void>;
|
|
2252
|
+
onError?(context: ErrorContext): Promise<Response | void>;
|
|
2253
|
+
}
|
|
2254
|
+
|
|
2255
|
+
export declare type ModelPropertyNaming = 'camelCase' | 'snake_case' | 'PascalCase' | 'original';
|
|
2256
|
+
|
|
2257
|
+
/**
|
|
2258
|
+
* Negotiates all given assets by the given filter
|
|
2259
|
+
* @export
|
|
2260
|
+
* @interface NegotiateAllQuery
|
|
2261
|
+
*/
|
|
2262
|
+
export declare interface NegotiateAllQuery {
|
|
2263
|
+
/**
|
|
2264
|
+
* Target EDC DSP endpoint URL
|
|
2265
|
+
* @type {string}
|
|
2266
|
+
* @memberof NegotiateAllQuery
|
|
2267
|
+
*/
|
|
2268
|
+
connectorEndpoint: string;
|
|
2269
|
+
/**
|
|
2270
|
+
* Target EDC Participant ID
|
|
2271
|
+
* @type {string}
|
|
2272
|
+
* @memberof NegotiateAllQuery
|
|
2273
|
+
*/
|
|
2274
|
+
participantId: string;
|
|
2275
|
+
/**
|
|
2276
|
+
* Data offers to negotiate. Filter expressions, joined by AND. If left empty, all data offers are negotiated
|
|
2277
|
+
* @type {Array<AssetFilterConstraint>}
|
|
2278
|
+
* @memberof NegotiateAllQuery
|
|
2279
|
+
*/
|
|
2280
|
+
filter: Array<AssetFilterConstraint>;
|
|
2281
|
+
/**
|
|
2282
|
+
* Optional limit to limit the number of assets negotiated to
|
|
2283
|
+
* @type {number}
|
|
2284
|
+
* @memberof NegotiateAllQuery
|
|
2285
|
+
*/
|
|
2286
|
+
limit?: number;
|
|
2287
|
+
/**
|
|
2288
|
+
* Optionally listen to negotiation success / failure for new negotiations
|
|
2289
|
+
* @type {Array<CallbackAddressDto>}
|
|
2290
|
+
* @memberof NegotiateAllQuery
|
|
2291
|
+
*/
|
|
2292
|
+
callbackAddresses?: Array<CallbackAddressDto>;
|
|
2293
|
+
}
|
|
2294
|
+
|
|
2295
|
+
export declare function NegotiateAllQueryFromJSON(json: any): NegotiateAllQuery;
|
|
2296
|
+
|
|
2297
|
+
export declare function NegotiateAllQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): NegotiateAllQuery;
|
|
2298
|
+
|
|
2299
|
+
export declare function NegotiateAllQueryToJSON(json: any): NegotiateAllQuery;
|
|
2300
|
+
|
|
2301
|
+
export declare function NegotiateAllQueryToJSONTyped(value?: NegotiateAllQuery | null, ignoreDiscriminator?: boolean): any;
|
|
2302
|
+
|
|
2303
|
+
export declare interface NegotiateAllRequest {
|
|
2304
|
+
negotiateAllQuery: NegotiateAllQuery;
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
/**
|
|
2308
|
+
* Negotiations that either already exist or were started
|
|
2309
|
+
* @export
|
|
2310
|
+
* @interface NegotiateAllResult
|
|
2311
|
+
*/
|
|
2312
|
+
export declare interface NegotiateAllResult {
|
|
2313
|
+
/**
|
|
2314
|
+
* Negotiation ID (either existing or new if no active contract was found)
|
|
2315
|
+
* @type {string}
|
|
2316
|
+
* @memberof NegotiateAllResult
|
|
2317
|
+
*/
|
|
2318
|
+
contractNegotiationId: string;
|
|
2319
|
+
/**
|
|
2320
|
+
* Contract Agreement ID (will only be ever present if an active old negotiation was found)
|
|
2321
|
+
* @type {string}
|
|
2322
|
+
* @memberof NegotiateAllResult
|
|
2323
|
+
*/
|
|
2324
|
+
contractAgreementId?: string;
|
|
2325
|
+
/**
|
|
2326
|
+
* Contract Negotiation State
|
|
2327
|
+
* @type {ContractNegotiationState}
|
|
2328
|
+
* @memberof NegotiateAllResult
|
|
2329
|
+
*/
|
|
2330
|
+
state: ContractNegotiationState;
|
|
2331
|
+
/**
|
|
2332
|
+
* Contract Negotiation State Last Change
|
|
2333
|
+
* @type {Date}
|
|
2334
|
+
* @memberof NegotiateAllResult
|
|
2335
|
+
*/
|
|
2336
|
+
stateChangedAt: Date;
|
|
2337
|
+
/**
|
|
2338
|
+
* Asset that was negotiated. Will not contain asset metadata for already negotiated offers
|
|
2339
|
+
* @type {UiAsset}
|
|
2340
|
+
* @memberof NegotiateAllResult
|
|
2341
|
+
*/
|
|
2342
|
+
asset: UiAsset;
|
|
2343
|
+
/**
|
|
2344
|
+
* Contract Offer that was negotiated. Will not contain asset metadata for already negotiated offers
|
|
2345
|
+
* @type {UiPolicy}
|
|
2346
|
+
* @memberof NegotiateAllResult
|
|
2347
|
+
*/
|
|
2348
|
+
policy: UiPolicy;
|
|
2349
|
+
}
|
|
2350
|
+
|
|
2351
|
+
export declare function NegotiateAllResultFromJSON(json: any): NegotiateAllResult;
|
|
2352
|
+
|
|
2353
|
+
export declare function NegotiateAllResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): NegotiateAllResult;
|
|
1850
2354
|
|
|
1851
|
-
export declare
|
|
1852
|
-
pre?(context: RequestContext): Promise<FetchParams | void>;
|
|
1853
|
-
post?(context: ResponseContext): Promise<Response | void>;
|
|
1854
|
-
onError?(context: ErrorContext): Promise<Response | void>;
|
|
1855
|
-
}
|
|
2355
|
+
export declare function NegotiateAllResultToJSON(json: any): NegotiateAllResult;
|
|
1856
2356
|
|
|
1857
|
-
export declare
|
|
2357
|
+
export declare function NegotiateAllResultToJSONTyped(value?: NegotiateAllResult | null, ignoreDiscriminator?: boolean): any;
|
|
1858
2358
|
|
|
1859
2359
|
/**
|
|
1860
2360
|
* Type-Safe ODRL Policy Operator as supported by the sovity product landscape
|
|
@@ -1996,6 +2496,10 @@ export declare interface QueryCatalogRequest {
|
|
|
1996
2496
|
catalogQuery: CatalogQuery;
|
|
1997
2497
|
}
|
|
1998
2498
|
|
|
2499
|
+
export declare interface QueryCatalogV2Request {
|
|
2500
|
+
catalogQueryV2: CatalogQueryV2;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
1999
2503
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
2000
2504
|
|
|
2001
2505
|
export declare interface RequestContext {
|
|
@@ -2108,6 +2612,10 @@ export declare interface TerminateContractAgreementRequest {
|
|
|
2108
2612
|
contractTerminationRequest?: ContractTerminationRequest;
|
|
2109
2613
|
}
|
|
2110
2614
|
|
|
2615
|
+
export declare interface TerminateTransferProcessRequest {
|
|
2616
|
+
transferId: string;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2111
2619
|
export declare class TextApiResponse {
|
|
2112
2620
|
raw: Response;
|
|
2113
2621
|
constructor(raw: Response);
|
|
@@ -2138,6 +2646,12 @@ export declare interface TransferHistoryEntry {
|
|
|
2138
2646
|
* @memberof TransferHistoryEntry
|
|
2139
2647
|
*/
|
|
2140
2648
|
lastUpdatedDate: Date;
|
|
2649
|
+
/**
|
|
2650
|
+
* Transfer Type
|
|
2651
|
+
* @type {string}
|
|
2652
|
+
* @memberof TransferHistoryEntry
|
|
2653
|
+
*/
|
|
2654
|
+
transferType: string;
|
|
2141
2655
|
/**
|
|
2142
2656
|
* Transfer History State
|
|
2143
2657
|
* @type {TransferProcessState}
|
|
@@ -2186,6 +2700,12 @@ export declare interface TransferHistoryEntry {
|
|
|
2186
2700
|
* @memberof TransferHistoryEntry
|
|
2187
2701
|
*/
|
|
2188
2702
|
errorMessage?: string;
|
|
2703
|
+
/**
|
|
2704
|
+
* Whether this transfer is available for consumption via an EDR.
|
|
2705
|
+
* @type {boolean}
|
|
2706
|
+
* @memberof TransferHistoryEntry
|
|
2707
|
+
*/
|
|
2708
|
+
isEdrConsumable: boolean;
|
|
2189
2709
|
}
|
|
2190
2710
|
|
|
2191
2711
|
export declare function TransferHistoryEntryFromJSON(json: any): TransferHistoryEntry;
|
|
@@ -2268,6 +2788,46 @@ export declare function TransferProcessStateFromJSON(json: any): TransferProcess
|
|
|
2268
2788
|
|
|
2269
2789
|
export declare function TransferProcessStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessState;
|
|
2270
2790
|
|
|
2791
|
+
/**
|
|
2792
|
+
* Transfer process state
|
|
2793
|
+
* @export
|
|
2794
|
+
* @interface TransferProcessStateResult
|
|
2795
|
+
*/
|
|
2796
|
+
export declare interface TransferProcessStateResult {
|
|
2797
|
+
/**
|
|
2798
|
+
* Transfer Process ID
|
|
2799
|
+
* @type {string}
|
|
2800
|
+
* @memberof TransferProcessStateResult
|
|
2801
|
+
*/
|
|
2802
|
+
transferId: string;
|
|
2803
|
+
/**
|
|
2804
|
+
* Transfer Process State
|
|
2805
|
+
* @type {TransferProcessState}
|
|
2806
|
+
* @memberof TransferProcessStateResult
|
|
2807
|
+
*/
|
|
2808
|
+
state: TransferProcessState;
|
|
2809
|
+
/**
|
|
2810
|
+
* Transfer Process State Last Change
|
|
2811
|
+
* @type {Date}
|
|
2812
|
+
* @memberof TransferProcessStateResult
|
|
2813
|
+
*/
|
|
2814
|
+
stateChangedAt: Date;
|
|
2815
|
+
/**
|
|
2816
|
+
* Whether this transfer is available for consumption via an EDR.
|
|
2817
|
+
* @type {boolean}
|
|
2818
|
+
* @memberof TransferProcessStateResult
|
|
2819
|
+
*/
|
|
2820
|
+
isEdrConsumable: boolean;
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
export declare function TransferProcessStateResultFromJSON(json: any): TransferProcessStateResult;
|
|
2824
|
+
|
|
2825
|
+
export declare function TransferProcessStateResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessStateResult;
|
|
2826
|
+
|
|
2827
|
+
export declare function TransferProcessStateResultToJSON(json: any): TransferProcessStateResult;
|
|
2828
|
+
|
|
2829
|
+
export declare function TransferProcessStateResultToJSONTyped(value?: TransferProcessStateResult | null, ignoreDiscriminator?: boolean): any;
|
|
2830
|
+
|
|
2271
2831
|
/**
|
|
2272
2832
|
*
|
|
2273
2833
|
* @export
|
|
@@ -2325,11 +2885,13 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2325
2885
|
*/
|
|
2326
2886
|
createAsset(requestParameters?: CreateAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2327
2887
|
/**
|
|
2328
|
-
* Create a new Contract Definition
|
|
2888
|
+
* Create a new Contract Definition. Use [publishDataOffer] instead.
|
|
2889
|
+
* @deprecated
|
|
2329
2890
|
*/
|
|
2330
2891
|
createContractDefinitionRaw(requestParameters: CreateContractDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2331
2892
|
/**
|
|
2332
|
-
* Create a new Contract Definition
|
|
2893
|
+
* Create a new Contract Definition. Use [publishDataOffer] instead.
|
|
2894
|
+
* @deprecated
|
|
2333
2895
|
*/
|
|
2334
2896
|
createContractDefinition(requestParameters?: CreateContractDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2335
2897
|
/**
|
|
@@ -2398,6 +2960,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2398
2960
|
* Collect all data for Asset Page
|
|
2399
2961
|
*/
|
|
2400
2962
|
getAssetPage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AssetPage>;
|
|
2963
|
+
/**
|
|
2964
|
+
* Fetch a specific data offer from a connector
|
|
2965
|
+
*/
|
|
2966
|
+
getCatalogPageDataOfferRaw(requestParameters: GetCatalogPageDataOfferRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UiDataOffer>>;
|
|
2967
|
+
/**
|
|
2968
|
+
* Fetch a specific data offer from a connector
|
|
2969
|
+
*/
|
|
2970
|
+
getCatalogPageDataOffer(requestParameters: GetCatalogPageDataOfferRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UiDataOffer>;
|
|
2401
2971
|
/**
|
|
2402
2972
|
* Fetch a connector\'s data offers
|
|
2403
2973
|
*/
|
|
@@ -2424,10 +2994,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2424
2994
|
getContractAgreementPage(requestParameters?: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
2425
2995
|
/**
|
|
2426
2996
|
* Collect all data for Contract Definition Page
|
|
2997
|
+
* @deprecated
|
|
2427
2998
|
*/
|
|
2428
2999
|
getContractDefinitionPageRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractDefinitionPage>>;
|
|
2429
3000
|
/**
|
|
2430
3001
|
* Collect all data for Contract Definition Page
|
|
3002
|
+
* @deprecated
|
|
2431
3003
|
*/
|
|
2432
3004
|
getContractDefinitionPage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractDefinitionPage>;
|
|
2433
3005
|
/**
|
|
@@ -2487,13 +3059,23 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2487
3059
|
*/
|
|
2488
3060
|
initiateCustomTransfer(requestParameters?: InitiateCustomTransferOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2489
3061
|
/**
|
|
2490
|
-
* Initiate a Transfer Process
|
|
3062
|
+
* Initiate a Transfer Process. Deprecated. Use initiateTransferV2 instead
|
|
3063
|
+
* @deprecated
|
|
2491
3064
|
*/
|
|
2492
3065
|
initiateTransferRaw(requestParameters: InitiateTransferOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2493
3066
|
/**
|
|
2494
|
-
* Initiate a Transfer Process
|
|
3067
|
+
* Initiate a Transfer Process. Deprecated. Use initiateTransferV2 instead
|
|
3068
|
+
* @deprecated
|
|
2495
3069
|
*/
|
|
2496
3070
|
initiateTransfer(requestParameters?: InitiateTransferOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3071
|
+
/**
|
|
3072
|
+
* Initiate a Transfer Process. V2 Endpoint with support for Callback Addresses and well-typed data sinks
|
|
3073
|
+
*/
|
|
3074
|
+
initiateTransferV2Raw(requestParameters: InitiateTransferV2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
3075
|
+
/**
|
|
3076
|
+
* Initiate a Transfer Process. V2 Endpoint with support for Callback Addresses and well-typed data sinks
|
|
3077
|
+
*/
|
|
3078
|
+
initiateTransferV2(requestParameters?: InitiateTransferV2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2497
3079
|
/**
|
|
2498
3080
|
* Validates if the provided assetId is already taken
|
|
2499
3081
|
*/
|
|
@@ -2674,54 +3256,18 @@ export declare interface UiAsset {
|
|
|
2674
3256
|
* @memberof UiAsset
|
|
2675
3257
|
*/
|
|
2676
3258
|
httpDatasourceHintsProxyBody?: boolean;
|
|
2677
|
-
/**
|
|
2678
|
-
* Data Category
|
|
2679
|
-
* @type {string}
|
|
2680
|
-
* @memberof UiAsset
|
|
2681
|
-
*/
|
|
2682
|
-
dataCategory?: string;
|
|
2683
|
-
/**
|
|
2684
|
-
* Data Subcategory
|
|
2685
|
-
* @type {string}
|
|
2686
|
-
* @memberof UiAsset
|
|
2687
|
-
*/
|
|
2688
|
-
dataSubcategory?: string;
|
|
2689
3259
|
/**
|
|
2690
3260
|
* Data Model
|
|
2691
3261
|
* @type {string}
|
|
2692
3262
|
* @memberof UiAsset
|
|
2693
3263
|
*/
|
|
2694
3264
|
dataModel?: string;
|
|
2695
|
-
/**
|
|
2696
|
-
* Geo-Reference Method
|
|
2697
|
-
* @type {string}
|
|
2698
|
-
* @memberof UiAsset
|
|
2699
|
-
*/
|
|
2700
|
-
geoReferenceMethod?: string;
|
|
2701
|
-
/**
|
|
2702
|
-
* Transport Mode
|
|
2703
|
-
* @type {string}
|
|
2704
|
-
* @memberof UiAsset
|
|
2705
|
-
*/
|
|
2706
|
-
transportMode?: string;
|
|
2707
3265
|
/**
|
|
2708
3266
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2709
3267
|
* @type {string}
|
|
2710
3268
|
* @memberof UiAsset
|
|
2711
3269
|
*/
|
|
2712
3270
|
sovereignLegalName?: string;
|
|
2713
|
-
/**
|
|
2714
|
-
* Geo location
|
|
2715
|
-
* @type {string}
|
|
2716
|
-
* @memberof UiAsset
|
|
2717
|
-
*/
|
|
2718
|
-
geoLocation?: string;
|
|
2719
|
-
/**
|
|
2720
|
-
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2721
|
-
* @type {Array<string>}
|
|
2722
|
-
* @memberof UiAsset
|
|
2723
|
-
*/
|
|
2724
|
-
nutsLocations?: Array<string>;
|
|
2725
3271
|
/**
|
|
2726
3272
|
* Data sample URLs
|
|
2727
3273
|
* @type {Array<string>}
|
|
@@ -2868,54 +3414,18 @@ export declare interface UiAssetCreateRequest {
|
|
|
2868
3414
|
* @memberof UiAssetCreateRequest
|
|
2869
3415
|
*/
|
|
2870
3416
|
landingPageUrl?: string;
|
|
2871
|
-
/**
|
|
2872
|
-
* Data Category
|
|
2873
|
-
* @type {string}
|
|
2874
|
-
* @memberof UiAssetCreateRequest
|
|
2875
|
-
*/
|
|
2876
|
-
dataCategory?: string;
|
|
2877
|
-
/**
|
|
2878
|
-
* Data Subcategory
|
|
2879
|
-
* @type {string}
|
|
2880
|
-
* @memberof UiAssetCreateRequest
|
|
2881
|
-
*/
|
|
2882
|
-
dataSubcategory?: string;
|
|
2883
3417
|
/**
|
|
2884
3418
|
* Data Model
|
|
2885
3419
|
* @type {string}
|
|
2886
3420
|
* @memberof UiAssetCreateRequest
|
|
2887
3421
|
*/
|
|
2888
3422
|
dataModel?: string;
|
|
2889
|
-
/**
|
|
2890
|
-
* Geo-Reference Method
|
|
2891
|
-
* @type {string}
|
|
2892
|
-
* @memberof UiAssetCreateRequest
|
|
2893
|
-
*/
|
|
2894
|
-
geoReferenceMethod?: string;
|
|
2895
|
-
/**
|
|
2896
|
-
* Transport Mode
|
|
2897
|
-
* @type {string}
|
|
2898
|
-
* @memberof UiAssetCreateRequest
|
|
2899
|
-
*/
|
|
2900
|
-
transportMode?: string;
|
|
2901
3423
|
/**
|
|
2902
3424
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2903
3425
|
* @type {string}
|
|
2904
3426
|
* @memberof UiAssetCreateRequest
|
|
2905
3427
|
*/
|
|
2906
3428
|
sovereignLegalName?: string;
|
|
2907
|
-
/**
|
|
2908
|
-
* Geo location
|
|
2909
|
-
* @type {string}
|
|
2910
|
-
* @memberof UiAssetCreateRequest
|
|
2911
|
-
*/
|
|
2912
|
-
geoLocation?: string;
|
|
2913
|
-
/**
|
|
2914
|
-
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2915
|
-
* @type {Array<string>}
|
|
2916
|
-
* @memberof UiAssetCreateRequest
|
|
2917
|
-
*/
|
|
2918
|
-
nutsLocations?: Array<string>;
|
|
2919
3429
|
/**
|
|
2920
3430
|
* Data sample URLs
|
|
2921
3431
|
* @type {Array<string>}
|
|
@@ -3058,54 +3568,18 @@ export declare interface UiAssetEditRequest {
|
|
|
3058
3568
|
* @memberof UiAssetEditRequest
|
|
3059
3569
|
*/
|
|
3060
3570
|
landingPageUrl?: string;
|
|
3061
|
-
/**
|
|
3062
|
-
* Data Category
|
|
3063
|
-
* @type {string}
|
|
3064
|
-
* @memberof UiAssetEditRequest
|
|
3065
|
-
*/
|
|
3066
|
-
dataCategory?: string;
|
|
3067
|
-
/**
|
|
3068
|
-
* Data Subcategory
|
|
3069
|
-
* @type {string}
|
|
3070
|
-
* @memberof UiAssetEditRequest
|
|
3071
|
-
*/
|
|
3072
|
-
dataSubcategory?: string;
|
|
3073
3571
|
/**
|
|
3074
3572
|
* Data Model
|
|
3075
3573
|
* @type {string}
|
|
3076
3574
|
* @memberof UiAssetEditRequest
|
|
3077
3575
|
*/
|
|
3078
3576
|
dataModel?: string;
|
|
3079
|
-
/**
|
|
3080
|
-
* Geo-Reference Method
|
|
3081
|
-
* @type {string}
|
|
3082
|
-
* @memberof UiAssetEditRequest
|
|
3083
|
-
*/
|
|
3084
|
-
geoReferenceMethod?: string;
|
|
3085
|
-
/**
|
|
3086
|
-
* Transport Mode
|
|
3087
|
-
* @type {string}
|
|
3088
|
-
* @memberof UiAssetEditRequest
|
|
3089
|
-
*/
|
|
3090
|
-
transportMode?: string;
|
|
3091
3577
|
/**
|
|
3092
3578
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
3093
3579
|
* @type {string}
|
|
3094
3580
|
* @memberof UiAssetEditRequest
|
|
3095
3581
|
*/
|
|
3096
3582
|
sovereignLegalName?: string;
|
|
3097
|
-
/**
|
|
3098
|
-
* Geo location
|
|
3099
|
-
* @type {string}
|
|
3100
|
-
* @memberof UiAssetEditRequest
|
|
3101
|
-
*/
|
|
3102
|
-
geoLocation?: string;
|
|
3103
|
-
/**
|
|
3104
|
-
* Locations by NUTS standard which divides countries into administrative divisions
|
|
3105
|
-
* @type {Array<string>}
|
|
3106
|
-
* @memberof UiAssetEditRequest
|
|
3107
|
-
*/
|
|
3108
|
-
nutsLocations?: Array<string>;
|
|
3109
3583
|
/**
|
|
3110
3584
|
* Data sample URLs
|
|
3111
3585
|
* @type {Array<string>}
|
|
@@ -3365,7 +3839,7 @@ export declare function UiContractOfferToJSON(json: any): UiContractOffer;
|
|
|
3365
3839
|
export declare function UiContractOfferToJSONTyped(value?: UiContractOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3366
3840
|
|
|
3367
3841
|
/**
|
|
3368
|
-
* Contract Definition Criterion as supported by the UI
|
|
3842
|
+
* Contract Definition Criterion as supported by the UI. Will be replaced by [AssetFilterConstraint] over time for better typing of asset property paths.
|
|
3369
3843
|
* @export
|
|
3370
3844
|
* @interface UiCriterion
|
|
3371
3845
|
*/
|
|
@@ -3380,12 +3854,14 @@ export declare interface UiCriterion {
|
|
|
3380
3854
|
* Operator
|
|
3381
3855
|
* @type {UiCriterionOperator}
|
|
3382
3856
|
* @memberof UiCriterion
|
|
3857
|
+
* @deprecated
|
|
3383
3858
|
*/
|
|
3384
3859
|
operator: UiCriterionOperator;
|
|
3385
3860
|
/**
|
|
3386
3861
|
* Right Operand
|
|
3387
3862
|
* @type {UiCriterionLiteral}
|
|
3388
3863
|
* @memberof UiCriterion
|
|
3864
|
+
* @deprecated
|
|
3389
3865
|
*/
|
|
3390
3866
|
operandRight: UiCriterionLiteral;
|
|
3391
3867
|
}
|
|
@@ -3404,6 +3880,7 @@ export declare interface UiCriterionLiteral {
|
|
|
3404
3880
|
*
|
|
3405
3881
|
* @type {UiCriterionLiteralType}
|
|
3406
3882
|
* @memberof UiCriterionLiteral
|
|
3883
|
+
* @deprecated
|
|
3407
3884
|
*/
|
|
3408
3885
|
type?: UiCriterionLiteralType;
|
|
3409
3886
|
/**
|
|
@@ -3511,6 +3988,82 @@ export declare function UiDataOfferToJSON(json: any): UiDataOffer;
|
|
|
3511
3988
|
|
|
3512
3989
|
export declare function UiDataOfferToJSONTyped(value?: UiDataOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3513
3990
|
|
|
3991
|
+
/**
|
|
3992
|
+
* 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
|
|
3993
|
+
* @export
|
|
3994
|
+
* @interface UiDataSinkHttpDataPush
|
|
3995
|
+
*/
|
|
3996
|
+
export declare interface UiDataSinkHttpDataPush {
|
|
3997
|
+
/**
|
|
3998
|
+
* HTTP Request Method
|
|
3999
|
+
* @type {UiDataSinkHttpDataPushMethod}
|
|
4000
|
+
* @memberof UiDataSinkHttpDataPush
|
|
4001
|
+
*/
|
|
4002
|
+
method?: UiDataSinkHttpDataPushMethod;
|
|
4003
|
+
/**
|
|
4004
|
+
* HTTP Request URL.
|
|
4005
|
+
* @type {string}
|
|
4006
|
+
* @memberof UiDataSinkHttpDataPush
|
|
4007
|
+
*/
|
|
4008
|
+
baseUrl: string;
|
|
4009
|
+
/**
|
|
4010
|
+
* HTTP Request Query Params / Query String.
|
|
4011
|
+
* @type {string}
|
|
4012
|
+
* @memberof UiDataSinkHttpDataPush
|
|
4013
|
+
*/
|
|
4014
|
+
queryString?: string;
|
|
4015
|
+
/**
|
|
4016
|
+
* Auth Header name. The auth header is handled specially by the EDC as its value can be read from a vault.
|
|
4017
|
+
* @type {string}
|
|
4018
|
+
* @memberof UiDataSinkHttpDataPush
|
|
4019
|
+
*/
|
|
4020
|
+
authHeaderName?: string;
|
|
4021
|
+
/**
|
|
4022
|
+
* Auth Header value.
|
|
4023
|
+
* @type {SecretValue}
|
|
4024
|
+
* @memberof UiDataSinkHttpDataPush
|
|
4025
|
+
*/
|
|
4026
|
+
authHeaderValue?: SecretValue;
|
|
4027
|
+
/**
|
|
4028
|
+
* HTTP Request Headers.
|
|
4029
|
+
* @type {{ [key: string]: string; }}
|
|
4030
|
+
* @memberof UiDataSinkHttpDataPush
|
|
4031
|
+
*/
|
|
4032
|
+
headers?: {
|
|
4033
|
+
[key: string]: string;
|
|
4034
|
+
};
|
|
4035
|
+
}
|
|
4036
|
+
|
|
4037
|
+
export declare function UiDataSinkHttpDataPushFromJSON(json: any): UiDataSinkHttpDataPush;
|
|
4038
|
+
|
|
4039
|
+
export declare function UiDataSinkHttpDataPushFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSinkHttpDataPush;
|
|
4040
|
+
|
|
4041
|
+
/**
|
|
4042
|
+
* Supported HTTP Methods by UiDataSink
|
|
4043
|
+
* @export
|
|
4044
|
+
*/
|
|
4045
|
+
export declare const UiDataSinkHttpDataPushMethod: {
|
|
4046
|
+
readonly Post: "POST";
|
|
4047
|
+
readonly Put: "PUT";
|
|
4048
|
+
readonly Patch: "PATCH";
|
|
4049
|
+
readonly Delete: "DELETE";
|
|
4050
|
+
readonly Options: "OPTIONS";
|
|
4051
|
+
};
|
|
4052
|
+
|
|
4053
|
+
export declare type UiDataSinkHttpDataPushMethod = (typeof UiDataSinkHttpDataPushMethod)[keyof typeof UiDataSinkHttpDataPushMethod];
|
|
4054
|
+
|
|
4055
|
+
export declare function UiDataSinkHttpDataPushMethodFromJSON(json: any): UiDataSinkHttpDataPushMethod;
|
|
4056
|
+
|
|
4057
|
+
export declare function UiDataSinkHttpDataPushMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSinkHttpDataPushMethod;
|
|
4058
|
+
|
|
4059
|
+
export declare function UiDataSinkHttpDataPushMethodToJSON(value?: UiDataSinkHttpDataPushMethod | null): any;
|
|
4060
|
+
|
|
4061
|
+
export declare function UiDataSinkHttpDataPushMethodToJSONTyped(value: any, ignoreDiscriminator: boolean): UiDataSinkHttpDataPushMethod;
|
|
4062
|
+
|
|
4063
|
+
export declare function UiDataSinkHttpDataPushToJSON(json: any): UiDataSinkHttpDataPush;
|
|
4064
|
+
|
|
4065
|
+
export declare function UiDataSinkHttpDataPushToJSONTyped(value?: UiDataSinkHttpDataPush | null, ignoreDiscriminator?: boolean): any;
|
|
4066
|
+
|
|
3514
4067
|
/**
|
|
3515
4068
|
* Type-safe data source as supported by the sovity product landscape. Contains extension points for using custom data address properties.
|
|
3516
4069
|
* @export
|
|
@@ -3682,6 +4235,95 @@ export declare function UiDataSourceToJSON(json: any): UiDataSource;
|
|
|
3682
4235
|
|
|
3683
4236
|
export declare function UiDataSourceToJSONTyped(value?: UiDataSource | null, ignoreDiscriminator?: boolean): any;
|
|
3684
4237
|
|
|
4238
|
+
/**
|
|
4239
|
+
* Type-safe data sink as supported by the sovity product landscape. Contains extension points for using custom data address properties.
|
|
4240
|
+
* @export
|
|
4241
|
+
* @interface UiInitiateTransferRequest
|
|
4242
|
+
*/
|
|
4243
|
+
export declare interface UiInitiateTransferRequest {
|
|
4244
|
+
/**
|
|
4245
|
+
* Contract Agreement ID
|
|
4246
|
+
* @type {string}
|
|
4247
|
+
* @memberof UiInitiateTransferRequest
|
|
4248
|
+
*/
|
|
4249
|
+
contractAgreementId: string;
|
|
4250
|
+
/**
|
|
4251
|
+
* Type of a transfer to initiate
|
|
4252
|
+
* @type {UiInitiateTransferType}
|
|
4253
|
+
* @memberof UiInitiateTransferRequest
|
|
4254
|
+
*/
|
|
4255
|
+
type: UiInitiateTransferType;
|
|
4256
|
+
/**
|
|
4257
|
+
* Only for type HTTP_DATA_PUSH
|
|
4258
|
+
* @type {UiDataSinkHttpDataPush}
|
|
4259
|
+
* @memberof UiInitiateTransferRequest
|
|
4260
|
+
*/
|
|
4261
|
+
httpDataPush?: UiDataSinkHttpDataPush;
|
|
4262
|
+
/**
|
|
4263
|
+
* List of endpoints to call upon given transfer events
|
|
4264
|
+
* @type {Array<CallbackAddressDto>}
|
|
4265
|
+
* @memberof UiInitiateTransferRequest
|
|
4266
|
+
*/
|
|
4267
|
+
callbackAddresses?: Array<CallbackAddressDto>;
|
|
4268
|
+
/**
|
|
4269
|
+
* For all types. Custom Data Address Properties.
|
|
4270
|
+
* @type {{ [key: string]: string; }}
|
|
4271
|
+
* @memberof UiInitiateTransferRequest
|
|
4272
|
+
*/
|
|
4273
|
+
customDataSinkProperties?: {
|
|
4274
|
+
[key: string]: string;
|
|
4275
|
+
};
|
|
4276
|
+
/**
|
|
4277
|
+
* For all types. Custom Transfer Process Properties.
|
|
4278
|
+
* @type {{ [key: string]: string; }}
|
|
4279
|
+
* @memberof UiInitiateTransferRequest
|
|
4280
|
+
*/
|
|
4281
|
+
customTransferPrivateProperties?: {
|
|
4282
|
+
[key: string]: string;
|
|
4283
|
+
};
|
|
4284
|
+
/**
|
|
4285
|
+
* For all types. Override the Transfer Type.
|
|
4286
|
+
* @type {string}
|
|
4287
|
+
* @memberof UiInitiateTransferRequest
|
|
4288
|
+
*/
|
|
4289
|
+
customTransferType?: string;
|
|
4290
|
+
}
|
|
4291
|
+
|
|
4292
|
+
export declare function UiInitiateTransferRequestFromJSON(json: any): UiInitiateTransferRequest;
|
|
4293
|
+
|
|
4294
|
+
export declare function UiInitiateTransferRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiInitiateTransferRequest;
|
|
4295
|
+
|
|
4296
|
+
export declare function UiInitiateTransferRequestToJSON(json: any): UiInitiateTransferRequest;
|
|
4297
|
+
|
|
4298
|
+
export declare function UiInitiateTransferRequestToJSONTyped(value?: UiInitiateTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
4299
|
+
|
|
4300
|
+
/**
|
|
4301
|
+
* Supported Data Sink Types by UiDataSink:
|
|
4302
|
+
* - `HTTP_DATA_PUSH`: This EDC's data plane pushes the data into the given data sink, putting the payload as request body.
|
|
4303
|
+
* - `HTTP_DATA_PROXY`: Once the transfer is in the status STARTED, you can call a 2nd endpoint to receive the EDR.
|
|
4304
|
+
* The EDR will contain an URL you can call as a proxy to the data source. Which parts of the HTTP call are passed
|
|
4305
|
+
* on is decided by the configuration of parameterization on the data source, e.g. an added path, method, body or query params.
|
|
4306
|
+
* - `CUSTOM`: Provide custom transfer type, data sink properties and transfer properties to use a
|
|
4307
|
+
* transfer type that is not fully integrated into the API Wrapper yet.
|
|
4308
|
+
*
|
|
4309
|
+
* @export
|
|
4310
|
+
*/
|
|
4311
|
+
export declare const UiInitiateTransferType: {
|
|
4312
|
+
readonly HttpDataPush: "HTTP_DATA_PUSH";
|
|
4313
|
+
readonly HttpDataProxy: "HTTP_DATA_PROXY";
|
|
4314
|
+
readonly Custom: "CUSTOM";
|
|
4315
|
+
};
|
|
4316
|
+
|
|
4317
|
+
export declare type UiInitiateTransferType = (typeof UiInitiateTransferType)[keyof typeof UiInitiateTransferType];
|
|
4318
|
+
|
|
4319
|
+
export declare function UiInitiateTransferTypeFromJSON(json: any): UiInitiateTransferType;
|
|
4320
|
+
|
|
4321
|
+
export declare function UiInitiateTransferTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiInitiateTransferType;
|
|
4322
|
+
|
|
4323
|
+
export declare function UiInitiateTransferTypeToJSON(value?: UiInitiateTransferType | null): any;
|
|
4324
|
+
|
|
4325
|
+
export declare function UiInitiateTransferTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiInitiateTransferType;
|
|
4326
|
+
|
|
3685
4327
|
/**
|
|
3686
4328
|
* Type-Safe OpenAPI generator friendly ODLR policy subset as endorsed by sovity.
|
|
3687
4329
|
* @export
|
|
@@ -3891,6 +4533,14 @@ export declare function UiPolicyToJSONTyped(value?: UiPolicy | null, ignoreDiscr
|
|
|
3891
4533
|
*
|
|
3892
4534
|
*/
|
|
3893
4535
|
export declare class UseCaseApi extends runtime.BaseAPI {
|
|
4536
|
+
/**
|
|
4537
|
+
* Fetch contract negotiation states as batch
|
|
4538
|
+
*/
|
|
4539
|
+
getContractNegotiationStatesRaw(requestParameters: GetContractNegotiationStatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<ContractNegotiationStateResult>>>;
|
|
4540
|
+
/**
|
|
4541
|
+
* Fetch contract negotiation states as batch
|
|
4542
|
+
*/
|
|
4543
|
+
getContractNegotiationStates(requestParameters: GetContractNegotiationStatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ContractNegotiationStateResult>>;
|
|
3894
4544
|
/**
|
|
3895
4545
|
* Basic KPIs about the running EDC Connector.
|
|
3896
4546
|
*/
|
|
@@ -3907,14 +4557,56 @@ export declare class UseCaseApi extends runtime.BaseAPI {
|
|
|
3907
4557
|
* List available functions in policies, prohibitions and obligations.
|
|
3908
4558
|
*/
|
|
3909
4559
|
getSupportedFunctions(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<string>>;
|
|
4560
|
+
/**
|
|
4561
|
+
* Fetch the EDR for a given transfer process. Refreshes EDR if expired. The transfer must have been started as HttpData-PROXY.
|
|
4562
|
+
*/
|
|
4563
|
+
getTransferProcessEdrRaw(requestParameters: GetTransferProcessEdrRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<EdrDto>>;
|
|
4564
|
+
/**
|
|
4565
|
+
* Fetch the EDR for a given transfer process. Refreshes EDR if expired. The transfer must have been started as HttpData-PROXY.
|
|
4566
|
+
*/
|
|
4567
|
+
getTransferProcessEdr(requestParameters: GetTransferProcessEdrRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<EdrDto>;
|
|
4568
|
+
/**
|
|
4569
|
+
* Fetch transfer process states as batch
|
|
4570
|
+
*/
|
|
4571
|
+
getTransferProcessStatesRaw(requestParameters: GetTransferProcessStatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<TransferProcessStateResult>>>;
|
|
4572
|
+
/**
|
|
4573
|
+
* Fetch transfer process states as batch
|
|
4574
|
+
*/
|
|
4575
|
+
getTransferProcessStates(requestParameters: GetTransferProcessStatesRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<TransferProcessStateResult>>;
|
|
4576
|
+
/**
|
|
4577
|
+
* Negotiate all assets with the given nested asset property filter. Only negotiates assets without active agreements. Returns existing agreements if found.
|
|
4578
|
+
*/
|
|
4579
|
+
negotiateAllRaw(requestParameters: NegotiateAllRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<NegotiateAllResult>>>;
|
|
4580
|
+
/**
|
|
4581
|
+
* Negotiate all assets with the given nested asset property filter. Only negotiates assets without active agreements. Returns existing agreements if found.
|
|
4582
|
+
*/
|
|
4583
|
+
negotiateAll(requestParameters: NegotiateAllRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<NegotiateAllResult>>;
|
|
3910
4584
|
/**
|
|
3911
4585
|
* Fetch a connector\'s data offers
|
|
4586
|
+
* @deprecated
|
|
3912
4587
|
*/
|
|
3913
4588
|
queryCatalogRaw(requestParameters: QueryCatalogRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<UiDataOffer>>>;
|
|
3914
4589
|
/**
|
|
3915
4590
|
* Fetch a connector\'s data offers
|
|
4591
|
+
* @deprecated
|
|
3916
4592
|
*/
|
|
3917
4593
|
queryCatalog(requestParameters: QueryCatalogRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiDataOffer>>;
|
|
4594
|
+
/**
|
|
4595
|
+
* Fetch a connector\'s data offers filtering the catalog by nested asset properties
|
|
4596
|
+
*/
|
|
4597
|
+
queryCatalogV2Raw(requestParameters: QueryCatalogV2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<UiDataOffer>>>;
|
|
4598
|
+
/**
|
|
4599
|
+
* Fetch a connector\'s data offers filtering the catalog by nested asset properties
|
|
4600
|
+
*/
|
|
4601
|
+
queryCatalogV2(requestParameters: QueryCatalogV2Request, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiDataOffer>>;
|
|
4602
|
+
/**
|
|
4603
|
+
* Delete the EDR and terminate the given transfer process.
|
|
4604
|
+
*/
|
|
4605
|
+
terminateTransferProcessRaw(requestParameters: TerminateTransferProcessRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
4606
|
+
/**
|
|
4607
|
+
* Delete the EDR and terminate the given transfer process.
|
|
4608
|
+
*/
|
|
4609
|
+
terminateTransferProcess(requestParameters: TerminateTransferProcessRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3918
4610
|
}
|
|
3919
4611
|
|
|
3920
4612
|
export declare class VoidApiResponse {
|