@sovity.de/edc-client 11.0.0 → 12.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.
|
@@ -977,6 +977,12 @@ export declare interface DashboardPage {
|
|
|
977
977
|
* @memberof DashboardPage
|
|
978
978
|
*/
|
|
979
979
|
transferProcessesProviding: DashboardTransferAmounts;
|
|
980
|
+
/**
|
|
981
|
+
* Your Connector's Management API URL for API Users
|
|
982
|
+
* @type {string}
|
|
983
|
+
* @memberof DashboardPage
|
|
984
|
+
*/
|
|
985
|
+
managementApiUrlShownInDashboard: string;
|
|
980
986
|
/**
|
|
981
987
|
* Your Connector's Connector Endpoint
|
|
982
988
|
* @type {string}
|
|
@@ -1686,6 +1692,18 @@ export declare function instanceOfUiAssetCreateRequest(value: any): value is UiA
|
|
|
1686
1692
|
*/
|
|
1687
1693
|
export declare function instanceOfUiAssetEditRequest(value: any): value is UiAssetEditRequest;
|
|
1688
1694
|
|
|
1695
|
+
/**
|
|
1696
|
+
* Check if a given object implements the UiConfig interface.
|
|
1697
|
+
*/
|
|
1698
|
+
export declare function instanceOfUiConfig(value: any): value is UiConfig;
|
|
1699
|
+
|
|
1700
|
+
export declare function instanceOfUiConfigFeature(value: any): boolean;
|
|
1701
|
+
|
|
1702
|
+
/**
|
|
1703
|
+
* Check if a given object implements the UiConfigPreconfiguredCounterparty interface.
|
|
1704
|
+
*/
|
|
1705
|
+
export declare function instanceOfUiConfigPreconfiguredCounterparty(value: any): value is UiConfigPreconfiguredCounterparty;
|
|
1706
|
+
|
|
1689
1707
|
/**
|
|
1690
1708
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
1691
1709
|
*/
|
|
@@ -2508,6 +2526,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2508
2526
|
* Terminates a contract agreement designated by its contract agreement id.
|
|
2509
2527
|
*/
|
|
2510
2528
|
terminateContractAgreement(requestParameters: TerminateContractAgreementRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2529
|
+
/**
|
|
2530
|
+
* Get the UI configuration
|
|
2531
|
+
*/
|
|
2532
|
+
uiConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UiConfig>>;
|
|
2533
|
+
/**
|
|
2534
|
+
* Get the UI configuration
|
|
2535
|
+
*/
|
|
2536
|
+
uiConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UiConfig>;
|
|
2511
2537
|
}
|
|
2512
2538
|
|
|
2513
2539
|
/**
|
|
@@ -3164,6 +3190,112 @@ export declare function UiAssetToJSON(json: any): UiAsset;
|
|
|
3164
3190
|
|
|
3165
3191
|
export declare function UiAssetToJSONTyped(value?: UiAsset | null, ignoreDiscriminator?: boolean): any;
|
|
3166
3192
|
|
|
3193
|
+
/**
|
|
3194
|
+
* UI Config
|
|
3195
|
+
* @export
|
|
3196
|
+
* @interface UiConfig
|
|
3197
|
+
*/
|
|
3198
|
+
export declare interface UiConfig {
|
|
3199
|
+
/**
|
|
3200
|
+
* Enabled features
|
|
3201
|
+
* @type {Array<UiConfigFeature>}
|
|
3202
|
+
* @memberof UiConfig
|
|
3203
|
+
*/
|
|
3204
|
+
features: Array<UiConfigFeature>;
|
|
3205
|
+
/**
|
|
3206
|
+
* Pre-configured Counterparty Connectors
|
|
3207
|
+
* @type {Array<UiConfigPreconfiguredCounterparty>}
|
|
3208
|
+
* @memberof UiConfig
|
|
3209
|
+
*/
|
|
3210
|
+
preconfiguredCounterparties: Array<UiConfigPreconfiguredCounterparty>;
|
|
3211
|
+
/**
|
|
3212
|
+
* Logout URL
|
|
3213
|
+
* @type {string}
|
|
3214
|
+
* @memberof UiConfig
|
|
3215
|
+
*/
|
|
3216
|
+
logoutUrl?: string;
|
|
3217
|
+
/**
|
|
3218
|
+
* Documentation URL
|
|
3219
|
+
* @type {string}
|
|
3220
|
+
* @memberof UiConfig
|
|
3221
|
+
*/
|
|
3222
|
+
documentationUrl?: string;
|
|
3223
|
+
/**
|
|
3224
|
+
* Support URL
|
|
3225
|
+
* @type {string}
|
|
3226
|
+
* @memberof UiConfig
|
|
3227
|
+
*/
|
|
3228
|
+
supportUrl?: string;
|
|
3229
|
+
/**
|
|
3230
|
+
* Privacy Policy URL
|
|
3231
|
+
* @type {string}
|
|
3232
|
+
* @memberof UiConfig
|
|
3233
|
+
*/
|
|
3234
|
+
privacyPolicyUrl?: string;
|
|
3235
|
+
/**
|
|
3236
|
+
* Legal Notice URL
|
|
3237
|
+
* @type {string}
|
|
3238
|
+
* @memberof UiConfig
|
|
3239
|
+
*/
|
|
3240
|
+
legalNoticeUrl?: string;
|
|
3241
|
+
}
|
|
3242
|
+
|
|
3243
|
+
/**
|
|
3244
|
+
* Enabled UI Features
|
|
3245
|
+
* @export
|
|
3246
|
+
*/
|
|
3247
|
+
export declare const UiConfigFeature: {
|
|
3248
|
+
readonly ConnectorLimits: "CONNECTOR_LIMITS";
|
|
3249
|
+
readonly OpenSourceMarketing: "OPEN_SOURCE_MARKETING";
|
|
3250
|
+
readonly EeBasicMarketing: "EE_BASIC_MARKETING";
|
|
3251
|
+
};
|
|
3252
|
+
|
|
3253
|
+
export declare type UiConfigFeature = (typeof UiConfigFeature)[keyof typeof UiConfigFeature];
|
|
3254
|
+
|
|
3255
|
+
export declare function UiConfigFeatureFromJSON(json: any): UiConfigFeature;
|
|
3256
|
+
|
|
3257
|
+
export declare function UiConfigFeatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigFeature;
|
|
3258
|
+
|
|
3259
|
+
export declare function UiConfigFeatureToJSON(value?: UiConfigFeature | null): any;
|
|
3260
|
+
|
|
3261
|
+
export declare function UiConfigFeatureToJSONTyped(value: any, ignoreDiscriminator: boolean): UiConfigFeature;
|
|
3262
|
+
|
|
3263
|
+
export declare function UiConfigFromJSON(json: any): UiConfig;
|
|
3264
|
+
|
|
3265
|
+
export declare function UiConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfig;
|
|
3266
|
+
|
|
3267
|
+
/**
|
|
3268
|
+
* Pre-configured counterparty for the Catalog
|
|
3269
|
+
* @export
|
|
3270
|
+
* @interface UiConfigPreconfiguredCounterparty
|
|
3271
|
+
*/
|
|
3272
|
+
export declare interface UiConfigPreconfiguredCounterparty {
|
|
3273
|
+
/**
|
|
3274
|
+
* Participant ID
|
|
3275
|
+
* @type {string}
|
|
3276
|
+
* @memberof UiConfigPreconfiguredCounterparty
|
|
3277
|
+
*/
|
|
3278
|
+
participantId: string;
|
|
3279
|
+
/**
|
|
3280
|
+
* Connector Endpoint
|
|
3281
|
+
* @type {string}
|
|
3282
|
+
* @memberof UiConfigPreconfiguredCounterparty
|
|
3283
|
+
*/
|
|
3284
|
+
connectorEndpoint: string;
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
export declare function UiConfigPreconfiguredCounterpartyFromJSON(json: any): UiConfigPreconfiguredCounterparty;
|
|
3288
|
+
|
|
3289
|
+
export declare function UiConfigPreconfiguredCounterpartyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigPreconfiguredCounterparty;
|
|
3290
|
+
|
|
3291
|
+
export declare function UiConfigPreconfiguredCounterpartyToJSON(json: any): UiConfigPreconfiguredCounterparty;
|
|
3292
|
+
|
|
3293
|
+
export declare function UiConfigPreconfiguredCounterpartyToJSONTyped(value?: UiConfigPreconfiguredCounterparty | null, ignoreDiscriminator?: boolean): any;
|
|
3294
|
+
|
|
3295
|
+
export declare function UiConfigToJSON(json: any): UiConfig;
|
|
3296
|
+
|
|
3297
|
+
export declare function UiConfigToJSONTyped(value?: UiConfig | null, ignoreDiscriminator?: boolean): any;
|
|
3298
|
+
|
|
3167
3299
|
/**
|
|
3168
3300
|
* Contract Negotiation Information
|
|
3169
3301
|
* @export
|