@sovity.de/edc-client 8.0.0 → 9.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.
- package/README.md +6 -6
- package/dist/sovity-edc-client.d.ts +656 -63
- package/dist/sovity-edc-client.js +1886 -1379
- package/dist/sovity-edc-client.js.map +1 -1
- package/dist/sovity-edc-client.umd.cjs +1 -1
- package/dist/sovity-edc-client.umd.cjs.map +1 -1
- package/package.json +3 -3
|
@@ -23,9 +23,41 @@ export declare function AssetPageFromJSONTyped(json: any, ignoreDiscriminator: b
|
|
|
23
23
|
|
|
24
24
|
export declare function AssetPageToJSON(value?: AssetPage | null): any;
|
|
25
25
|
|
|
26
|
+
/**
|
|
27
|
+
* Type-Safe OpenAPI generator friendly Constraint DTO that supports an opinionated subset of the original EDC Constraint Entity.
|
|
28
|
+
* @export
|
|
29
|
+
* @interface AtomicConstraintDto
|
|
30
|
+
*/
|
|
31
|
+
export declare interface AtomicConstraintDto {
|
|
32
|
+
/**
|
|
33
|
+
* Left part of the constraint.
|
|
34
|
+
* @type {string}
|
|
35
|
+
* @memberof AtomicConstraintDto
|
|
36
|
+
*/
|
|
37
|
+
leftExpression: string;
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @type {OperatorDto}
|
|
41
|
+
* @memberof AtomicConstraintDto
|
|
42
|
+
*/
|
|
43
|
+
operator: OperatorDto;
|
|
44
|
+
/**
|
|
45
|
+
* Right part of the constraint.
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof AtomicConstraintDto
|
|
48
|
+
*/
|
|
49
|
+
rightExpression: string;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export declare function AtomicConstraintDtoFromJSON(json: any): AtomicConstraintDto;
|
|
53
|
+
|
|
54
|
+
export declare function AtomicConstraintDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): AtomicConstraintDto;
|
|
55
|
+
|
|
56
|
+
export declare function AtomicConstraintDtoToJSON(value?: AtomicConstraintDto | null): any;
|
|
57
|
+
|
|
26
58
|
/**
|
|
27
59
|
* sovity EDC API Wrapper
|
|
28
|
-
* sovity\'s EDC API Wrapper contains a selection of APIs for multiple consumers, e.g. our EDC UI API, our generic Use Case API, our Commercial APIs, etc. We bundled these APIs, so we can have an easier time generating our API Client Libraries.
|
|
60
|
+
* sovity\'s EDC API Wrapper contains a selection of APIs for multiple consumers, e.g. our EDC UI API, our generic Use Case API, our Commercial Edition APIs, etc. We bundled these APIs, so we can have an easier time generating our API Client Libraries.
|
|
29
61
|
*
|
|
30
62
|
* The version of the OpenAPI document: 0.0.0
|
|
31
63
|
* Contact: contact@sovity.de
|
|
@@ -354,6 +386,18 @@ export declare interface ContractAgreementCard {
|
|
|
354
386
|
* @memberof ContractAgreementCard
|
|
355
387
|
*/
|
|
356
388
|
transferProcesses: Array<ContractAgreementTransferProcess>;
|
|
389
|
+
/**
|
|
390
|
+
*
|
|
391
|
+
* @type {ContractTerminationStatus}
|
|
392
|
+
* @memberof ContractAgreementCard
|
|
393
|
+
*/
|
|
394
|
+
terminationStatus: ContractTerminationStatus;
|
|
395
|
+
/**
|
|
396
|
+
*
|
|
397
|
+
* @type {ContractAgreementTerminationInfo}
|
|
398
|
+
* @memberof ContractAgreementCard
|
|
399
|
+
*/
|
|
400
|
+
terminationInformation?: ContractAgreementTerminationInfo;
|
|
357
401
|
}
|
|
358
402
|
|
|
359
403
|
export declare function ContractAgreementCardFromJSON(json: any): ContractAgreementCard;
|
|
@@ -380,7 +424,7 @@ export declare function ContractAgreementDirectionFromJSONTyped(json: any, ignor
|
|
|
380
424
|
export declare function ContractAgreementDirectionToJSON(value?: ContractAgreementDirection | null): any;
|
|
381
425
|
|
|
382
426
|
/**
|
|
383
|
-
*
|
|
427
|
+
* Data as required by the UI's Contract Agreement Page
|
|
384
428
|
* @export
|
|
385
429
|
* @interface ContractAgreementPage
|
|
386
430
|
*/
|
|
@@ -397,8 +441,66 @@ export declare function ContractAgreementPageFromJSON(json: any): ContractAgreem
|
|
|
397
441
|
|
|
398
442
|
export declare function ContractAgreementPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementPage;
|
|
399
443
|
|
|
444
|
+
/**
|
|
445
|
+
* Filters for querying a Contract Contract Agreement Page
|
|
446
|
+
* @export
|
|
447
|
+
* @interface ContractAgreementPageQuery
|
|
448
|
+
*/
|
|
449
|
+
export declare interface ContractAgreementPageQuery {
|
|
450
|
+
/**
|
|
451
|
+
*
|
|
452
|
+
* @type {ContractTerminationStatus}
|
|
453
|
+
* @memberof ContractAgreementPageQuery
|
|
454
|
+
*/
|
|
455
|
+
terminationStatus?: ContractTerminationStatus;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export declare function ContractAgreementPageQueryFromJSON(json: any): ContractAgreementPageQuery;
|
|
459
|
+
|
|
460
|
+
export declare function ContractAgreementPageQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementPageQuery;
|
|
461
|
+
|
|
462
|
+
export declare function ContractAgreementPageQueryToJSON(value?: ContractAgreementPageQuery | null): any;
|
|
463
|
+
|
|
400
464
|
export declare function ContractAgreementPageToJSON(value?: ContractAgreementPage | null): any;
|
|
401
465
|
|
|
466
|
+
/**
|
|
467
|
+
* Contract's agreement metadata
|
|
468
|
+
* @export
|
|
469
|
+
* @interface ContractAgreementTerminationInfo
|
|
470
|
+
*/
|
|
471
|
+
export declare interface ContractAgreementTerminationInfo {
|
|
472
|
+
/**
|
|
473
|
+
* Termination's date and time
|
|
474
|
+
* @type {Date}
|
|
475
|
+
* @memberof ContractAgreementTerminationInfo
|
|
476
|
+
*/
|
|
477
|
+
terminatedAt: Date;
|
|
478
|
+
/**
|
|
479
|
+
* The termination's nature e.g. User Termination
|
|
480
|
+
* @type {string}
|
|
481
|
+
* @memberof ContractAgreementTerminationInfo
|
|
482
|
+
*/
|
|
483
|
+
reason: string;
|
|
484
|
+
/**
|
|
485
|
+
* Detailed message from the terminating party about why the contract was terminated.
|
|
486
|
+
* @type {string}
|
|
487
|
+
* @memberof ContractAgreementTerminationInfo
|
|
488
|
+
*/
|
|
489
|
+
detail: string;
|
|
490
|
+
/**
|
|
491
|
+
*
|
|
492
|
+
* @type {ContractTerminatedBy}
|
|
493
|
+
* @memberof ContractAgreementTerminationInfo
|
|
494
|
+
*/
|
|
495
|
+
terminatedBy: ContractTerminatedBy;
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
export declare function ContractAgreementTerminationInfoFromJSON(json: any): ContractAgreementTerminationInfo;
|
|
499
|
+
|
|
500
|
+
export declare function ContractAgreementTerminationInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementTerminationInfo;
|
|
501
|
+
|
|
502
|
+
export declare function ContractAgreementTerminationInfoToJSON(value?: ContractAgreementTerminationInfo | null): any;
|
|
503
|
+
|
|
402
504
|
/**
|
|
403
505
|
* A Contract Agreement's Transfer Process
|
|
404
506
|
* @export
|
|
@@ -476,7 +578,7 @@ export declare function ContractDefinitionEntryFromJSONTyped(json: any, ignoreDi
|
|
|
476
578
|
export declare function ContractDefinitionEntryToJSON(value?: ContractDefinitionEntry | null): any;
|
|
477
579
|
|
|
478
580
|
/**
|
|
479
|
-
*
|
|
581
|
+
*
|
|
480
582
|
* @export
|
|
481
583
|
* @interface ContractDefinitionPage
|
|
482
584
|
*/
|
|
@@ -627,6 +729,66 @@ export declare function ContractNegotiationStateFromJSONTyped(json: any, ignoreD
|
|
|
627
729
|
|
|
628
730
|
export declare function ContractNegotiationStateToJSON(value?: ContractNegotiationState | null): any;
|
|
629
731
|
|
|
732
|
+
/**
|
|
733
|
+
* Whether the contract termination was initiated by this EDC or a counterparty EDC.
|
|
734
|
+
* @export
|
|
735
|
+
*/
|
|
736
|
+
export declare const ContractTerminatedBy: {
|
|
737
|
+
readonly Self: "SELF";
|
|
738
|
+
readonly Counterparty: "COUNTERPARTY";
|
|
739
|
+
};
|
|
740
|
+
|
|
741
|
+
export declare type ContractTerminatedBy = (typeof ContractTerminatedBy)[keyof typeof ContractTerminatedBy];
|
|
742
|
+
|
|
743
|
+
export declare function ContractTerminatedByFromJSON(json: any): ContractTerminatedBy;
|
|
744
|
+
|
|
745
|
+
export declare function ContractTerminatedByFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractTerminatedBy;
|
|
746
|
+
|
|
747
|
+
export declare function ContractTerminatedByToJSON(value?: ContractTerminatedBy | null): any;
|
|
748
|
+
|
|
749
|
+
/**
|
|
750
|
+
* Data for terminating a Contract Agreement
|
|
751
|
+
* @export
|
|
752
|
+
* @interface ContractTerminationRequest
|
|
753
|
+
*/
|
|
754
|
+
export declare interface ContractTerminationRequest {
|
|
755
|
+
/**
|
|
756
|
+
* A short reason why this contract was terminated
|
|
757
|
+
* @type {string}
|
|
758
|
+
* @memberof ContractTerminationRequest
|
|
759
|
+
*/
|
|
760
|
+
reason: string;
|
|
761
|
+
/**
|
|
762
|
+
* A user explanation to detail why the contract was terminated.
|
|
763
|
+
* @type {string}
|
|
764
|
+
* @memberof ContractTerminationRequest
|
|
765
|
+
*/
|
|
766
|
+
detail?: string;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
export declare function ContractTerminationRequestFromJSON(json: any): ContractTerminationRequest;
|
|
770
|
+
|
|
771
|
+
export declare function ContractTerminationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractTerminationRequest;
|
|
772
|
+
|
|
773
|
+
export declare function ContractTerminationRequestToJSON(value?: ContractTerminationRequest | null): any;
|
|
774
|
+
|
|
775
|
+
/**
|
|
776
|
+
* The contract termination status
|
|
777
|
+
* @export
|
|
778
|
+
*/
|
|
779
|
+
export declare const ContractTerminationStatus: {
|
|
780
|
+
readonly Ongoing: "ONGOING";
|
|
781
|
+
readonly Terminated: "TERMINATED";
|
|
782
|
+
};
|
|
783
|
+
|
|
784
|
+
export declare type ContractTerminationStatus = (typeof ContractTerminationStatus)[keyof typeof ContractTerminationStatus];
|
|
785
|
+
|
|
786
|
+
export declare function ContractTerminationStatusFromJSON(json: any): ContractTerminationStatus;
|
|
787
|
+
|
|
788
|
+
export declare function ContractTerminationStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractTerminationStatus;
|
|
789
|
+
|
|
790
|
+
export declare function ContractTerminationStatusToJSON(value?: ContractTerminationStatus | null): any;
|
|
791
|
+
|
|
630
792
|
export declare interface CreateAssetRequest {
|
|
631
793
|
uiAssetCreateRequest?: UiAssetCreateRequest;
|
|
632
794
|
}
|
|
@@ -639,6 +801,10 @@ export declare interface CreatePolicyDefinitionRequest {
|
|
|
639
801
|
policyDefinitionCreateRequest?: PolicyDefinitionCreateRequest;
|
|
640
802
|
}
|
|
641
803
|
|
|
804
|
+
export declare interface CreatePolicyDefinitionUseCaseRequest {
|
|
805
|
+
policyCreateRequest?: PolicyCreateRequest;
|
|
806
|
+
}
|
|
807
|
+
|
|
642
808
|
/**
|
|
643
809
|
* DAPS Config
|
|
644
810
|
* @export
|
|
@@ -698,7 +864,7 @@ export declare function DashboardMiwConfigFromJSONTyped(json: any, ignoreDiscrim
|
|
|
698
864
|
export declare function DashboardMiwConfigToJSON(value?: DashboardMiwConfig | null): any;
|
|
699
865
|
|
|
700
866
|
/**
|
|
701
|
-
*
|
|
867
|
+
* Data as required by the UI's Dashboard Page
|
|
702
868
|
* @export
|
|
703
869
|
* @interface DashboardPage
|
|
704
870
|
*/
|
|
@@ -814,7 +980,7 @@ export declare function DashboardPageFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
814
980
|
export declare function DashboardPageToJSON(value?: DashboardPage | null): any;
|
|
815
981
|
|
|
816
982
|
/**
|
|
817
|
-
*
|
|
983
|
+
* Number of Transfer Processes for given direction.
|
|
818
984
|
* @export
|
|
819
985
|
* @interface DashboardTransferAmounts
|
|
820
986
|
*/
|
|
@@ -851,6 +1017,41 @@ export declare function DashboardTransferAmountsFromJSONTyped(json: any, ignoreD
|
|
|
851
1017
|
|
|
852
1018
|
export declare function DashboardTransferAmountsToJSON(value?: DashboardTransferAmounts | null): any;
|
|
853
1019
|
|
|
1020
|
+
/**
|
|
1021
|
+
* Differentiate 'Live' Data Offers that have a real data source from 'On Request' Data Offers that contain only a contact email address for requesting an individual data offer.
|
|
1022
|
+
* @export
|
|
1023
|
+
*/
|
|
1024
|
+
export declare const DataSourceAvailability: {
|
|
1025
|
+
readonly Live: "LIVE";
|
|
1026
|
+
readonly OnRequest: "ON_REQUEST";
|
|
1027
|
+
};
|
|
1028
|
+
|
|
1029
|
+
export declare type DataSourceAvailability = (typeof DataSourceAvailability)[keyof typeof DataSourceAvailability];
|
|
1030
|
+
|
|
1031
|
+
export declare function DataSourceAvailabilityFromJSON(json: any): DataSourceAvailability;
|
|
1032
|
+
|
|
1033
|
+
export declare function DataSourceAvailabilityFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataSourceAvailability;
|
|
1034
|
+
|
|
1035
|
+
export declare function DataSourceAvailabilityToJSON(value?: DataSourceAvailability | null): any;
|
|
1036
|
+
|
|
1037
|
+
/**
|
|
1038
|
+
* Supported Data Source Types by UiDataSource
|
|
1039
|
+
* @export
|
|
1040
|
+
*/
|
|
1041
|
+
export declare const DataSourceType: {
|
|
1042
|
+
readonly HttpData: "HTTP_DATA";
|
|
1043
|
+
readonly OnRequest: "ON_REQUEST";
|
|
1044
|
+
readonly Custom: "CUSTOM";
|
|
1045
|
+
};
|
|
1046
|
+
|
|
1047
|
+
export declare type DataSourceType = (typeof DataSourceType)[keyof typeof DataSourceType];
|
|
1048
|
+
|
|
1049
|
+
export declare function DataSourceTypeFromJSON(json: any): DataSourceType;
|
|
1050
|
+
|
|
1051
|
+
export declare function DataSourceTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataSourceType;
|
|
1052
|
+
|
|
1053
|
+
export declare function DataSourceTypeToJSON(value?: DataSourceType | null): any;
|
|
1054
|
+
|
|
854
1055
|
export declare const DefaultConfig: Configuration;
|
|
855
1056
|
|
|
856
1057
|
export declare interface DeleteAssetRequest {
|
|
@@ -884,9 +1085,9 @@ export declare interface EdcClientOptions {
|
|
|
884
1085
|
configOverrides?: Partial<ConfigurationParameters>;
|
|
885
1086
|
}
|
|
886
1087
|
|
|
887
|
-
export declare interface
|
|
1088
|
+
export declare interface EditAssetRequest {
|
|
888
1089
|
assetId: string;
|
|
889
|
-
|
|
1090
|
+
uiAssetEditRequest?: UiAssetEditRequest;
|
|
890
1091
|
}
|
|
891
1092
|
|
|
892
1093
|
/**
|
|
@@ -933,6 +1134,61 @@ export declare interface ErrorContext {
|
|
|
933
1134
|
|
|
934
1135
|
export declare function exists(json: any, key: string): boolean;
|
|
935
1136
|
|
|
1137
|
+
/**
|
|
1138
|
+
* Represents a single atomic constraint or a multiplicity constraint. The atomicConstraint will be evaluated if the constraintType is ATOMIC_CONSTRAINT.
|
|
1139
|
+
* @export
|
|
1140
|
+
* @interface Expression
|
|
1141
|
+
*/
|
|
1142
|
+
export declare interface Expression {
|
|
1143
|
+
/**
|
|
1144
|
+
*
|
|
1145
|
+
* @type {ExpressionType}
|
|
1146
|
+
* @memberof Expression
|
|
1147
|
+
*/
|
|
1148
|
+
expressionType?: ExpressionType;
|
|
1149
|
+
/**
|
|
1150
|
+
* List of policy elements that are evaluated according the expressionType.
|
|
1151
|
+
* @type {Array<Expression>}
|
|
1152
|
+
* @memberof Expression
|
|
1153
|
+
*/
|
|
1154
|
+
expressions?: Array<Expression>;
|
|
1155
|
+
/**
|
|
1156
|
+
*
|
|
1157
|
+
* @type {AtomicConstraintDto}
|
|
1158
|
+
* @memberof Expression
|
|
1159
|
+
*/
|
|
1160
|
+
atomicConstraint?: AtomicConstraintDto;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
export declare function ExpressionFromJSON(json: any): Expression;
|
|
1164
|
+
|
|
1165
|
+
export declare function ExpressionFromJSONTyped(json: any, ignoreDiscriminator: boolean): Expression;
|
|
1166
|
+
|
|
1167
|
+
export declare function ExpressionToJSON(value?: Expression | null): any;
|
|
1168
|
+
|
|
1169
|
+
/**
|
|
1170
|
+
* Expression types:
|
|
1171
|
+
* * `ATOMIC_CONSTRAINT` - A single constraint for the policy
|
|
1172
|
+
* * `AND` - Several constraints, all of which must be respected
|
|
1173
|
+
* * `OR` - Several constraints, of which at least one must be respected
|
|
1174
|
+
* * `XOR` - Several constraints, of which exactly one must be respected
|
|
1175
|
+
* @export
|
|
1176
|
+
*/
|
|
1177
|
+
export declare const ExpressionType: {
|
|
1178
|
+
readonly AtomicConstraint: "ATOMIC_CONSTRAINT";
|
|
1179
|
+
readonly And: "AND";
|
|
1180
|
+
readonly Or: "OR";
|
|
1181
|
+
readonly Xor: "XOR";
|
|
1182
|
+
};
|
|
1183
|
+
|
|
1184
|
+
export declare type ExpressionType = (typeof ExpressionType)[keyof typeof ExpressionType];
|
|
1185
|
+
|
|
1186
|
+
export declare function ExpressionTypeFromJSON(json: any): ExpressionType;
|
|
1187
|
+
|
|
1188
|
+
export declare function ExpressionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExpressionType;
|
|
1189
|
+
|
|
1190
|
+
export declare function ExpressionTypeToJSON(value?: ExpressionType | null): any;
|
|
1191
|
+
|
|
936
1192
|
export declare type FetchAPI = WindowOrWorkerGlobalScope['fetch'];
|
|
937
1193
|
|
|
938
1194
|
export declare class FetchError extends Error {
|
|
@@ -955,6 +1211,10 @@ export declare interface GetCatalogPageDataOffersRequest {
|
|
|
955
1211
|
connectorEndpoint?: string;
|
|
956
1212
|
}
|
|
957
1213
|
|
|
1214
|
+
export declare interface GetContractAgreementPageRequest {
|
|
1215
|
+
contractAgreementPageQuery?: ContractAgreementPageQuery;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
958
1218
|
export declare interface GetContractNegotiationRequest {
|
|
959
1219
|
contractNegotiationId: string;
|
|
960
1220
|
}
|
|
@@ -1092,6 +1352,11 @@ export declare type InitOverrideFunction = (requestContext: {
|
|
|
1092
1352
|
*/
|
|
1093
1353
|
export declare function instanceOfAssetPage(value: object): boolean;
|
|
1094
1354
|
|
|
1355
|
+
/**
|
|
1356
|
+
* Check if a given object implements the AtomicConstraintDto interface.
|
|
1357
|
+
*/
|
|
1358
|
+
export declare function instanceOfAtomicConstraintDto(value: object): boolean;
|
|
1359
|
+
|
|
1095
1360
|
/**
|
|
1096
1361
|
* Check if a given object implements the CatalogFilterExpression interface.
|
|
1097
1362
|
*/
|
|
@@ -1122,6 +1387,16 @@ export declare function instanceOfContractAgreementCard(value: object): boolean;
|
|
|
1122
1387
|
*/
|
|
1123
1388
|
export declare function instanceOfContractAgreementPage(value: object): boolean;
|
|
1124
1389
|
|
|
1390
|
+
/**
|
|
1391
|
+
* Check if a given object implements the ContractAgreementPageQuery interface.
|
|
1392
|
+
*/
|
|
1393
|
+
export declare function instanceOfContractAgreementPageQuery(value: object): boolean;
|
|
1394
|
+
|
|
1395
|
+
/**
|
|
1396
|
+
* Check if a given object implements the ContractAgreementTerminationInfo interface.
|
|
1397
|
+
*/
|
|
1398
|
+
export declare function instanceOfContractAgreementTerminationInfo(value: object): boolean;
|
|
1399
|
+
|
|
1125
1400
|
/**
|
|
1126
1401
|
* Check if a given object implements the ContractAgreementTransferProcess interface.
|
|
1127
1402
|
*/
|
|
@@ -1152,6 +1427,11 @@ export declare function instanceOfContractNegotiationRequest(value: object): boo
|
|
|
1152
1427
|
*/
|
|
1153
1428
|
export declare function instanceOfContractNegotiationState(value: object): boolean;
|
|
1154
1429
|
|
|
1430
|
+
/**
|
|
1431
|
+
* Check if a given object implements the ContractTerminationRequest interface.
|
|
1432
|
+
*/
|
|
1433
|
+
export declare function instanceOfContractTerminationRequest(value: object): boolean;
|
|
1434
|
+
|
|
1155
1435
|
/**
|
|
1156
1436
|
* Check if a given object implements the DashboardDapsConfig interface.
|
|
1157
1437
|
*/
|
|
@@ -1172,6 +1452,11 @@ export declare function instanceOfDashboardPage(value: object): boolean;
|
|
|
1172
1452
|
*/
|
|
1173
1453
|
export declare function instanceOfDashboardTransferAmounts(value: object): boolean;
|
|
1174
1454
|
|
|
1455
|
+
/**
|
|
1456
|
+
* Check if a given object implements the Expression interface.
|
|
1457
|
+
*/
|
|
1458
|
+
export declare function instanceOfExpression(value: object): boolean;
|
|
1459
|
+
|
|
1175
1460
|
/**
|
|
1176
1461
|
* Check if a given object implements the IdResponseDto interface.
|
|
1177
1462
|
*/
|
|
@@ -1192,6 +1477,16 @@ export declare function instanceOfInitiateTransferRequest(value: object): boolea
|
|
|
1192
1477
|
*/
|
|
1193
1478
|
export declare function instanceOfKpiResult(value: object): boolean;
|
|
1194
1479
|
|
|
1480
|
+
/**
|
|
1481
|
+
* Check if a given object implements the PermissionDto interface.
|
|
1482
|
+
*/
|
|
1483
|
+
export declare function instanceOfPermissionDto(value: object): boolean;
|
|
1484
|
+
|
|
1485
|
+
/**
|
|
1486
|
+
* Check if a given object implements the PolicyCreateRequest interface.
|
|
1487
|
+
*/
|
|
1488
|
+
export declare function instanceOfPolicyCreateRequest(value: object): boolean;
|
|
1489
|
+
|
|
1195
1490
|
/**
|
|
1196
1491
|
* Check if a given object implements the PolicyDefinitionCreateRequest interface.
|
|
1197
1492
|
*/
|
|
@@ -1207,6 +1502,11 @@ export declare function instanceOfPolicyDefinitionDto(value: object): boolean;
|
|
|
1207
1502
|
*/
|
|
1208
1503
|
export declare function instanceOfPolicyDefinitionPage(value: object): boolean;
|
|
1209
1504
|
|
|
1505
|
+
/**
|
|
1506
|
+
* Check if a given object implements the SecretValue interface.
|
|
1507
|
+
*/
|
|
1508
|
+
export declare function instanceOfSecretValue(value: object): boolean;
|
|
1509
|
+
|
|
1210
1510
|
/**
|
|
1211
1511
|
* Check if a given object implements the TransferHistoryEntry interface.
|
|
1212
1512
|
*/
|
|
@@ -1238,9 +1538,9 @@ export declare function instanceOfUiAsset(value: object): boolean;
|
|
|
1238
1538
|
export declare function instanceOfUiAssetCreateRequest(value: object): boolean;
|
|
1239
1539
|
|
|
1240
1540
|
/**
|
|
1241
|
-
* Check if a given object implements the
|
|
1541
|
+
* Check if a given object implements the UiAssetEditRequest interface.
|
|
1242
1542
|
*/
|
|
1243
|
-
export declare function
|
|
1543
|
+
export declare function instanceOfUiAssetEditRequest(value: object): boolean;
|
|
1244
1544
|
|
|
1245
1545
|
/**
|
|
1246
1546
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
@@ -1267,6 +1567,21 @@ export declare function instanceOfUiCriterionLiteral(value: object): boolean;
|
|
|
1267
1567
|
*/
|
|
1268
1568
|
export declare function instanceOfUiDataOffer(value: object): boolean;
|
|
1269
1569
|
|
|
1570
|
+
/**
|
|
1571
|
+
* Check if a given object implements the UiDataSource interface.
|
|
1572
|
+
*/
|
|
1573
|
+
export declare function instanceOfUiDataSource(value: object): boolean;
|
|
1574
|
+
|
|
1575
|
+
/**
|
|
1576
|
+
* Check if a given object implements the UiDataSourceHttpData interface.
|
|
1577
|
+
*/
|
|
1578
|
+
export declare function instanceOfUiDataSourceHttpData(value: object): boolean;
|
|
1579
|
+
|
|
1580
|
+
/**
|
|
1581
|
+
* Check if a given object implements the UiDataSourceOnRequest interface.
|
|
1582
|
+
*/
|
|
1583
|
+
export declare function instanceOfUiDataSourceOnRequest(value: object): boolean;
|
|
1584
|
+
|
|
1270
1585
|
/**
|
|
1271
1586
|
* Check if a given object implements the UiPolicy interface.
|
|
1272
1587
|
*/
|
|
@@ -1377,6 +1692,52 @@ export declare function OperatorDtoFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
1377
1692
|
|
|
1378
1693
|
export declare function OperatorDtoToJSON(value?: OperatorDto | null): any;
|
|
1379
1694
|
|
|
1695
|
+
/**
|
|
1696
|
+
* Permission description for the policy to evaluate to TRUE.
|
|
1697
|
+
* @export
|
|
1698
|
+
* @interface PermissionDto
|
|
1699
|
+
*/
|
|
1700
|
+
export declare interface PermissionDto {
|
|
1701
|
+
/**
|
|
1702
|
+
*
|
|
1703
|
+
* @type {Expression}
|
|
1704
|
+
* @memberof PermissionDto
|
|
1705
|
+
*/
|
|
1706
|
+
expression: Expression;
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
export declare function PermissionDtoFromJSON(json: any): PermissionDto;
|
|
1710
|
+
|
|
1711
|
+
export declare function PermissionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermissionDto;
|
|
1712
|
+
|
|
1713
|
+
export declare function PermissionDtoToJSON(value?: PermissionDto | null): any;
|
|
1714
|
+
|
|
1715
|
+
/**
|
|
1716
|
+
* Policy Creation Request Supporting Multiplicity Constraints.
|
|
1717
|
+
* @export
|
|
1718
|
+
* @interface PolicyCreateRequest
|
|
1719
|
+
*/
|
|
1720
|
+
export declare interface PolicyCreateRequest {
|
|
1721
|
+
/**
|
|
1722
|
+
* Policy Definition ID
|
|
1723
|
+
* @type {string}
|
|
1724
|
+
* @memberof PolicyCreateRequest
|
|
1725
|
+
*/
|
|
1726
|
+
policyDefinitionId: string;
|
|
1727
|
+
/**
|
|
1728
|
+
*
|
|
1729
|
+
* @type {PermissionDto}
|
|
1730
|
+
* @memberof PolicyCreateRequest
|
|
1731
|
+
*/
|
|
1732
|
+
permission?: PermissionDto;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
export declare function PolicyCreateRequestFromJSON(json: any): PolicyCreateRequest;
|
|
1736
|
+
|
|
1737
|
+
export declare function PolicyCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyCreateRequest;
|
|
1738
|
+
|
|
1739
|
+
export declare function PolicyCreateRequestToJSON(value?: PolicyCreateRequest | null): any;
|
|
1740
|
+
|
|
1380
1741
|
/**
|
|
1381
1742
|
* Data for creating a Policy Definition
|
|
1382
1743
|
* @export
|
|
@@ -1532,6 +1893,37 @@ declare namespace runtime {
|
|
|
1532
1893
|
}
|
|
1533
1894
|
}
|
|
1534
1895
|
|
|
1896
|
+
/**
|
|
1897
|
+
* A value either inlined or to be fetched from the Vault. Raw secret values will land in the database and will be retrievable via the Eclipse EDC Management API.
|
|
1898
|
+
* @export
|
|
1899
|
+
* @interface SecretValue
|
|
1900
|
+
*/
|
|
1901
|
+
export declare interface SecretValue {
|
|
1902
|
+
/**
|
|
1903
|
+
* Secret Name / Vault Key Name.
|
|
1904
|
+
* @type {string}
|
|
1905
|
+
* @memberof SecretValue
|
|
1906
|
+
*/
|
|
1907
|
+
secretName?: string;
|
|
1908
|
+
/**
|
|
1909
|
+
* Raw inline Value.
|
|
1910
|
+
* @type {string}
|
|
1911
|
+
* @memberof SecretValue
|
|
1912
|
+
*/
|
|
1913
|
+
rawValue?: string;
|
|
1914
|
+
}
|
|
1915
|
+
|
|
1916
|
+
export declare function SecretValueFromJSON(json: any): SecretValue;
|
|
1917
|
+
|
|
1918
|
+
export declare function SecretValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretValue;
|
|
1919
|
+
|
|
1920
|
+
export declare function SecretValueToJSON(value?: SecretValue | null): any;
|
|
1921
|
+
|
|
1922
|
+
export declare interface TerminateContractAgreementRequest {
|
|
1923
|
+
contractAgreementId: string;
|
|
1924
|
+
contractTerminationRequest?: ContractTerminationRequest;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1535
1927
|
export declare class TextApiResponse {
|
|
1536
1928
|
raw: Response;
|
|
1537
1929
|
constructor(raw: Response);
|
|
@@ -1619,7 +2011,7 @@ export declare function TransferHistoryEntryFromJSONTyped(json: any, ignoreDiscr
|
|
|
1619
2011
|
export declare function TransferHistoryEntryToJSON(value?: TransferHistoryEntry | null): any;
|
|
1620
2012
|
|
|
1621
2013
|
/**
|
|
1622
|
-
*
|
|
2014
|
+
* Data as required by the UI's Transfer History Page
|
|
1623
2015
|
* @export
|
|
1624
2016
|
* @interface TransferHistoryPage
|
|
1625
2017
|
*/
|
|
@@ -1771,13 +2163,13 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1771
2163
|
*/
|
|
1772
2164
|
deletePolicyDefinition(requestParameters: DeletePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1773
2165
|
/**
|
|
1774
|
-
* Updates an Asset\'s metadata
|
|
2166
|
+
* Updates an Asset\'s metadata and optionally also the data source.
|
|
1775
2167
|
*/
|
|
1776
|
-
|
|
2168
|
+
editAssetRaw(requestParameters: EditAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
1777
2169
|
/**
|
|
1778
|
-
* Updates an Asset\'s metadata
|
|
2170
|
+
* Updates an Asset\'s metadata and optionally also the data source.
|
|
1779
2171
|
*/
|
|
1780
|
-
|
|
2172
|
+
editAsset(requestParameters: EditAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1781
2173
|
/**
|
|
1782
2174
|
* Collect all data for Asset Page
|
|
1783
2175
|
*/
|
|
@@ -1795,13 +2187,13 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1795
2187
|
*/
|
|
1796
2188
|
getCatalogPageDataOffers(requestParameters?: GetCatalogPageDataOffersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiDataOffer>>;
|
|
1797
2189
|
/**
|
|
1798
|
-
* Collect
|
|
2190
|
+
* Collect filtered data for the Contract Agreement Page
|
|
1799
2191
|
*/
|
|
1800
|
-
getContractAgreementPageRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementPage>>;
|
|
2192
|
+
getContractAgreementPageRaw(requestParameters: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementPage>>;
|
|
1801
2193
|
/**
|
|
1802
|
-
* Collect
|
|
2194
|
+
* Collect filtered data for the Contract Agreement Page
|
|
1803
2195
|
*/
|
|
1804
|
-
getContractAgreementPage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
2196
|
+
getContractAgreementPage(requestParameters?: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
1805
2197
|
/**
|
|
1806
2198
|
* Collect all data for Contract Definition Page
|
|
1807
2199
|
*/
|
|
@@ -1874,6 +2266,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1874
2266
|
* Initiate a Transfer Process
|
|
1875
2267
|
*/
|
|
1876
2268
|
initiateTransfer(requestParameters?: InitiateTransferOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2269
|
+
/**
|
|
2270
|
+
* Terminates a contract agreement designated by its contract agreement id.
|
|
2271
|
+
*/
|
|
2272
|
+
terminateContractAgreementRaw(requestParameters: TerminateContractAgreementRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2273
|
+
/**
|
|
2274
|
+
* Terminates a contract agreement designated by its contract agreement id.
|
|
2275
|
+
*/
|
|
2276
|
+
terminateContractAgreement(requestParameters: TerminateContractAgreementRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1877
2277
|
}
|
|
1878
2278
|
|
|
1879
2279
|
/**
|
|
@@ -1882,6 +2282,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1882
2282
|
* @interface UiAsset
|
|
1883
2283
|
*/
|
|
1884
2284
|
export declare interface UiAsset {
|
|
2285
|
+
/**
|
|
2286
|
+
*
|
|
2287
|
+
* @type {DataSourceAvailability}
|
|
2288
|
+
* @memberof UiAsset
|
|
2289
|
+
*/
|
|
2290
|
+
dataSourceAvailability: DataSourceAvailability;
|
|
1885
2291
|
/**
|
|
1886
2292
|
* Asset Id
|
|
1887
2293
|
* @type {string}
|
|
@@ -1912,6 +2318,18 @@ export declare interface UiAsset {
|
|
|
1912
2318
|
* @memberof UiAsset
|
|
1913
2319
|
*/
|
|
1914
2320
|
creatorOrganizationName: string;
|
|
2321
|
+
/**
|
|
2322
|
+
* Contact E-Mail address. Only for dataSourceAvailability ON_REQUEST.
|
|
2323
|
+
* @type {string}
|
|
2324
|
+
* @memberof UiAsset
|
|
2325
|
+
*/
|
|
2326
|
+
onRequestContactEmail?: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* Contact Preferred E-Mail Subject. Only for dataSourceAvailability ON_REQUEST.
|
|
2329
|
+
* @type {string}
|
|
2330
|
+
* @memberof UiAsset
|
|
2331
|
+
*/
|
|
2332
|
+
onRequestContactEmailSubject?: string;
|
|
1915
2333
|
/**
|
|
1916
2334
|
* Asset Language
|
|
1917
2335
|
* @type {string}
|
|
@@ -1973,25 +2391,25 @@ export declare interface UiAsset {
|
|
|
1973
2391
|
*/
|
|
1974
2392
|
landingPageUrl?: string;
|
|
1975
2393
|
/**
|
|
1976
|
-
* HTTP Datasource
|
|
2394
|
+
* HTTP Datasource Hint: Proxy Method. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
1977
2395
|
* @type {boolean}
|
|
1978
2396
|
* @memberof UiAsset
|
|
1979
2397
|
*/
|
|
1980
2398
|
httpDatasourceHintsProxyMethod?: boolean;
|
|
1981
2399
|
/**
|
|
1982
|
-
* HTTP Datasource
|
|
2400
|
+
* HTTP Datasource Hint: Proxy Path. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
1983
2401
|
* @type {boolean}
|
|
1984
2402
|
* @memberof UiAsset
|
|
1985
2403
|
*/
|
|
1986
2404
|
httpDatasourceHintsProxyPath?: boolean;
|
|
1987
2405
|
/**
|
|
1988
|
-
* HTTP Datasource
|
|
2406
|
+
* HTTP Datasource Hint: Proxy Query Params. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
1989
2407
|
* @type {boolean}
|
|
1990
2408
|
* @memberof UiAsset
|
|
1991
2409
|
*/
|
|
1992
2410
|
httpDatasourceHintsProxyQueryParams?: boolean;
|
|
1993
2411
|
/**
|
|
1994
|
-
* HTTP Datasource
|
|
2412
|
+
* HTTP Datasource Hint: Proxy Body. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
1995
2413
|
* @type {boolean}
|
|
1996
2414
|
* @memberof UiAsset
|
|
1997
2415
|
*/
|
|
@@ -2124,6 +2542,12 @@ export declare interface UiAsset {
|
|
|
2124
2542
|
* @interface UiAssetCreateRequest
|
|
2125
2543
|
*/
|
|
2126
2544
|
export declare interface UiAssetCreateRequest {
|
|
2545
|
+
/**
|
|
2546
|
+
*
|
|
2547
|
+
* @type {UiDataSource}
|
|
2548
|
+
* @memberof UiAssetCreateRequest
|
|
2549
|
+
*/
|
|
2550
|
+
dataSource: UiDataSource;
|
|
2127
2551
|
/**
|
|
2128
2552
|
* Asset Id
|
|
2129
2553
|
* @type {string}
|
|
@@ -2274,14 +2698,6 @@ export declare interface UiAssetCreateRequest {
|
|
|
2274
2698
|
* @memberof UiAssetCreateRequest
|
|
2275
2699
|
*/
|
|
2276
2700
|
temporalCoverageToInclusive?: Date;
|
|
2277
|
-
/**
|
|
2278
|
-
* Data Address
|
|
2279
|
-
* @type {{ [key: string]: string; }}
|
|
2280
|
-
* @memberof UiAssetCreateRequest
|
|
2281
|
-
*/
|
|
2282
|
-
dataAddressProperties: {
|
|
2283
|
-
[key: string]: string;
|
|
2284
|
-
};
|
|
2285
2701
|
/**
|
|
2286
2702
|
* Contains serialized custom properties in the JSON format.
|
|
2287
2703
|
* @type {string}
|
|
@@ -2317,184 +2733,190 @@ export declare function UiAssetCreateRequestToJSON(value?: UiAssetCreateRequest
|
|
|
2317
2733
|
/**
|
|
2318
2734
|
* Data for editing an asset.
|
|
2319
2735
|
* @export
|
|
2320
|
-
* @interface
|
|
2736
|
+
* @interface UiAssetEditRequest
|
|
2321
2737
|
*/
|
|
2322
|
-
export declare interface
|
|
2738
|
+
export declare interface UiAssetEditRequest {
|
|
2739
|
+
/**
|
|
2740
|
+
*
|
|
2741
|
+
* @type {UiDataSource}
|
|
2742
|
+
* @memberof UiAssetEditRequest
|
|
2743
|
+
*/
|
|
2744
|
+
dataSourceOverrideOrNull?: UiDataSource;
|
|
2323
2745
|
/**
|
|
2324
2746
|
* Asset Title
|
|
2325
2747
|
* @type {string}
|
|
2326
|
-
* @memberof
|
|
2748
|
+
* @memberof UiAssetEditRequest
|
|
2327
2749
|
*/
|
|
2328
2750
|
title?: string;
|
|
2329
2751
|
/**
|
|
2330
2752
|
* Asset Language
|
|
2331
2753
|
* @type {string}
|
|
2332
|
-
* @memberof
|
|
2754
|
+
* @memberof UiAssetEditRequest
|
|
2333
2755
|
*/
|
|
2334
2756
|
language?: string;
|
|
2335
2757
|
/**
|
|
2336
2758
|
* Asset Description
|
|
2337
2759
|
* @type {string}
|
|
2338
|
-
* @memberof
|
|
2760
|
+
* @memberof UiAssetEditRequest
|
|
2339
2761
|
*/
|
|
2340
2762
|
description?: string;
|
|
2341
2763
|
/**
|
|
2342
2764
|
* Asset Homepage
|
|
2343
2765
|
* @type {string}
|
|
2344
|
-
* @memberof
|
|
2766
|
+
* @memberof UiAssetEditRequest
|
|
2345
2767
|
*/
|
|
2346
2768
|
publisherHomepage?: string;
|
|
2347
2769
|
/**
|
|
2348
2770
|
* License URL
|
|
2349
2771
|
* @type {string}
|
|
2350
|
-
* @memberof
|
|
2772
|
+
* @memberof UiAssetEditRequest
|
|
2351
2773
|
*/
|
|
2352
2774
|
licenseUrl?: string;
|
|
2353
2775
|
/**
|
|
2354
2776
|
* Version
|
|
2355
2777
|
* @type {string}
|
|
2356
|
-
* @memberof
|
|
2778
|
+
* @memberof UiAssetEditRequest
|
|
2357
2779
|
*/
|
|
2358
2780
|
version?: string;
|
|
2359
2781
|
/**
|
|
2360
2782
|
* Asset Keywords
|
|
2361
2783
|
* @type {Array<string>}
|
|
2362
|
-
* @memberof
|
|
2784
|
+
* @memberof UiAssetEditRequest
|
|
2363
2785
|
*/
|
|
2364
2786
|
keywords?: Array<string>;
|
|
2365
2787
|
/**
|
|
2366
2788
|
* Asset MediaType
|
|
2367
2789
|
* @type {string}
|
|
2368
|
-
* @memberof
|
|
2790
|
+
* @memberof UiAssetEditRequest
|
|
2369
2791
|
*/
|
|
2370
2792
|
mediaType?: string;
|
|
2371
2793
|
/**
|
|
2372
2794
|
* Landing Page URL
|
|
2373
2795
|
* @type {string}
|
|
2374
|
-
* @memberof
|
|
2796
|
+
* @memberof UiAssetEditRequest
|
|
2375
2797
|
*/
|
|
2376
2798
|
landingPageUrl?: string;
|
|
2377
2799
|
/**
|
|
2378
2800
|
* Data Category
|
|
2379
2801
|
* @type {string}
|
|
2380
|
-
* @memberof
|
|
2802
|
+
* @memberof UiAssetEditRequest
|
|
2381
2803
|
*/
|
|
2382
2804
|
dataCategory?: string;
|
|
2383
2805
|
/**
|
|
2384
2806
|
* Data Subcategory
|
|
2385
2807
|
* @type {string}
|
|
2386
|
-
* @memberof
|
|
2808
|
+
* @memberof UiAssetEditRequest
|
|
2387
2809
|
*/
|
|
2388
2810
|
dataSubcategory?: string;
|
|
2389
2811
|
/**
|
|
2390
2812
|
* Data Model
|
|
2391
2813
|
* @type {string}
|
|
2392
|
-
* @memberof
|
|
2814
|
+
* @memberof UiAssetEditRequest
|
|
2393
2815
|
*/
|
|
2394
2816
|
dataModel?: string;
|
|
2395
2817
|
/**
|
|
2396
2818
|
* Geo-Reference Method
|
|
2397
2819
|
* @type {string}
|
|
2398
|
-
* @memberof
|
|
2820
|
+
* @memberof UiAssetEditRequest
|
|
2399
2821
|
*/
|
|
2400
2822
|
geoReferenceMethod?: string;
|
|
2401
2823
|
/**
|
|
2402
2824
|
* Transport Mode
|
|
2403
2825
|
* @type {string}
|
|
2404
|
-
* @memberof
|
|
2826
|
+
* @memberof UiAssetEditRequest
|
|
2405
2827
|
*/
|
|
2406
2828
|
transportMode?: string;
|
|
2407
2829
|
/**
|
|
2408
2830
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2409
2831
|
* @type {string}
|
|
2410
|
-
* @memberof
|
|
2832
|
+
* @memberof UiAssetEditRequest
|
|
2411
2833
|
*/
|
|
2412
2834
|
sovereignLegalName?: string;
|
|
2413
2835
|
/**
|
|
2414
2836
|
* Geo location
|
|
2415
2837
|
* @type {string}
|
|
2416
|
-
* @memberof
|
|
2838
|
+
* @memberof UiAssetEditRequest
|
|
2417
2839
|
*/
|
|
2418
2840
|
geoLocation?: string;
|
|
2419
2841
|
/**
|
|
2420
2842
|
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2421
2843
|
* @type {Array<string>}
|
|
2422
|
-
* @memberof
|
|
2844
|
+
* @memberof UiAssetEditRequest
|
|
2423
2845
|
*/
|
|
2424
2846
|
nutsLocations?: Array<string>;
|
|
2425
2847
|
/**
|
|
2426
2848
|
* Data sample URLs
|
|
2427
2849
|
* @type {Array<string>}
|
|
2428
|
-
* @memberof
|
|
2850
|
+
* @memberof UiAssetEditRequest
|
|
2429
2851
|
*/
|
|
2430
2852
|
dataSampleUrls?: Array<string>;
|
|
2431
2853
|
/**
|
|
2432
2854
|
* Reference file/schema URLs
|
|
2433
2855
|
* @type {Array<string>}
|
|
2434
|
-
* @memberof
|
|
2856
|
+
* @memberof UiAssetEditRequest
|
|
2435
2857
|
*/
|
|
2436
2858
|
referenceFileUrls?: Array<string>;
|
|
2437
2859
|
/**
|
|
2438
2860
|
* Additional information on reference files/schemas
|
|
2439
2861
|
* @type {string}
|
|
2440
|
-
* @memberof
|
|
2862
|
+
* @memberof UiAssetEditRequest
|
|
2441
2863
|
*/
|
|
2442
2864
|
referenceFilesDescription?: string;
|
|
2443
2865
|
/**
|
|
2444
2866
|
* Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers
|
|
2445
2867
|
* @type {string}
|
|
2446
|
-
* @memberof
|
|
2868
|
+
* @memberof UiAssetEditRequest
|
|
2447
2869
|
*/
|
|
2448
2870
|
conditionsForUse?: string;
|
|
2449
2871
|
/**
|
|
2450
2872
|
* Data update frequency
|
|
2451
2873
|
* @type {string}
|
|
2452
|
-
* @memberof
|
|
2874
|
+
* @memberof UiAssetEditRequest
|
|
2453
2875
|
*/
|
|
2454
2876
|
dataUpdateFrequency?: string;
|
|
2455
2877
|
/**
|
|
2456
2878
|
* Temporal coverage start date
|
|
2457
2879
|
* @type {Date}
|
|
2458
|
-
* @memberof
|
|
2880
|
+
* @memberof UiAssetEditRequest
|
|
2459
2881
|
*/
|
|
2460
2882
|
temporalCoverageFrom?: Date;
|
|
2461
2883
|
/**
|
|
2462
2884
|
* Temporal coverage end date (inclusive)
|
|
2463
2885
|
* @type {Date}
|
|
2464
|
-
* @memberof
|
|
2886
|
+
* @memberof UiAssetEditRequest
|
|
2465
2887
|
*/
|
|
2466
2888
|
temporalCoverageToInclusive?: Date;
|
|
2467
2889
|
/**
|
|
2468
2890
|
* Contains serialized custom properties in the JSON format.
|
|
2469
2891
|
* @type {string}
|
|
2470
|
-
* @memberof
|
|
2892
|
+
* @memberof UiAssetEditRequest
|
|
2471
2893
|
*/
|
|
2472
2894
|
customJsonAsString?: string;
|
|
2473
2895
|
/**
|
|
2474
2896
|
* Contains serialized custom properties in the JSON LD format. Contrary to the customJsonAsString field, this string must represent a JSON LD object and will be affected by JSON LD compaction and expansion. Due to a technical limitation, the properties can't be booleans.
|
|
2475
2897
|
* @type {string}
|
|
2476
|
-
* @memberof
|
|
2898
|
+
* @memberof UiAssetEditRequest
|
|
2477
2899
|
*/
|
|
2478
2900
|
customJsonLdAsString?: string;
|
|
2479
2901
|
/**
|
|
2480
2902
|
* Same as customJsonAsString but the data will be stored in the private properties.
|
|
2481
2903
|
* @type {string}
|
|
2482
|
-
* @memberof
|
|
2904
|
+
* @memberof UiAssetEditRequest
|
|
2483
2905
|
*/
|
|
2484
2906
|
privateCustomJsonAsString?: string;
|
|
2485
2907
|
/**
|
|
2486
2908
|
* Same as customJsonLdAsString but the data will be stored in the private properties. The same limitations apply.
|
|
2487
2909
|
* @type {string}
|
|
2488
|
-
* @memberof
|
|
2910
|
+
* @memberof UiAssetEditRequest
|
|
2489
2911
|
*/
|
|
2490
2912
|
privateCustomJsonLdAsString?: string;
|
|
2491
2913
|
}
|
|
2492
2914
|
|
|
2493
|
-
export declare function
|
|
2915
|
+
export declare function UiAssetEditRequestFromJSON(json: any): UiAssetEditRequest;
|
|
2494
2916
|
|
|
2495
|
-
export declare function
|
|
2917
|
+
export declare function UiAssetEditRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetEditRequest;
|
|
2496
2918
|
|
|
2497
|
-
export declare function
|
|
2919
|
+
export declare function UiAssetEditRequestToJSON(value?: UiAssetEditRequest | null): any;
|
|
2498
2920
|
|
|
2499
2921
|
export declare function UiAssetFromJSON(json: any): UiAsset;
|
|
2500
2922
|
|
|
@@ -2703,6 +3125,169 @@ export declare function UiDataOfferFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
2703
3125
|
|
|
2704
3126
|
export declare function UiDataOfferToJSON(value?: UiDataOffer | null): any;
|
|
2705
3127
|
|
|
3128
|
+
/**
|
|
3129
|
+
* Data Offer Data Source Model. Supports certain Data Address types but also leaves a backdoor for custom Data Address Properties.
|
|
3130
|
+
* @export
|
|
3131
|
+
* @interface UiDataSource
|
|
3132
|
+
*/
|
|
3133
|
+
export declare interface UiDataSource {
|
|
3134
|
+
/**
|
|
3135
|
+
*
|
|
3136
|
+
* @type {DataSourceType}
|
|
3137
|
+
* @memberof UiDataSource
|
|
3138
|
+
*/
|
|
3139
|
+
type: DataSourceType;
|
|
3140
|
+
/**
|
|
3141
|
+
*
|
|
3142
|
+
* @type {UiDataSourceHttpData}
|
|
3143
|
+
* @memberof UiDataSource
|
|
3144
|
+
*/
|
|
3145
|
+
httpData?: UiDataSourceHttpData;
|
|
3146
|
+
/**
|
|
3147
|
+
*
|
|
3148
|
+
* @type {UiDataSourceOnRequest}
|
|
3149
|
+
* @memberof UiDataSource
|
|
3150
|
+
*/
|
|
3151
|
+
onRequest?: UiDataSourceOnRequest;
|
|
3152
|
+
/**
|
|
3153
|
+
* For all types. Custom Data Address Properties.
|
|
3154
|
+
* @type {{ [key: string]: string; }}
|
|
3155
|
+
* @memberof UiDataSource
|
|
3156
|
+
*/
|
|
3157
|
+
customProperties?: {
|
|
3158
|
+
[key: string]: string;
|
|
3159
|
+
};
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
export declare function UiDataSourceFromJSON(json: any): UiDataSource;
|
|
3163
|
+
|
|
3164
|
+
export declare function UiDataSourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSource;
|
|
3165
|
+
|
|
3166
|
+
/**
|
|
3167
|
+
* Only for type HTTP_DATA
|
|
3168
|
+
* @export
|
|
3169
|
+
* @interface UiDataSourceHttpData
|
|
3170
|
+
*/
|
|
3171
|
+
export declare interface UiDataSourceHttpData {
|
|
3172
|
+
/**
|
|
3173
|
+
*
|
|
3174
|
+
* @type {UiDataSourceHttpDataMethod}
|
|
3175
|
+
* @memberof UiDataSourceHttpData
|
|
3176
|
+
*/
|
|
3177
|
+
method?: UiDataSourceHttpDataMethod;
|
|
3178
|
+
/**
|
|
3179
|
+
* HTTP Request URL. If parameterized, additional pathParams will be joined onto existing one.
|
|
3180
|
+
* @type {string}
|
|
3181
|
+
* @memberof UiDataSourceHttpData
|
|
3182
|
+
*/
|
|
3183
|
+
baseUrl: string;
|
|
3184
|
+
/**
|
|
3185
|
+
* HTTP Request Query Params / Query String.
|
|
3186
|
+
* @type {string}
|
|
3187
|
+
* @memberof UiDataSourceHttpData
|
|
3188
|
+
*/
|
|
3189
|
+
queryString?: string;
|
|
3190
|
+
/**
|
|
3191
|
+
* Auth Header name. The auth header is handled specially by the EDC as its value can be read from a vault.
|
|
3192
|
+
* @type {string}
|
|
3193
|
+
* @memberof UiDataSourceHttpData
|
|
3194
|
+
*/
|
|
3195
|
+
authHeaderName?: string;
|
|
3196
|
+
/**
|
|
3197
|
+
*
|
|
3198
|
+
* @type {SecretValue}
|
|
3199
|
+
* @memberof UiDataSourceHttpData
|
|
3200
|
+
*/
|
|
3201
|
+
authHeaderValue?: SecretValue;
|
|
3202
|
+
/**
|
|
3203
|
+
* HTTP Request Headers. HTTP Header Parameterization is not available.
|
|
3204
|
+
* @type {{ [key: string]: string; }}
|
|
3205
|
+
* @memberof UiDataSourceHttpData
|
|
3206
|
+
*/
|
|
3207
|
+
headers?: {
|
|
3208
|
+
[key: string]: string;
|
|
3209
|
+
};
|
|
3210
|
+
/**
|
|
3211
|
+
* Enable Method Parameterization. This forces consumers to provide a method, otherwise the transfer will fail.
|
|
3212
|
+
* @type {boolean}
|
|
3213
|
+
* @memberof UiDataSourceHttpData
|
|
3214
|
+
*/
|
|
3215
|
+
enableMethodParameterization?: boolean;
|
|
3216
|
+
/**
|
|
3217
|
+
* Enable Path Parameterization.
|
|
3218
|
+
* @type {boolean}
|
|
3219
|
+
* @memberof UiDataSourceHttpData
|
|
3220
|
+
*/
|
|
3221
|
+
enablePathParameterization?: boolean;
|
|
3222
|
+
/**
|
|
3223
|
+
* Enable Query Parameterization. Any additionally provided queryString will be merged with the existing one.
|
|
3224
|
+
* @type {boolean}
|
|
3225
|
+
* @memberof UiDataSourceHttpData
|
|
3226
|
+
*/
|
|
3227
|
+
enableQueryParameterization?: boolean;
|
|
3228
|
+
/**
|
|
3229
|
+
* Enable Body Parameterization. Forces the provider to provide both a request body and a content type. Only Methods POST, PUT and PATCH allow request bodies.
|
|
3230
|
+
* @type {boolean}
|
|
3231
|
+
* @memberof UiDataSourceHttpData
|
|
3232
|
+
*/
|
|
3233
|
+
enableBodyParameterization?: boolean;
|
|
3234
|
+
}
|
|
3235
|
+
|
|
3236
|
+
export declare function UiDataSourceHttpDataFromJSON(json: any): UiDataSourceHttpData;
|
|
3237
|
+
|
|
3238
|
+
export declare function UiDataSourceHttpDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSourceHttpData;
|
|
3239
|
+
|
|
3240
|
+
/**
|
|
3241
|
+
* Supported HTTP Methods by UiDataSource
|
|
3242
|
+
* @export
|
|
3243
|
+
*/
|
|
3244
|
+
export declare const UiDataSourceHttpDataMethod: {
|
|
3245
|
+
readonly Get: "GET";
|
|
3246
|
+
readonly Post: "POST";
|
|
3247
|
+
readonly Put: "PUT";
|
|
3248
|
+
readonly Patch: "PATCH";
|
|
3249
|
+
readonly Delete: "DELETE";
|
|
3250
|
+
readonly Options: "OPTIONS";
|
|
3251
|
+
};
|
|
3252
|
+
|
|
3253
|
+
export declare type UiDataSourceHttpDataMethod = (typeof UiDataSourceHttpDataMethod)[keyof typeof UiDataSourceHttpDataMethod];
|
|
3254
|
+
|
|
3255
|
+
export declare function UiDataSourceHttpDataMethodFromJSON(json: any): UiDataSourceHttpDataMethod;
|
|
3256
|
+
|
|
3257
|
+
export declare function UiDataSourceHttpDataMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSourceHttpDataMethod;
|
|
3258
|
+
|
|
3259
|
+
export declare function UiDataSourceHttpDataMethodToJSON(value?: UiDataSourceHttpDataMethod | null): any;
|
|
3260
|
+
|
|
3261
|
+
export declare function UiDataSourceHttpDataToJSON(value?: UiDataSourceHttpData | null): any;
|
|
3262
|
+
|
|
3263
|
+
/**
|
|
3264
|
+
* ON_REQUEST type Data Source.
|
|
3265
|
+
* @export
|
|
3266
|
+
* @interface UiDataSourceOnRequest
|
|
3267
|
+
*/
|
|
3268
|
+
export declare interface UiDataSourceOnRequest {
|
|
3269
|
+
/**
|
|
3270
|
+
* Contact E-Mail address
|
|
3271
|
+
* @type {string}
|
|
3272
|
+
* @memberof UiDataSourceOnRequest
|
|
3273
|
+
*/
|
|
3274
|
+
contactEmail: string;
|
|
3275
|
+
/**
|
|
3276
|
+
* Contact Preferred E-Mail Subject
|
|
3277
|
+
* @type {string}
|
|
3278
|
+
* @memberof UiDataSourceOnRequest
|
|
3279
|
+
*/
|
|
3280
|
+
contactPreferredEmailSubject: string;
|
|
3281
|
+
}
|
|
3282
|
+
|
|
3283
|
+
export declare function UiDataSourceOnRequestFromJSON(json: any): UiDataSourceOnRequest;
|
|
3284
|
+
|
|
3285
|
+
export declare function UiDataSourceOnRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSourceOnRequest;
|
|
3286
|
+
|
|
3287
|
+
export declare function UiDataSourceOnRequestToJSON(value?: UiDataSourceOnRequest | null): any;
|
|
3288
|
+
|
|
3289
|
+
export declare function UiDataSourceToJSON(value?: UiDataSource | null): any;
|
|
3290
|
+
|
|
2706
3291
|
/**
|
|
2707
3292
|
* Type-Safe OpenAPI generator friendly Policy DTO as needed by our UI
|
|
2708
3293
|
* @export
|
|
@@ -2841,6 +3426,14 @@ export declare function UiPolicyToJSON(value?: UiPolicy | null): any;
|
|
|
2841
3426
|
*
|
|
2842
3427
|
*/
|
|
2843
3428
|
export declare class UseCaseApi extends runtime.BaseAPI {
|
|
3429
|
+
/**
|
|
3430
|
+
* Create a new Policy Definition
|
|
3431
|
+
*/
|
|
3432
|
+
createPolicyDefinitionUseCaseRaw(requestParameters: CreatePolicyDefinitionUseCaseRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
3433
|
+
/**
|
|
3434
|
+
* Create a new Policy Definition
|
|
3435
|
+
*/
|
|
3436
|
+
createPolicyDefinitionUseCase(requestParameters?: CreatePolicyDefinitionUseCaseRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2844
3437
|
/**
|
|
2845
3438
|
* Basic KPIs about the running EDC Connector.
|
|
2846
3439
|
*/
|