@sovity.de/edc-client 8.1.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 +491 -63
- package/dist/sovity-edc-client.js +1776 -1417
- 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
|
@@ -57,7 +57,7 @@ export declare function AtomicConstraintDtoToJSON(value?: AtomicConstraintDto |
|
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* sovity EDC API Wrapper
|
|
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 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.
|
|
61
61
|
*
|
|
62
62
|
* The version of the OpenAPI document: 0.0.0
|
|
63
63
|
* Contact: contact@sovity.de
|
|
@@ -386,6 +386,18 @@ export declare interface ContractAgreementCard {
|
|
|
386
386
|
* @memberof ContractAgreementCard
|
|
387
387
|
*/
|
|
388
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;
|
|
389
401
|
}
|
|
390
402
|
|
|
391
403
|
export declare function ContractAgreementCardFromJSON(json: any): ContractAgreementCard;
|
|
@@ -412,7 +424,7 @@ export declare function ContractAgreementDirectionFromJSONTyped(json: any, ignor
|
|
|
412
424
|
export declare function ContractAgreementDirectionToJSON(value?: ContractAgreementDirection | null): any;
|
|
413
425
|
|
|
414
426
|
/**
|
|
415
|
-
*
|
|
427
|
+
* Data as required by the UI's Contract Agreement Page
|
|
416
428
|
* @export
|
|
417
429
|
* @interface ContractAgreementPage
|
|
418
430
|
*/
|
|
@@ -429,8 +441,66 @@ export declare function ContractAgreementPageFromJSON(json: any): ContractAgreem
|
|
|
429
441
|
|
|
430
442
|
export declare function ContractAgreementPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementPage;
|
|
431
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
|
+
|
|
432
464
|
export declare function ContractAgreementPageToJSON(value?: ContractAgreementPage | null): any;
|
|
433
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
|
+
|
|
434
504
|
/**
|
|
435
505
|
* A Contract Agreement's Transfer Process
|
|
436
506
|
* @export
|
|
@@ -508,7 +578,7 @@ export declare function ContractDefinitionEntryFromJSONTyped(json: any, ignoreDi
|
|
|
508
578
|
export declare function ContractDefinitionEntryToJSON(value?: ContractDefinitionEntry | null): any;
|
|
509
579
|
|
|
510
580
|
/**
|
|
511
|
-
*
|
|
581
|
+
*
|
|
512
582
|
* @export
|
|
513
583
|
* @interface ContractDefinitionPage
|
|
514
584
|
*/
|
|
@@ -659,6 +729,66 @@ export declare function ContractNegotiationStateFromJSONTyped(json: any, ignoreD
|
|
|
659
729
|
|
|
660
730
|
export declare function ContractNegotiationStateToJSON(value?: ContractNegotiationState | null): any;
|
|
661
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
|
+
|
|
662
792
|
export declare interface CreateAssetRequest {
|
|
663
793
|
uiAssetCreateRequest?: UiAssetCreateRequest;
|
|
664
794
|
}
|
|
@@ -734,7 +864,7 @@ export declare function DashboardMiwConfigFromJSONTyped(json: any, ignoreDiscrim
|
|
|
734
864
|
export declare function DashboardMiwConfigToJSON(value?: DashboardMiwConfig | null): any;
|
|
735
865
|
|
|
736
866
|
/**
|
|
737
|
-
*
|
|
867
|
+
* Data as required by the UI's Dashboard Page
|
|
738
868
|
* @export
|
|
739
869
|
* @interface DashboardPage
|
|
740
870
|
*/
|
|
@@ -850,7 +980,7 @@ export declare function DashboardPageFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
850
980
|
export declare function DashboardPageToJSON(value?: DashboardPage | null): any;
|
|
851
981
|
|
|
852
982
|
/**
|
|
853
|
-
*
|
|
983
|
+
* Number of Transfer Processes for given direction.
|
|
854
984
|
* @export
|
|
855
985
|
* @interface DashboardTransferAmounts
|
|
856
986
|
*/
|
|
@@ -887,6 +1017,41 @@ export declare function DashboardTransferAmountsFromJSONTyped(json: any, ignoreD
|
|
|
887
1017
|
|
|
888
1018
|
export declare function DashboardTransferAmountsToJSON(value?: DashboardTransferAmounts | null): any;
|
|
889
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
|
+
|
|
890
1055
|
export declare const DefaultConfig: Configuration;
|
|
891
1056
|
|
|
892
1057
|
export declare interface DeleteAssetRequest {
|
|
@@ -920,9 +1085,9 @@ export declare interface EdcClientOptions {
|
|
|
920
1085
|
configOverrides?: Partial<ConfigurationParameters>;
|
|
921
1086
|
}
|
|
922
1087
|
|
|
923
|
-
export declare interface
|
|
1088
|
+
export declare interface EditAssetRequest {
|
|
924
1089
|
assetId: string;
|
|
925
|
-
|
|
1090
|
+
uiAssetEditRequest?: UiAssetEditRequest;
|
|
926
1091
|
}
|
|
927
1092
|
|
|
928
1093
|
/**
|
|
@@ -1046,6 +1211,10 @@ export declare interface GetCatalogPageDataOffersRequest {
|
|
|
1046
1211
|
connectorEndpoint?: string;
|
|
1047
1212
|
}
|
|
1048
1213
|
|
|
1214
|
+
export declare interface GetContractAgreementPageRequest {
|
|
1215
|
+
contractAgreementPageQuery?: ContractAgreementPageQuery;
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1049
1218
|
export declare interface GetContractNegotiationRequest {
|
|
1050
1219
|
contractNegotiationId: string;
|
|
1051
1220
|
}
|
|
@@ -1218,6 +1387,16 @@ export declare function instanceOfContractAgreementCard(value: object): boolean;
|
|
|
1218
1387
|
*/
|
|
1219
1388
|
export declare function instanceOfContractAgreementPage(value: object): boolean;
|
|
1220
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
|
+
|
|
1221
1400
|
/**
|
|
1222
1401
|
* Check if a given object implements the ContractAgreementTransferProcess interface.
|
|
1223
1402
|
*/
|
|
@@ -1248,6 +1427,11 @@ export declare function instanceOfContractNegotiationRequest(value: object): boo
|
|
|
1248
1427
|
*/
|
|
1249
1428
|
export declare function instanceOfContractNegotiationState(value: object): boolean;
|
|
1250
1429
|
|
|
1430
|
+
/**
|
|
1431
|
+
* Check if a given object implements the ContractTerminationRequest interface.
|
|
1432
|
+
*/
|
|
1433
|
+
export declare function instanceOfContractTerminationRequest(value: object): boolean;
|
|
1434
|
+
|
|
1251
1435
|
/**
|
|
1252
1436
|
* Check if a given object implements the DashboardDapsConfig interface.
|
|
1253
1437
|
*/
|
|
@@ -1318,6 +1502,11 @@ export declare function instanceOfPolicyDefinitionDto(value: object): boolean;
|
|
|
1318
1502
|
*/
|
|
1319
1503
|
export declare function instanceOfPolicyDefinitionPage(value: object): boolean;
|
|
1320
1504
|
|
|
1505
|
+
/**
|
|
1506
|
+
* Check if a given object implements the SecretValue interface.
|
|
1507
|
+
*/
|
|
1508
|
+
export declare function instanceOfSecretValue(value: object): boolean;
|
|
1509
|
+
|
|
1321
1510
|
/**
|
|
1322
1511
|
* Check if a given object implements the TransferHistoryEntry interface.
|
|
1323
1512
|
*/
|
|
@@ -1349,9 +1538,9 @@ export declare function instanceOfUiAsset(value: object): boolean;
|
|
|
1349
1538
|
export declare function instanceOfUiAssetCreateRequest(value: object): boolean;
|
|
1350
1539
|
|
|
1351
1540
|
/**
|
|
1352
|
-
* Check if a given object implements the
|
|
1541
|
+
* Check if a given object implements the UiAssetEditRequest interface.
|
|
1353
1542
|
*/
|
|
1354
|
-
export declare function
|
|
1543
|
+
export declare function instanceOfUiAssetEditRequest(value: object): boolean;
|
|
1355
1544
|
|
|
1356
1545
|
/**
|
|
1357
1546
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
@@ -1378,6 +1567,21 @@ export declare function instanceOfUiCriterionLiteral(value: object): boolean;
|
|
|
1378
1567
|
*/
|
|
1379
1568
|
export declare function instanceOfUiDataOffer(value: object): boolean;
|
|
1380
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
|
+
|
|
1381
1585
|
/**
|
|
1382
1586
|
* Check if a given object implements the UiPolicy interface.
|
|
1383
1587
|
*/
|
|
@@ -1689,6 +1893,37 @@ declare namespace runtime {
|
|
|
1689
1893
|
}
|
|
1690
1894
|
}
|
|
1691
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
|
+
|
|
1692
1927
|
export declare class TextApiResponse {
|
|
1693
1928
|
raw: Response;
|
|
1694
1929
|
constructor(raw: Response);
|
|
@@ -1776,7 +2011,7 @@ export declare function TransferHistoryEntryFromJSONTyped(json: any, ignoreDiscr
|
|
|
1776
2011
|
export declare function TransferHistoryEntryToJSON(value?: TransferHistoryEntry | null): any;
|
|
1777
2012
|
|
|
1778
2013
|
/**
|
|
1779
|
-
*
|
|
2014
|
+
* Data as required by the UI's Transfer History Page
|
|
1780
2015
|
* @export
|
|
1781
2016
|
* @interface TransferHistoryPage
|
|
1782
2017
|
*/
|
|
@@ -1928,13 +2163,13 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1928
2163
|
*/
|
|
1929
2164
|
deletePolicyDefinition(requestParameters: DeletePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1930
2165
|
/**
|
|
1931
|
-
* Updates an Asset\'s metadata
|
|
2166
|
+
* Updates an Asset\'s metadata and optionally also the data source.
|
|
1932
2167
|
*/
|
|
1933
|
-
|
|
2168
|
+
editAssetRaw(requestParameters: EditAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
1934
2169
|
/**
|
|
1935
|
-
* Updates an Asset\'s metadata
|
|
2170
|
+
* Updates an Asset\'s metadata and optionally also the data source.
|
|
1936
2171
|
*/
|
|
1937
|
-
|
|
2172
|
+
editAsset(requestParameters: EditAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
1938
2173
|
/**
|
|
1939
2174
|
* Collect all data for Asset Page
|
|
1940
2175
|
*/
|
|
@@ -1952,13 +2187,13 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
1952
2187
|
*/
|
|
1953
2188
|
getCatalogPageDataOffers(requestParameters?: GetCatalogPageDataOffersRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<UiDataOffer>>;
|
|
1954
2189
|
/**
|
|
1955
|
-
* Collect
|
|
2190
|
+
* Collect filtered data for the Contract Agreement Page
|
|
1956
2191
|
*/
|
|
1957
|
-
getContractAgreementPageRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementPage>>;
|
|
2192
|
+
getContractAgreementPageRaw(requestParameters: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ContractAgreementPage>>;
|
|
1958
2193
|
/**
|
|
1959
|
-
* Collect
|
|
2194
|
+
* Collect filtered data for the Contract Agreement Page
|
|
1960
2195
|
*/
|
|
1961
|
-
getContractAgreementPage(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
2196
|
+
getContractAgreementPage(requestParameters?: GetContractAgreementPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
1962
2197
|
/**
|
|
1963
2198
|
* Collect all data for Contract Definition Page
|
|
1964
2199
|
*/
|
|
@@ -2031,6 +2266,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2031
2266
|
* Initiate a Transfer Process
|
|
2032
2267
|
*/
|
|
2033
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>;
|
|
2034
2277
|
}
|
|
2035
2278
|
|
|
2036
2279
|
/**
|
|
@@ -2039,6 +2282,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2039
2282
|
* @interface UiAsset
|
|
2040
2283
|
*/
|
|
2041
2284
|
export declare interface UiAsset {
|
|
2285
|
+
/**
|
|
2286
|
+
*
|
|
2287
|
+
* @type {DataSourceAvailability}
|
|
2288
|
+
* @memberof UiAsset
|
|
2289
|
+
*/
|
|
2290
|
+
dataSourceAvailability: DataSourceAvailability;
|
|
2042
2291
|
/**
|
|
2043
2292
|
* Asset Id
|
|
2044
2293
|
* @type {string}
|
|
@@ -2069,6 +2318,18 @@ export declare interface UiAsset {
|
|
|
2069
2318
|
* @memberof UiAsset
|
|
2070
2319
|
*/
|
|
2071
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;
|
|
2072
2333
|
/**
|
|
2073
2334
|
* Asset Language
|
|
2074
2335
|
* @type {string}
|
|
@@ -2130,25 +2391,25 @@ export declare interface UiAsset {
|
|
|
2130
2391
|
*/
|
|
2131
2392
|
landingPageUrl?: string;
|
|
2132
2393
|
/**
|
|
2133
|
-
* HTTP Datasource
|
|
2394
|
+
* HTTP Datasource Hint: Proxy Method. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
2134
2395
|
* @type {boolean}
|
|
2135
2396
|
* @memberof UiAsset
|
|
2136
2397
|
*/
|
|
2137
2398
|
httpDatasourceHintsProxyMethod?: boolean;
|
|
2138
2399
|
/**
|
|
2139
|
-
* HTTP Datasource
|
|
2400
|
+
* HTTP Datasource Hint: Proxy Path. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
2140
2401
|
* @type {boolean}
|
|
2141
2402
|
* @memberof UiAsset
|
|
2142
2403
|
*/
|
|
2143
2404
|
httpDatasourceHintsProxyPath?: boolean;
|
|
2144
2405
|
/**
|
|
2145
|
-
* HTTP Datasource
|
|
2406
|
+
* HTTP Datasource Hint: Proxy Query Params. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
2146
2407
|
* @type {boolean}
|
|
2147
2408
|
* @memberof UiAsset
|
|
2148
2409
|
*/
|
|
2149
2410
|
httpDatasourceHintsProxyQueryParams?: boolean;
|
|
2150
2411
|
/**
|
|
2151
|
-
* HTTP Datasource
|
|
2412
|
+
* HTTP Datasource Hint: Proxy Body. Only for dataSourceAvailability LIVE with an underlying HTTP_DATA Data Source.
|
|
2152
2413
|
* @type {boolean}
|
|
2153
2414
|
* @memberof UiAsset
|
|
2154
2415
|
*/
|
|
@@ -2281,6 +2542,12 @@ export declare interface UiAsset {
|
|
|
2281
2542
|
* @interface UiAssetCreateRequest
|
|
2282
2543
|
*/
|
|
2283
2544
|
export declare interface UiAssetCreateRequest {
|
|
2545
|
+
/**
|
|
2546
|
+
*
|
|
2547
|
+
* @type {UiDataSource}
|
|
2548
|
+
* @memberof UiAssetCreateRequest
|
|
2549
|
+
*/
|
|
2550
|
+
dataSource: UiDataSource;
|
|
2284
2551
|
/**
|
|
2285
2552
|
* Asset Id
|
|
2286
2553
|
* @type {string}
|
|
@@ -2431,14 +2698,6 @@ export declare interface UiAssetCreateRequest {
|
|
|
2431
2698
|
* @memberof UiAssetCreateRequest
|
|
2432
2699
|
*/
|
|
2433
2700
|
temporalCoverageToInclusive?: Date;
|
|
2434
|
-
/**
|
|
2435
|
-
* Data Address
|
|
2436
|
-
* @type {{ [key: string]: string; }}
|
|
2437
|
-
* @memberof UiAssetCreateRequest
|
|
2438
|
-
*/
|
|
2439
|
-
dataAddressProperties: {
|
|
2440
|
-
[key: string]: string;
|
|
2441
|
-
};
|
|
2442
2701
|
/**
|
|
2443
2702
|
* Contains serialized custom properties in the JSON format.
|
|
2444
2703
|
* @type {string}
|
|
@@ -2474,184 +2733,190 @@ export declare function UiAssetCreateRequestToJSON(value?: UiAssetCreateRequest
|
|
|
2474
2733
|
/**
|
|
2475
2734
|
* Data for editing an asset.
|
|
2476
2735
|
* @export
|
|
2477
|
-
* @interface
|
|
2736
|
+
* @interface UiAssetEditRequest
|
|
2478
2737
|
*/
|
|
2479
|
-
export declare interface
|
|
2738
|
+
export declare interface UiAssetEditRequest {
|
|
2739
|
+
/**
|
|
2740
|
+
*
|
|
2741
|
+
* @type {UiDataSource}
|
|
2742
|
+
* @memberof UiAssetEditRequest
|
|
2743
|
+
*/
|
|
2744
|
+
dataSourceOverrideOrNull?: UiDataSource;
|
|
2480
2745
|
/**
|
|
2481
2746
|
* Asset Title
|
|
2482
2747
|
* @type {string}
|
|
2483
|
-
* @memberof
|
|
2748
|
+
* @memberof UiAssetEditRequest
|
|
2484
2749
|
*/
|
|
2485
2750
|
title?: string;
|
|
2486
2751
|
/**
|
|
2487
2752
|
* Asset Language
|
|
2488
2753
|
* @type {string}
|
|
2489
|
-
* @memberof
|
|
2754
|
+
* @memberof UiAssetEditRequest
|
|
2490
2755
|
*/
|
|
2491
2756
|
language?: string;
|
|
2492
2757
|
/**
|
|
2493
2758
|
* Asset Description
|
|
2494
2759
|
* @type {string}
|
|
2495
|
-
* @memberof
|
|
2760
|
+
* @memberof UiAssetEditRequest
|
|
2496
2761
|
*/
|
|
2497
2762
|
description?: string;
|
|
2498
2763
|
/**
|
|
2499
2764
|
* Asset Homepage
|
|
2500
2765
|
* @type {string}
|
|
2501
|
-
* @memberof
|
|
2766
|
+
* @memberof UiAssetEditRequest
|
|
2502
2767
|
*/
|
|
2503
2768
|
publisherHomepage?: string;
|
|
2504
2769
|
/**
|
|
2505
2770
|
* License URL
|
|
2506
2771
|
* @type {string}
|
|
2507
|
-
* @memberof
|
|
2772
|
+
* @memberof UiAssetEditRequest
|
|
2508
2773
|
*/
|
|
2509
2774
|
licenseUrl?: string;
|
|
2510
2775
|
/**
|
|
2511
2776
|
* Version
|
|
2512
2777
|
* @type {string}
|
|
2513
|
-
* @memberof
|
|
2778
|
+
* @memberof UiAssetEditRequest
|
|
2514
2779
|
*/
|
|
2515
2780
|
version?: string;
|
|
2516
2781
|
/**
|
|
2517
2782
|
* Asset Keywords
|
|
2518
2783
|
* @type {Array<string>}
|
|
2519
|
-
* @memberof
|
|
2784
|
+
* @memberof UiAssetEditRequest
|
|
2520
2785
|
*/
|
|
2521
2786
|
keywords?: Array<string>;
|
|
2522
2787
|
/**
|
|
2523
2788
|
* Asset MediaType
|
|
2524
2789
|
* @type {string}
|
|
2525
|
-
* @memberof
|
|
2790
|
+
* @memberof UiAssetEditRequest
|
|
2526
2791
|
*/
|
|
2527
2792
|
mediaType?: string;
|
|
2528
2793
|
/**
|
|
2529
2794
|
* Landing Page URL
|
|
2530
2795
|
* @type {string}
|
|
2531
|
-
* @memberof
|
|
2796
|
+
* @memberof UiAssetEditRequest
|
|
2532
2797
|
*/
|
|
2533
2798
|
landingPageUrl?: string;
|
|
2534
2799
|
/**
|
|
2535
2800
|
* Data Category
|
|
2536
2801
|
* @type {string}
|
|
2537
|
-
* @memberof
|
|
2802
|
+
* @memberof UiAssetEditRequest
|
|
2538
2803
|
*/
|
|
2539
2804
|
dataCategory?: string;
|
|
2540
2805
|
/**
|
|
2541
2806
|
* Data Subcategory
|
|
2542
2807
|
* @type {string}
|
|
2543
|
-
* @memberof
|
|
2808
|
+
* @memberof UiAssetEditRequest
|
|
2544
2809
|
*/
|
|
2545
2810
|
dataSubcategory?: string;
|
|
2546
2811
|
/**
|
|
2547
2812
|
* Data Model
|
|
2548
2813
|
* @type {string}
|
|
2549
|
-
* @memberof
|
|
2814
|
+
* @memberof UiAssetEditRequest
|
|
2550
2815
|
*/
|
|
2551
2816
|
dataModel?: string;
|
|
2552
2817
|
/**
|
|
2553
2818
|
* Geo-Reference Method
|
|
2554
2819
|
* @type {string}
|
|
2555
|
-
* @memberof
|
|
2820
|
+
* @memberof UiAssetEditRequest
|
|
2556
2821
|
*/
|
|
2557
2822
|
geoReferenceMethod?: string;
|
|
2558
2823
|
/**
|
|
2559
2824
|
* Transport Mode
|
|
2560
2825
|
* @type {string}
|
|
2561
|
-
* @memberof
|
|
2826
|
+
* @memberof UiAssetEditRequest
|
|
2562
2827
|
*/
|
|
2563
2828
|
transportMode?: string;
|
|
2564
2829
|
/**
|
|
2565
2830
|
* The sovereign is distinct from the publisher by being the legal owner of the data.
|
|
2566
2831
|
* @type {string}
|
|
2567
|
-
* @memberof
|
|
2832
|
+
* @memberof UiAssetEditRequest
|
|
2568
2833
|
*/
|
|
2569
2834
|
sovereignLegalName?: string;
|
|
2570
2835
|
/**
|
|
2571
2836
|
* Geo location
|
|
2572
2837
|
* @type {string}
|
|
2573
|
-
* @memberof
|
|
2838
|
+
* @memberof UiAssetEditRequest
|
|
2574
2839
|
*/
|
|
2575
2840
|
geoLocation?: string;
|
|
2576
2841
|
/**
|
|
2577
2842
|
* Locations by NUTS standard which divides countries into administrative divisions
|
|
2578
2843
|
* @type {Array<string>}
|
|
2579
|
-
* @memberof
|
|
2844
|
+
* @memberof UiAssetEditRequest
|
|
2580
2845
|
*/
|
|
2581
2846
|
nutsLocations?: Array<string>;
|
|
2582
2847
|
/**
|
|
2583
2848
|
* Data sample URLs
|
|
2584
2849
|
* @type {Array<string>}
|
|
2585
|
-
* @memberof
|
|
2850
|
+
* @memberof UiAssetEditRequest
|
|
2586
2851
|
*/
|
|
2587
2852
|
dataSampleUrls?: Array<string>;
|
|
2588
2853
|
/**
|
|
2589
2854
|
* Reference file/schema URLs
|
|
2590
2855
|
* @type {Array<string>}
|
|
2591
|
-
* @memberof
|
|
2856
|
+
* @memberof UiAssetEditRequest
|
|
2592
2857
|
*/
|
|
2593
2858
|
referenceFileUrls?: Array<string>;
|
|
2594
2859
|
/**
|
|
2595
2860
|
* Additional information on reference files/schemas
|
|
2596
2861
|
* @type {string}
|
|
2597
|
-
* @memberof
|
|
2862
|
+
* @memberof UiAssetEditRequest
|
|
2598
2863
|
*/
|
|
2599
2864
|
referenceFilesDescription?: string;
|
|
2600
2865
|
/**
|
|
2601
2866
|
* Instructions for use that are not legally relevant e.g. information on how to cite the dataset in papers
|
|
2602
2867
|
* @type {string}
|
|
2603
|
-
* @memberof
|
|
2868
|
+
* @memberof UiAssetEditRequest
|
|
2604
2869
|
*/
|
|
2605
2870
|
conditionsForUse?: string;
|
|
2606
2871
|
/**
|
|
2607
2872
|
* Data update frequency
|
|
2608
2873
|
* @type {string}
|
|
2609
|
-
* @memberof
|
|
2874
|
+
* @memberof UiAssetEditRequest
|
|
2610
2875
|
*/
|
|
2611
2876
|
dataUpdateFrequency?: string;
|
|
2612
2877
|
/**
|
|
2613
2878
|
* Temporal coverage start date
|
|
2614
2879
|
* @type {Date}
|
|
2615
|
-
* @memberof
|
|
2880
|
+
* @memberof UiAssetEditRequest
|
|
2616
2881
|
*/
|
|
2617
2882
|
temporalCoverageFrom?: Date;
|
|
2618
2883
|
/**
|
|
2619
2884
|
* Temporal coverage end date (inclusive)
|
|
2620
2885
|
* @type {Date}
|
|
2621
|
-
* @memberof
|
|
2886
|
+
* @memberof UiAssetEditRequest
|
|
2622
2887
|
*/
|
|
2623
2888
|
temporalCoverageToInclusive?: Date;
|
|
2624
2889
|
/**
|
|
2625
2890
|
* Contains serialized custom properties in the JSON format.
|
|
2626
2891
|
* @type {string}
|
|
2627
|
-
* @memberof
|
|
2892
|
+
* @memberof UiAssetEditRequest
|
|
2628
2893
|
*/
|
|
2629
2894
|
customJsonAsString?: string;
|
|
2630
2895
|
/**
|
|
2631
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.
|
|
2632
2897
|
* @type {string}
|
|
2633
|
-
* @memberof
|
|
2898
|
+
* @memberof UiAssetEditRequest
|
|
2634
2899
|
*/
|
|
2635
2900
|
customJsonLdAsString?: string;
|
|
2636
2901
|
/**
|
|
2637
2902
|
* Same as customJsonAsString but the data will be stored in the private properties.
|
|
2638
2903
|
* @type {string}
|
|
2639
|
-
* @memberof
|
|
2904
|
+
* @memberof UiAssetEditRequest
|
|
2640
2905
|
*/
|
|
2641
2906
|
privateCustomJsonAsString?: string;
|
|
2642
2907
|
/**
|
|
2643
2908
|
* Same as customJsonLdAsString but the data will be stored in the private properties. The same limitations apply.
|
|
2644
2909
|
* @type {string}
|
|
2645
|
-
* @memberof
|
|
2910
|
+
* @memberof UiAssetEditRequest
|
|
2646
2911
|
*/
|
|
2647
2912
|
privateCustomJsonLdAsString?: string;
|
|
2648
2913
|
}
|
|
2649
2914
|
|
|
2650
|
-
export declare function
|
|
2915
|
+
export declare function UiAssetEditRequestFromJSON(json: any): UiAssetEditRequest;
|
|
2651
2916
|
|
|
2652
|
-
export declare function
|
|
2917
|
+
export declare function UiAssetEditRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetEditRequest;
|
|
2653
2918
|
|
|
2654
|
-
export declare function
|
|
2919
|
+
export declare function UiAssetEditRequestToJSON(value?: UiAssetEditRequest | null): any;
|
|
2655
2920
|
|
|
2656
2921
|
export declare function UiAssetFromJSON(json: any): UiAsset;
|
|
2657
2922
|
|
|
@@ -2860,6 +3125,169 @@ export declare function UiDataOfferFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
2860
3125
|
|
|
2861
3126
|
export declare function UiDataOfferToJSON(value?: UiDataOffer | null): any;
|
|
2862
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
|
+
|
|
2863
3291
|
/**
|
|
2864
3292
|
* Type-Safe OpenAPI generator friendly Policy DTO as needed by our UI
|
|
2865
3293
|
* @export
|