@sovity.de/edc-client 11.0.0 → 13.0.0
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;
|
|
@@ -977,6 +1254,12 @@ export declare interface DashboardPage {
|
|
|
977
1254
|
* @memberof DashboardPage
|
|
978
1255
|
*/
|
|
979
1256
|
transferProcessesProviding: DashboardTransferAmounts;
|
|
1257
|
+
/**
|
|
1258
|
+
* Your Connector's Management API URL for API Users
|
|
1259
|
+
* @type {string}
|
|
1260
|
+
* @memberof DashboardPage
|
|
1261
|
+
*/
|
|
1262
|
+
managementApiUrlShownInDashboard: string;
|
|
980
1263
|
/**
|
|
981
1264
|
* Your Connector's Connector Endpoint
|
|
982
1265
|
* @type {string}
|
|
@@ -1222,6 +1505,40 @@ export declare interface EditAssetRequest {
|
|
|
1222
1505
|
uiAssetEditRequest?: UiAssetEditRequest;
|
|
1223
1506
|
}
|
|
1224
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
|
+
|
|
1225
1542
|
/**
|
|
1226
1543
|
*
|
|
1227
1544
|
*/
|
|
@@ -1284,6 +1601,12 @@ export declare interface FileUploadCreateAssetRequest {
|
|
|
1284
1601
|
uiAssetCreateRequest: UiAssetCreateRequest;
|
|
1285
1602
|
}
|
|
1286
1603
|
|
|
1604
|
+
export declare interface GetCatalogPageDataOfferRequest {
|
|
1605
|
+
participantId: string;
|
|
1606
|
+
connectorEndpoint: string;
|
|
1607
|
+
dataOfferId: string;
|
|
1608
|
+
}
|
|
1609
|
+
|
|
1287
1610
|
export declare interface GetCatalogPageDataOffersRequest {
|
|
1288
1611
|
participantId?: string;
|
|
1289
1612
|
connectorEndpoint?: string;
|
|
@@ -1301,10 +1624,22 @@ export declare interface GetContractNegotiationRequest {
|
|
|
1301
1624
|
contractNegotiationId: string;
|
|
1302
1625
|
}
|
|
1303
1626
|
|
|
1627
|
+
export declare interface GetContractNegotiationStatesRequest {
|
|
1628
|
+
requestBody: Array<string>;
|
|
1629
|
+
}
|
|
1630
|
+
|
|
1304
1631
|
export declare interface GetTransferProcessAssetRequest {
|
|
1305
1632
|
transferProcessId: string;
|
|
1306
1633
|
}
|
|
1307
1634
|
|
|
1635
|
+
export declare interface GetTransferProcessEdrRequest {
|
|
1636
|
+
transferId: string;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
export declare interface GetTransferProcessStatesRequest {
|
|
1640
|
+
requestBody: Array<string>;
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1308
1643
|
export declare type HTTPBody = Json | FormData | URLSearchParams;
|
|
1309
1644
|
|
|
1310
1645
|
export declare type HTTPHeaders = {
|
|
@@ -1464,11 +1799,22 @@ export declare function InitiateTransferRequestToJSON(json: any): InitiateTransf
|
|
|
1464
1799
|
|
|
1465
1800
|
export declare function InitiateTransferRequestToJSONTyped(value?: InitiateTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1466
1801
|
|
|
1802
|
+
export declare interface InitiateTransferV2Request {
|
|
1803
|
+
uiInitiateTransferRequest?: UiInitiateTransferRequest;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1467
1806
|
export declare type InitOverrideFunction = (requestContext: {
|
|
1468
1807
|
init: HTTPRequestInit;
|
|
1469
1808
|
context: RequestOpts;
|
|
1470
1809
|
}) => Promise<RequestInit>;
|
|
1471
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
|
+
|
|
1472
1818
|
/**
|
|
1473
1819
|
* Check if a given object implements the AssetPage interface.
|
|
1474
1820
|
*/
|
|
@@ -1479,6 +1825,13 @@ export declare function instanceOfAssetPage(value: any): value is AssetPage;
|
|
|
1479
1825
|
*/
|
|
1480
1826
|
export declare function instanceOfBuildInfo(value: any): value is BuildInfo;
|
|
1481
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
|
+
|
|
1482
1835
|
/**
|
|
1483
1836
|
* Check if a given object implements the CatalogFilterExpression interface.
|
|
1484
1837
|
*/
|
|
@@ -1498,6 +1851,18 @@ export declare function instanceOfCatalogFilterExpressionOperator(value: any): b
|
|
|
1498
1851
|
*/
|
|
1499
1852
|
export declare function instanceOfCatalogQuery(value: any): value is CatalogQuery;
|
|
1500
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
|
+
|
|
1501
1866
|
/**
|
|
1502
1867
|
* Check if a given object implements the ConnectorLimits interface.
|
|
1503
1868
|
*/
|
|
@@ -1557,6 +1922,11 @@ export declare function instanceOfContractNegotiationSimplifiedState(value: any)
|
|
|
1557
1922
|
*/
|
|
1558
1923
|
export declare function instanceOfContractNegotiationState(value: any): value is ContractNegotiationState;
|
|
1559
1924
|
|
|
1925
|
+
/**
|
|
1926
|
+
* Check if a given object implements the ContractNegotiationStateResult interface.
|
|
1927
|
+
*/
|
|
1928
|
+
export declare function instanceOfContractNegotiationStateResult(value: any): value is ContractNegotiationStateResult;
|
|
1929
|
+
|
|
1560
1930
|
export declare function instanceOfContractTerminatedBy(value: any): boolean;
|
|
1561
1931
|
|
|
1562
1932
|
/**
|
|
@@ -1597,6 +1967,11 @@ export declare function instanceOfDataSourceAvailability(value: any): boolean;
|
|
|
1597
1967
|
|
|
1598
1968
|
export declare function instanceOfDataSourceType(value: any): boolean;
|
|
1599
1969
|
|
|
1970
|
+
/**
|
|
1971
|
+
* Check if a given object implements the EdrDto interface.
|
|
1972
|
+
*/
|
|
1973
|
+
export declare function instanceOfEdrDto(value: any): value is EdrDto;
|
|
1974
|
+
|
|
1600
1975
|
/**
|
|
1601
1976
|
* Check if a given object implements the IdAvailabilityResponse interface.
|
|
1602
1977
|
*/
|
|
@@ -1622,6 +1997,16 @@ export declare function instanceOfInitiateTransferRequest(value: any): value is
|
|
|
1622
1997
|
*/
|
|
1623
1998
|
export declare function instanceOfKpiResult(value: any): value is KpiResult;
|
|
1624
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
|
+
|
|
1625
2010
|
export declare function instanceOfOperatorDto(value: any): boolean;
|
|
1626
2011
|
|
|
1627
2012
|
/**
|
|
@@ -1666,6 +2051,11 @@ export declare function instanceOfTransferProcessSimplifiedState(value: any): bo
|
|
|
1666
2051
|
*/
|
|
1667
2052
|
export declare function instanceOfTransferProcessState(value: any): value is TransferProcessState;
|
|
1668
2053
|
|
|
2054
|
+
/**
|
|
2055
|
+
* Check if a given object implements the TransferProcessStateResult interface.
|
|
2056
|
+
*/
|
|
2057
|
+
export declare function instanceOfTransferProcessStateResult(value: any): value is TransferProcessStateResult;
|
|
2058
|
+
|
|
1669
2059
|
/**
|
|
1670
2060
|
* Check if a given object implements the TransferProcessStatesDto interface.
|
|
1671
2061
|
*/
|
|
@@ -1686,6 +2076,18 @@ export declare function instanceOfUiAssetCreateRequest(value: any): value is UiA
|
|
|
1686
2076
|
*/
|
|
1687
2077
|
export declare function instanceOfUiAssetEditRequest(value: any): value is UiAssetEditRequest;
|
|
1688
2078
|
|
|
2079
|
+
/**
|
|
2080
|
+
* Check if a given object implements the UiConfig interface.
|
|
2081
|
+
*/
|
|
2082
|
+
export declare function instanceOfUiConfig(value: any): value is UiConfig;
|
|
2083
|
+
|
|
2084
|
+
export declare function instanceOfUiConfigFeature(value: any): boolean;
|
|
2085
|
+
|
|
2086
|
+
/**
|
|
2087
|
+
* Check if a given object implements the UiConfigPreconfiguredCounterparty interface.
|
|
2088
|
+
*/
|
|
2089
|
+
export declare function instanceOfUiConfigPreconfiguredCounterparty(value: any): value is UiConfigPreconfiguredCounterparty;
|
|
2090
|
+
|
|
1689
2091
|
/**
|
|
1690
2092
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
1691
2093
|
*/
|
|
@@ -1715,6 +2117,13 @@ export declare function instanceOfUiCriterionOperator(value: any): boolean;
|
|
|
1715
2117
|
*/
|
|
1716
2118
|
export declare function instanceOfUiDataOffer(value: any): value is UiDataOffer;
|
|
1717
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
|
+
|
|
1718
2127
|
/**
|
|
1719
2128
|
* Check if a given object implements the UiDataSource interface.
|
|
1720
2129
|
*/
|
|
@@ -1732,6 +2141,13 @@ export declare function instanceOfUiDataSourceHttpDataMethod(value: any): boolea
|
|
|
1732
2141
|
*/
|
|
1733
2142
|
export declare function instanceOfUiDataSourceOnRequest(value: any): value is UiDataSourceOnRequest;
|
|
1734
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
|
+
|
|
1735
2151
|
/**
|
|
1736
2152
|
* Check if a given object implements the UiPolicy interface.
|
|
1737
2153
|
*/
|
|
@@ -1839,21 +2255,123 @@ export declare interface Middleware {
|
|
|
1839
2255
|
export declare type ModelPropertyNaming = 'camelCase' | 'snake_case' | 'PascalCase' | 'original';
|
|
1840
2256
|
|
|
1841
2257
|
/**
|
|
1842
|
-
*
|
|
2258
|
+
* Negotiates all given assets by the given filter
|
|
1843
2259
|
* @export
|
|
2260
|
+
* @interface NegotiateAllQuery
|
|
1844
2261
|
*/
|
|
1845
|
-
export declare
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
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;
|
|
2354
|
+
|
|
2355
|
+
export declare function NegotiateAllResultToJSON(json: any): NegotiateAllResult;
|
|
2356
|
+
|
|
2357
|
+
export declare function NegotiateAllResultToJSONTyped(value?: NegotiateAllResult | null, ignoreDiscriminator?: boolean): any;
|
|
2358
|
+
|
|
2359
|
+
/**
|
|
2360
|
+
* Type-Safe ODRL Policy Operator as supported by the sovity product landscape
|
|
2361
|
+
* @export
|
|
2362
|
+
*/
|
|
2363
|
+
export declare const OperatorDto: {
|
|
2364
|
+
readonly Eq: "EQ";
|
|
2365
|
+
readonly Neq: "NEQ";
|
|
2366
|
+
readonly Gt: "GT";
|
|
2367
|
+
readonly Geq: "GEQ";
|
|
2368
|
+
readonly Lt: "LT";
|
|
2369
|
+
readonly Leq: "LEQ";
|
|
2370
|
+
readonly In: "IN";
|
|
2371
|
+
readonly HasPart: "HAS_PART";
|
|
2372
|
+
readonly IsA: "IS_A";
|
|
2373
|
+
readonly IsAllOf: "IS_ALL_OF";
|
|
2374
|
+
readonly IsAnyOf: "IS_ANY_OF";
|
|
1857
2375
|
readonly IsNoneOf: "IS_NONE_OF";
|
|
1858
2376
|
};
|
|
1859
2377
|
|
|
@@ -1978,6 +2496,10 @@ export declare interface QueryCatalogRequest {
|
|
|
1978
2496
|
catalogQuery: CatalogQuery;
|
|
1979
2497
|
}
|
|
1980
2498
|
|
|
2499
|
+
export declare interface QueryCatalogV2Request {
|
|
2500
|
+
catalogQueryV2: CatalogQueryV2;
|
|
2501
|
+
}
|
|
2502
|
+
|
|
1981
2503
|
export declare function querystring(params: HTTPQuery, prefix?: string): string;
|
|
1982
2504
|
|
|
1983
2505
|
export declare interface RequestContext {
|
|
@@ -2090,6 +2612,10 @@ export declare interface TerminateContractAgreementRequest {
|
|
|
2090
2612
|
contractTerminationRequest?: ContractTerminationRequest;
|
|
2091
2613
|
}
|
|
2092
2614
|
|
|
2615
|
+
export declare interface TerminateTransferProcessRequest {
|
|
2616
|
+
transferId: string;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2093
2619
|
export declare class TextApiResponse {
|
|
2094
2620
|
raw: Response;
|
|
2095
2621
|
constructor(raw: Response);
|
|
@@ -2120,6 +2646,12 @@ export declare interface TransferHistoryEntry {
|
|
|
2120
2646
|
* @memberof TransferHistoryEntry
|
|
2121
2647
|
*/
|
|
2122
2648
|
lastUpdatedDate: Date;
|
|
2649
|
+
/**
|
|
2650
|
+
* Transfer Type
|
|
2651
|
+
* @type {string}
|
|
2652
|
+
* @memberof TransferHistoryEntry
|
|
2653
|
+
*/
|
|
2654
|
+
transferType: string;
|
|
2123
2655
|
/**
|
|
2124
2656
|
* Transfer History State
|
|
2125
2657
|
* @type {TransferProcessState}
|
|
@@ -2168,6 +2700,12 @@ export declare interface TransferHistoryEntry {
|
|
|
2168
2700
|
* @memberof TransferHistoryEntry
|
|
2169
2701
|
*/
|
|
2170
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;
|
|
2171
2709
|
}
|
|
2172
2710
|
|
|
2173
2711
|
export declare function TransferHistoryEntryFromJSON(json: any): TransferHistoryEntry;
|
|
@@ -2250,6 +2788,46 @@ export declare function TransferProcessStateFromJSON(json: any): TransferProcess
|
|
|
2250
2788
|
|
|
2251
2789
|
export declare function TransferProcessStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessState;
|
|
2252
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
|
+
|
|
2253
2831
|
/**
|
|
2254
2832
|
*
|
|
2255
2833
|
* @export
|
|
@@ -2307,11 +2885,13 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2307
2885
|
*/
|
|
2308
2886
|
createAsset(requestParameters?: CreateAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2309
2887
|
/**
|
|
2310
|
-
* Create a new Contract Definition
|
|
2888
|
+
* Create a new Contract Definition. Use [publishDataOffer] instead.
|
|
2889
|
+
* @deprecated
|
|
2311
2890
|
*/
|
|
2312
2891
|
createContractDefinitionRaw(requestParameters: CreateContractDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2313
2892
|
/**
|
|
2314
|
-
* Create a new Contract Definition
|
|
2893
|
+
* Create a new Contract Definition. Use [publishDataOffer] instead.
|
|
2894
|
+
* @deprecated
|
|
2315
2895
|
*/
|
|
2316
2896
|
createContractDefinition(requestParameters?: CreateContractDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2317
2897
|
/**
|
|
@@ -2380,6 +2960,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2380
2960
|
* Collect all data for Asset Page
|
|
2381
2961
|
*/
|
|
2382
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>;
|
|
2383
2971
|
/**
|
|
2384
2972
|
* Fetch a connector\'s data offers
|
|
2385
2973
|
*/
|
|
@@ -2406,10 +2994,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2406
2994
|
getContractAgreementPage(requestParameters?: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
2407
2995
|
/**
|
|
2408
2996
|
* Collect all data for Contract Definition Page
|
|
2997
|
+
* @deprecated
|
|
2409
2998
|
*/
|
|
2410
2999
|
getContractDefinitionPageRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractDefinitionPage>>;
|
|
2411
3000
|
/**
|
|
2412
3001
|
* Collect all data for Contract Definition Page
|
|
3002
|
+
* @deprecated
|
|
2413
3003
|
*/
|
|
2414
3004
|
getContractDefinitionPage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractDefinitionPage>;
|
|
2415
3005
|
/**
|
|
@@ -2469,13 +3059,23 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2469
3059
|
*/
|
|
2470
3060
|
initiateCustomTransfer(requestParameters?: InitiateCustomTransferOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2471
3061
|
/**
|
|
2472
|
-
* Initiate a Transfer Process
|
|
3062
|
+
* Initiate a Transfer Process. Deprecated. Use initiateTransferV2 instead
|
|
3063
|
+
* @deprecated
|
|
2473
3064
|
*/
|
|
2474
3065
|
initiateTransferRaw(requestParameters: InitiateTransferOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2475
3066
|
/**
|
|
2476
|
-
* Initiate a Transfer Process
|
|
3067
|
+
* Initiate a Transfer Process. Deprecated. Use initiateTransferV2 instead
|
|
3068
|
+
* @deprecated
|
|
2477
3069
|
*/
|
|
2478
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>;
|
|
2479
3079
|
/**
|
|
2480
3080
|
* Validates if the provided assetId is already taken
|
|
2481
3081
|
*/
|
|
@@ -2508,6 +3108,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2508
3108
|
* Terminates a contract agreement designated by its contract agreement id.
|
|
2509
3109
|
*/
|
|
2510
3110
|
terminateContractAgreement(requestParameters: TerminateContractAgreementRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3111
|
+
/**
|
|
3112
|
+
* Get the UI configuration
|
|
3113
|
+
*/
|
|
3114
|
+
uiConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UiConfig>>;
|
|
3115
|
+
/**
|
|
3116
|
+
* Get the UI configuration
|
|
3117
|
+
*/
|
|
3118
|
+
uiConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UiConfig>;
|
|
2511
3119
|
}
|
|
2512
3120
|
|
|
2513
3121
|
/**
|
|
@@ -2648,54 +3256,18 @@ export declare interface UiAsset {
|
|
|
2648
3256
|
* @memberof UiAsset
|
|
2649
3257
|
*/
|
|
2650
3258
|
httpDatasourceHintsProxyBody?: boolean;
|
|
2651
|
-
/**
|
|
2652
|
-
* Data Category
|
|
2653
|
-
* @type {string}
|
|
2654
|
-
* @memberof UiAsset
|
|
2655
|
-
*/
|
|
2656
|
-
dataCategory?: string;
|
|
2657
|
-
/**
|
|
2658
|
-
* Data Subcategory
|
|
2659
|
-
* @type {string}
|
|
2660
|
-
* @memberof UiAsset
|
|
2661
|
-
*/
|
|
2662
|
-
dataSubcategory?: string;
|
|
2663
3259
|
/**
|
|
2664
3260
|
* Data Model
|
|
2665
3261
|
* @type {string}
|
|
2666
3262
|
* @memberof UiAsset
|
|
2667
3263
|
*/
|
|
2668
3264
|
dataModel?: string;
|
|
2669
|
-
/**
|
|
2670
|
-
* Geo-Reference Method
|
|
2671
|
-
* @type {string}
|
|
2672
|
-
* @memberof UiAsset
|
|
2673
|
-
*/
|
|
2674
|
-
geoReferenceMethod?: string;
|
|
2675
|
-
/**
|
|
2676
|
-
* Transport Mode
|
|
2677
|
-
* @type {string}
|
|
2678
|
-
* @memberof UiAsset
|
|
2679
|
-
*/
|
|
2680
|
-
transportMode?: string;
|
|
2681
3265
|
/**
|
|
2682
3266
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2683
3267
|
* @type {string}
|
|
2684
3268
|
* @memberof UiAsset
|
|
2685
3269
|
*/
|
|
2686
3270
|
sovereignLegalName?: string;
|
|
2687
|
-
/**
|
|
2688
|
-
* Geo location
|
|
2689
|
-
* @type {string}
|
|
2690
|
-
* @memberof UiAsset
|
|
2691
|
-
*/
|
|
2692
|
-
geoLocation?: string;
|
|
2693
|
-
/**
|
|
2694
|
-
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2695
|
-
* @type {Array<string>}
|
|
2696
|
-
* @memberof UiAsset
|
|
2697
|
-
*/
|
|
2698
|
-
nutsLocations?: Array<string>;
|
|
2699
3271
|
/**
|
|
2700
3272
|
* Data sample URLs
|
|
2701
3273
|
* @type {Array<string>}
|
|
@@ -2842,54 +3414,18 @@ export declare interface UiAssetCreateRequest {
|
|
|
2842
3414
|
* @memberof UiAssetCreateRequest
|
|
2843
3415
|
*/
|
|
2844
3416
|
landingPageUrl?: string;
|
|
2845
|
-
/**
|
|
2846
|
-
* Data Category
|
|
2847
|
-
* @type {string}
|
|
2848
|
-
* @memberof UiAssetCreateRequest
|
|
2849
|
-
*/
|
|
2850
|
-
dataCategory?: string;
|
|
2851
|
-
/**
|
|
2852
|
-
* Data Subcategory
|
|
2853
|
-
* @type {string}
|
|
2854
|
-
* @memberof UiAssetCreateRequest
|
|
2855
|
-
*/
|
|
2856
|
-
dataSubcategory?: string;
|
|
2857
3417
|
/**
|
|
2858
3418
|
* Data Model
|
|
2859
3419
|
* @type {string}
|
|
2860
3420
|
* @memberof UiAssetCreateRequest
|
|
2861
3421
|
*/
|
|
2862
3422
|
dataModel?: string;
|
|
2863
|
-
/**
|
|
2864
|
-
* Geo-Reference Method
|
|
2865
|
-
* @type {string}
|
|
2866
|
-
* @memberof UiAssetCreateRequest
|
|
2867
|
-
*/
|
|
2868
|
-
geoReferenceMethod?: string;
|
|
2869
|
-
/**
|
|
2870
|
-
* Transport Mode
|
|
2871
|
-
* @type {string}
|
|
2872
|
-
* @memberof UiAssetCreateRequest
|
|
2873
|
-
*/
|
|
2874
|
-
transportMode?: string;
|
|
2875
3423
|
/**
|
|
2876
3424
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2877
3425
|
* @type {string}
|
|
2878
3426
|
* @memberof UiAssetCreateRequest
|
|
2879
3427
|
*/
|
|
2880
3428
|
sovereignLegalName?: string;
|
|
2881
|
-
/**
|
|
2882
|
-
* Geo location
|
|
2883
|
-
* @type {string}
|
|
2884
|
-
* @memberof UiAssetCreateRequest
|
|
2885
|
-
*/
|
|
2886
|
-
geoLocation?: string;
|
|
2887
|
-
/**
|
|
2888
|
-
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2889
|
-
* @type {Array<string>}
|
|
2890
|
-
* @memberof UiAssetCreateRequest
|
|
2891
|
-
*/
|
|
2892
|
-
nutsLocations?: Array<string>;
|
|
2893
3429
|
/**
|
|
2894
3430
|
* Data sample URLs
|
|
2895
3431
|
* @type {Array<string>}
|
|
@@ -3032,54 +3568,18 @@ export declare interface UiAssetEditRequest {
|
|
|
3032
3568
|
* @memberof UiAssetEditRequest
|
|
3033
3569
|
*/
|
|
3034
3570
|
landingPageUrl?: string;
|
|
3035
|
-
/**
|
|
3036
|
-
* Data Category
|
|
3037
|
-
* @type {string}
|
|
3038
|
-
* @memberof UiAssetEditRequest
|
|
3039
|
-
*/
|
|
3040
|
-
dataCategory?: string;
|
|
3041
|
-
/**
|
|
3042
|
-
* Data Subcategory
|
|
3043
|
-
* @type {string}
|
|
3044
|
-
* @memberof UiAssetEditRequest
|
|
3045
|
-
*/
|
|
3046
|
-
dataSubcategory?: string;
|
|
3047
3571
|
/**
|
|
3048
3572
|
* Data Model
|
|
3049
3573
|
* @type {string}
|
|
3050
3574
|
* @memberof UiAssetEditRequest
|
|
3051
3575
|
*/
|
|
3052
3576
|
dataModel?: string;
|
|
3053
|
-
/**
|
|
3054
|
-
* Geo-Reference Method
|
|
3055
|
-
* @type {string}
|
|
3056
|
-
* @memberof UiAssetEditRequest
|
|
3057
|
-
*/
|
|
3058
|
-
geoReferenceMethod?: string;
|
|
3059
|
-
/**
|
|
3060
|
-
* Transport Mode
|
|
3061
|
-
* @type {string}
|
|
3062
|
-
* @memberof UiAssetEditRequest
|
|
3063
|
-
*/
|
|
3064
|
-
transportMode?: string;
|
|
3065
3577
|
/**
|
|
3066
3578
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
3067
3579
|
* @type {string}
|
|
3068
3580
|
* @memberof UiAssetEditRequest
|
|
3069
3581
|
*/
|
|
3070
3582
|
sovereignLegalName?: string;
|
|
3071
|
-
/**
|
|
3072
|
-
* Geo location
|
|
3073
|
-
* @type {string}
|
|
3074
|
-
* @memberof UiAssetEditRequest
|
|
3075
|
-
*/
|
|
3076
|
-
geoLocation?: string;
|
|
3077
|
-
/**
|
|
3078
|
-
* Locations by NUTS standard which divides countries into administrative divisions
|
|
3079
|
-
* @type {Array<string>}
|
|
3080
|
-
* @memberof UiAssetEditRequest
|
|
3081
|
-
*/
|
|
3082
|
-
nutsLocations?: Array<string>;
|
|
3083
3583
|
/**
|
|
3084
3584
|
* Data sample URLs
|
|
3085
3585
|
* @type {Array<string>}
|
|
@@ -3164,6 +3664,112 @@ export declare function UiAssetToJSON(json: any): UiAsset;
|
|
|
3164
3664
|
|
|
3165
3665
|
export declare function UiAssetToJSONTyped(value?: UiAsset | null, ignoreDiscriminator?: boolean): any;
|
|
3166
3666
|
|
|
3667
|
+
/**
|
|
3668
|
+
* UI Config
|
|
3669
|
+
* @export
|
|
3670
|
+
* @interface UiConfig
|
|
3671
|
+
*/
|
|
3672
|
+
export declare interface UiConfig {
|
|
3673
|
+
/**
|
|
3674
|
+
* Enabled features
|
|
3675
|
+
* @type {Array<UiConfigFeature>}
|
|
3676
|
+
* @memberof UiConfig
|
|
3677
|
+
*/
|
|
3678
|
+
features: Array<UiConfigFeature>;
|
|
3679
|
+
/**
|
|
3680
|
+
* Pre-configured Counterparty Connectors
|
|
3681
|
+
* @type {Array<UiConfigPreconfiguredCounterparty>}
|
|
3682
|
+
* @memberof UiConfig
|
|
3683
|
+
*/
|
|
3684
|
+
preconfiguredCounterparties: Array<UiConfigPreconfiguredCounterparty>;
|
|
3685
|
+
/**
|
|
3686
|
+
* Logout URL
|
|
3687
|
+
* @type {string}
|
|
3688
|
+
* @memberof UiConfig
|
|
3689
|
+
*/
|
|
3690
|
+
logoutUrl?: string;
|
|
3691
|
+
/**
|
|
3692
|
+
* Documentation URL
|
|
3693
|
+
* @type {string}
|
|
3694
|
+
* @memberof UiConfig
|
|
3695
|
+
*/
|
|
3696
|
+
documentationUrl?: string;
|
|
3697
|
+
/**
|
|
3698
|
+
* Support URL
|
|
3699
|
+
* @type {string}
|
|
3700
|
+
* @memberof UiConfig
|
|
3701
|
+
*/
|
|
3702
|
+
supportUrl?: string;
|
|
3703
|
+
/**
|
|
3704
|
+
* Privacy Policy URL
|
|
3705
|
+
* @type {string}
|
|
3706
|
+
* @memberof UiConfig
|
|
3707
|
+
*/
|
|
3708
|
+
privacyPolicyUrl?: string;
|
|
3709
|
+
/**
|
|
3710
|
+
* Legal Notice URL
|
|
3711
|
+
* @type {string}
|
|
3712
|
+
* @memberof UiConfig
|
|
3713
|
+
*/
|
|
3714
|
+
legalNoticeUrl?: string;
|
|
3715
|
+
}
|
|
3716
|
+
|
|
3717
|
+
/**
|
|
3718
|
+
* Enabled UI Features
|
|
3719
|
+
* @export
|
|
3720
|
+
*/
|
|
3721
|
+
export declare const UiConfigFeature: {
|
|
3722
|
+
readonly ConnectorLimits: "CONNECTOR_LIMITS";
|
|
3723
|
+
readonly OpenSourceMarketing: "OPEN_SOURCE_MARKETING";
|
|
3724
|
+
readonly EeBasicMarketing: "EE_BASIC_MARKETING";
|
|
3725
|
+
};
|
|
3726
|
+
|
|
3727
|
+
export declare type UiConfigFeature = (typeof UiConfigFeature)[keyof typeof UiConfigFeature];
|
|
3728
|
+
|
|
3729
|
+
export declare function UiConfigFeatureFromJSON(json: any): UiConfigFeature;
|
|
3730
|
+
|
|
3731
|
+
export declare function UiConfigFeatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigFeature;
|
|
3732
|
+
|
|
3733
|
+
export declare function UiConfigFeatureToJSON(value?: UiConfigFeature | null): any;
|
|
3734
|
+
|
|
3735
|
+
export declare function UiConfigFeatureToJSONTyped(value: any, ignoreDiscriminator: boolean): UiConfigFeature;
|
|
3736
|
+
|
|
3737
|
+
export declare function UiConfigFromJSON(json: any): UiConfig;
|
|
3738
|
+
|
|
3739
|
+
export declare function UiConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfig;
|
|
3740
|
+
|
|
3741
|
+
/**
|
|
3742
|
+
* Pre-configured counterparty for the Catalog
|
|
3743
|
+
* @export
|
|
3744
|
+
* @interface UiConfigPreconfiguredCounterparty
|
|
3745
|
+
*/
|
|
3746
|
+
export declare interface UiConfigPreconfiguredCounterparty {
|
|
3747
|
+
/**
|
|
3748
|
+
* Participant ID
|
|
3749
|
+
* @type {string}
|
|
3750
|
+
* @memberof UiConfigPreconfiguredCounterparty
|
|
3751
|
+
*/
|
|
3752
|
+
participantId: string;
|
|
3753
|
+
/**
|
|
3754
|
+
* Connector Endpoint
|
|
3755
|
+
* @type {string}
|
|
3756
|
+
* @memberof UiConfigPreconfiguredCounterparty
|
|
3757
|
+
*/
|
|
3758
|
+
connectorEndpoint: string;
|
|
3759
|
+
}
|
|
3760
|
+
|
|
3761
|
+
export declare function UiConfigPreconfiguredCounterpartyFromJSON(json: any): UiConfigPreconfiguredCounterparty;
|
|
3762
|
+
|
|
3763
|
+
export declare function UiConfigPreconfiguredCounterpartyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigPreconfiguredCounterparty;
|
|
3764
|
+
|
|
3765
|
+
export declare function UiConfigPreconfiguredCounterpartyToJSON(json: any): UiConfigPreconfiguredCounterparty;
|
|
3766
|
+
|
|
3767
|
+
export declare function UiConfigPreconfiguredCounterpartyToJSONTyped(value?: UiConfigPreconfiguredCounterparty | null, ignoreDiscriminator?: boolean): any;
|
|
3768
|
+
|
|
3769
|
+
export declare function UiConfigToJSON(json: any): UiConfig;
|
|
3770
|
+
|
|
3771
|
+
export declare function UiConfigToJSONTyped(value?: UiConfig | null, ignoreDiscriminator?: boolean): any;
|
|
3772
|
+
|
|
3167
3773
|
/**
|
|
3168
3774
|
* Contract Negotiation Information
|
|
3169
3775
|
* @export
|
|
@@ -3233,7 +3839,7 @@ export declare function UiContractOfferToJSON(json: any): UiContractOffer;
|
|
|
3233
3839
|
export declare function UiContractOfferToJSONTyped(value?: UiContractOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3234
3840
|
|
|
3235
3841
|
/**
|
|
3236
|
-
* 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.
|
|
3237
3843
|
* @export
|
|
3238
3844
|
* @interface UiCriterion
|
|
3239
3845
|
*/
|
|
@@ -3248,12 +3854,14 @@ export declare interface UiCriterion {
|
|
|
3248
3854
|
* Operator
|
|
3249
3855
|
* @type {UiCriterionOperator}
|
|
3250
3856
|
* @memberof UiCriterion
|
|
3857
|
+
* @deprecated
|
|
3251
3858
|
*/
|
|
3252
3859
|
operator: UiCriterionOperator;
|
|
3253
3860
|
/**
|
|
3254
3861
|
* Right Operand
|
|
3255
3862
|
* @type {UiCriterionLiteral}
|
|
3256
3863
|
* @memberof UiCriterion
|
|
3864
|
+
* @deprecated
|
|
3257
3865
|
*/
|
|
3258
3866
|
operandRight: UiCriterionLiteral;
|
|
3259
3867
|
}
|
|
@@ -3272,6 +3880,7 @@ export declare interface UiCriterionLiteral {
|
|
|
3272
3880
|
*
|
|
3273
3881
|
* @type {UiCriterionLiteralType}
|
|
3274
3882
|
* @memberof UiCriterionLiteral
|
|
3883
|
+
* @deprecated
|
|
3275
3884
|
*/
|
|
3276
3885
|
type?: UiCriterionLiteralType;
|
|
3277
3886
|
/**
|
|
@@ -3379,6 +3988,82 @@ export declare function UiDataOfferToJSON(json: any): UiDataOffer;
|
|
|
3379
3988
|
|
|
3380
3989
|
export declare function UiDataOfferToJSONTyped(value?: UiDataOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3381
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
|
+
|
|
3382
4067
|
/**
|
|
3383
4068
|
* Type-safe data source as supported by the sovity product landscape. Contains extension points for using custom data address properties.
|
|
3384
4069
|
* @export
|
|
@@ -3550,6 +4235,95 @@ export declare function UiDataSourceToJSON(json: any): UiDataSource;
|
|
|
3550
4235
|
|
|
3551
4236
|
export declare function UiDataSourceToJSONTyped(value?: UiDataSource | null, ignoreDiscriminator?: boolean): any;
|
|
3552
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
|
+
|
|
3553
4327
|
/**
|
|
3554
4328
|
* Type-Safe OpenAPI generator friendly ODLR policy subset as endorsed by sovity.
|
|
3555
4329
|
* @export
|
|
@@ -3759,6 +4533,14 @@ export declare function UiPolicyToJSONTyped(value?: UiPolicy | null, ignoreDiscr
|
|
|
3759
4533
|
*
|
|
3760
4534
|
*/
|
|
3761
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>>;
|
|
3762
4544
|
/**
|
|
3763
4545
|
* Basic KPIs about the running EDC Connector.
|
|
3764
4546
|
*/
|
|
@@ -3775,14 +4557,56 @@ export declare class UseCaseApi extends runtime.BaseAPI {
|
|
|
3775
4557
|
* List available functions in policies, prohibitions and obligations.
|
|
3776
4558
|
*/
|
|
3777
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>>;
|
|
3778
4584
|
/**
|
|
3779
4585
|
* Fetch a connector\'s data offers
|
|
4586
|
+
* @deprecated
|
|
3780
4587
|
*/
|
|
3781
4588
|
queryCatalogRaw(requestParameters: QueryCatalogRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<UiDataOffer>>>;
|
|
3782
4589
|
/**
|
|
3783
4590
|
* Fetch a connector\'s data offers
|
|
4591
|
+
* @deprecated
|
|
3784
4592
|
*/
|
|
3785
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>;
|
|
3786
4610
|
}
|
|
3787
4611
|
|
|
3788
4612
|
export declare class VoidApiResponse {
|