@sovity.de/edc-client 15.0.1 → 16.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.
|
@@ -1585,7 +1585,7 @@ export declare interface DashboardPage {
|
|
|
1585
1585
|
*/
|
|
1586
1586
|
connectorDapsConfig?: DashboardDapsConfig;
|
|
1587
1587
|
/**
|
|
1588
|
-
* Your Connector's Catena-X Web-DID Configuration (if present)
|
|
1588
|
+
* Your Connector's Catena-X or Sphin-X Web-DID Configuration (if present)
|
|
1589
1589
|
* @type {DashboardCxDidConfig}
|
|
1590
1590
|
* @memberof DashboardPage
|
|
1591
1591
|
*/
|
|
@@ -2395,6 +2395,11 @@ export declare function instanceOfUiAssetCreateRequest(value: any): value is UiA
|
|
|
2395
2395
|
*/
|
|
2396
2396
|
export declare function instanceOfUiAssetEditRequest(value: any): value is UiAssetEditRequest;
|
|
2397
2397
|
|
|
2398
|
+
/**
|
|
2399
|
+
* Check if a given object implements the UiAssetExtForSphinx interface.
|
|
2400
|
+
*/
|
|
2401
|
+
export declare function instanceOfUiAssetExtForSphinx(value: any): value is UiAssetExtForSphinx;
|
|
2402
|
+
|
|
2398
2403
|
/**
|
|
2399
2404
|
* Check if a given object implements the UiConfig interface.
|
|
2400
2405
|
*/
|
|
@@ -3787,6 +3792,12 @@ export declare interface UiAsset {
|
|
|
3787
3792
|
* @memberof UiAsset
|
|
3788
3793
|
*/
|
|
3789
3794
|
temporalCoverageToInclusive?: Date;
|
|
3795
|
+
/**
|
|
3796
|
+
* sphin-x dataspace specific asset metadata fields
|
|
3797
|
+
* @type {UiAssetExtForSphinx}
|
|
3798
|
+
* @memberof UiAsset
|
|
3799
|
+
*/
|
|
3800
|
+
sphinxFields?: UiAssetExtForSphinx;
|
|
3790
3801
|
/**
|
|
3791
3802
|
* Contains the entire asset in the JSON-LD format
|
|
3792
3803
|
* @type {string}
|
|
@@ -3945,6 +3956,12 @@ export declare interface UiAssetCreateRequest {
|
|
|
3945
3956
|
* @memberof UiAssetCreateRequest
|
|
3946
3957
|
*/
|
|
3947
3958
|
temporalCoverageToInclusive?: Date;
|
|
3959
|
+
/**
|
|
3960
|
+
* sphin-x dataspace specific asset metadata fields
|
|
3961
|
+
* @type {UiAssetExtForSphinx}
|
|
3962
|
+
* @memberof UiAssetCreateRequest
|
|
3963
|
+
*/
|
|
3964
|
+
sphinxFields?: UiAssetExtForSphinx;
|
|
3948
3965
|
/**
|
|
3949
3966
|
* Contains serialized custom properties in the JSON format.
|
|
3950
3967
|
* @type {string}
|
|
@@ -4099,6 +4116,12 @@ export declare interface UiAssetEditRequest {
|
|
|
4099
4116
|
* @memberof UiAssetEditRequest
|
|
4100
4117
|
*/
|
|
4101
4118
|
temporalCoverageToInclusive?: Date;
|
|
4119
|
+
/**
|
|
4120
|
+
* sphin-x dataspace specific asset metadata fields
|
|
4121
|
+
* @type {UiAssetExtForSphinx}
|
|
4122
|
+
* @memberof UiAssetEditRequest
|
|
4123
|
+
*/
|
|
4124
|
+
sphinxFields?: UiAssetExtForSphinx;
|
|
4102
4125
|
/**
|
|
4103
4126
|
* Contains serialized custom properties in the JSON format.
|
|
4104
4127
|
* @type {string}
|
|
@@ -4133,6 +4156,28 @@ export declare function UiAssetEditRequestToJSON(json: any): UiAssetEditRequest;
|
|
|
4133
4156
|
|
|
4134
4157
|
export declare function UiAssetEditRequestToJSONTyped(value?: UiAssetEditRequest | null, ignoreDiscriminator?: boolean): any;
|
|
4135
4158
|
|
|
4159
|
+
/**
|
|
4160
|
+
* Type-safe extra fields for the sphin-x dataspace.
|
|
4161
|
+
* @export
|
|
4162
|
+
* @interface UiAssetExtForSphinx
|
|
4163
|
+
*/
|
|
4164
|
+
export declare interface UiAssetExtForSphinx {
|
|
4165
|
+
/**
|
|
4166
|
+
* Sphin-X Data Model Name
|
|
4167
|
+
* @type {string}
|
|
4168
|
+
* @memberof UiAssetExtForSphinx
|
|
4169
|
+
*/
|
|
4170
|
+
dataModelName: string;
|
|
4171
|
+
}
|
|
4172
|
+
|
|
4173
|
+
export declare function UiAssetExtForSphinxFromJSON(json: any): UiAssetExtForSphinx;
|
|
4174
|
+
|
|
4175
|
+
export declare function UiAssetExtForSphinxFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetExtForSphinx;
|
|
4176
|
+
|
|
4177
|
+
export declare function UiAssetExtForSphinxToJSON(json: any): UiAssetExtForSphinx;
|
|
4178
|
+
|
|
4179
|
+
export declare function UiAssetExtForSphinxToJSONTyped(value?: UiAssetExtForSphinx | null, ignoreDiscriminator?: boolean): any;
|
|
4180
|
+
|
|
4136
4181
|
export declare function UiAssetFromJSON(json: any): UiAsset;
|
|
4137
4182
|
|
|
4138
4183
|
export declare function UiAssetFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAsset;
|
|
@@ -4189,6 +4234,18 @@ export declare interface UiConfig {
|
|
|
4189
4234
|
* @memberof UiConfig
|
|
4190
4235
|
*/
|
|
4191
4236
|
legalNoticeUrl?: string;
|
|
4237
|
+
/**
|
|
4238
|
+
* ICP Footer Link Text
|
|
4239
|
+
* @type {string}
|
|
4240
|
+
* @memberof UiConfig
|
|
4241
|
+
*/
|
|
4242
|
+
icpFooterLinkText?: string;
|
|
4243
|
+
/**
|
|
4244
|
+
* ICP Footer Link URL
|
|
4245
|
+
* @type {string}
|
|
4246
|
+
* @memberof UiConfig
|
|
4247
|
+
*/
|
|
4248
|
+
icpFooterLinkUrl?: string;
|
|
4192
4249
|
}
|
|
4193
4250
|
|
|
4194
4251
|
/**
|
|
@@ -4201,6 +4258,8 @@ export declare const UiConfigFeature: {
|
|
|
4201
4258
|
readonly EeBasicMarketing: "EE_BASIC_MARKETING";
|
|
4202
4259
|
readonly CatenaPolicies: "CATENA_POLICIES";
|
|
4203
4260
|
readonly SovityPolicies: "SOVITY_POLICIES";
|
|
4261
|
+
readonly SphinxPolicies: "SPHINX_POLICIES";
|
|
4262
|
+
readonly SphinxAssetMetadata: "SPHINX_ASSET_METADATA";
|
|
4204
4263
|
readonly BusinessPartnerGroupManagement: "BUSINESS_PARTNER_GROUP_MANAGEMENT";
|
|
4205
4264
|
};
|
|
4206
4265
|
|