@sovity.de/edc-client 14.0.0 → 14.1.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.
|
@@ -170,6 +170,157 @@ export declare function BuildInfoToJSON(json: any): BuildInfo;
|
|
|
170
170
|
|
|
171
171
|
export declare function BuildInfoToJSONTyped(value?: BuildInfo | null, ignoreDiscriminator?: boolean): any;
|
|
172
172
|
|
|
173
|
+
/**
|
|
174
|
+
* Business Partner Group Create Submit
|
|
175
|
+
* @export
|
|
176
|
+
* @interface BusinessPartnerGroupCreateSubmit
|
|
177
|
+
*/
|
|
178
|
+
export declare interface BusinessPartnerGroupCreateSubmit {
|
|
179
|
+
/**
|
|
180
|
+
* Business Partner Group ID
|
|
181
|
+
* @type {string}
|
|
182
|
+
* @memberof BusinessPartnerGroupCreateSubmit
|
|
183
|
+
*/
|
|
184
|
+
groupId: string;
|
|
185
|
+
/**
|
|
186
|
+
* List of BPNs in the created group
|
|
187
|
+
* @type {Array<string>}
|
|
188
|
+
* @memberof BusinessPartnerGroupCreateSubmit
|
|
189
|
+
*/
|
|
190
|
+
businessPartnerNumbers: Array<string>;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export declare function BusinessPartnerGroupCreateSubmitFromJSON(json: any): BusinessPartnerGroupCreateSubmit;
|
|
194
|
+
|
|
195
|
+
export declare function BusinessPartnerGroupCreateSubmitFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupCreateSubmit;
|
|
196
|
+
|
|
197
|
+
export declare interface BusinessPartnerGroupCreateSubmitRequest {
|
|
198
|
+
businessPartnerGroupCreateSubmit?: BusinessPartnerGroupCreateSubmit;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
export declare function BusinessPartnerGroupCreateSubmitToJSON(json: any): BusinessPartnerGroupCreateSubmit;
|
|
202
|
+
|
|
203
|
+
export declare function BusinessPartnerGroupCreateSubmitToJSONTyped(value?: BusinessPartnerGroupCreateSubmit | null, ignoreDiscriminator?: boolean): any;
|
|
204
|
+
|
|
205
|
+
/**
|
|
206
|
+
* Business Partner Group Edit Page
|
|
207
|
+
* @export
|
|
208
|
+
* @interface BusinessPartnerGroupEditPage
|
|
209
|
+
*/
|
|
210
|
+
export declare interface BusinessPartnerGroupEditPage {
|
|
211
|
+
/**
|
|
212
|
+
* Business Partner Group ID
|
|
213
|
+
* @type {string}
|
|
214
|
+
* @memberof BusinessPartnerGroupEditPage
|
|
215
|
+
*/
|
|
216
|
+
groupId: string;
|
|
217
|
+
/**
|
|
218
|
+
* List of BPNs in this group
|
|
219
|
+
* @type {Array<string>}
|
|
220
|
+
* @memberof BusinessPartnerGroupEditPage
|
|
221
|
+
*/
|
|
222
|
+
businessPartnerNumbers: Array<string>;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
export declare function BusinessPartnerGroupEditPageFromJSON(json: any): BusinessPartnerGroupEditPage;
|
|
226
|
+
|
|
227
|
+
export declare function BusinessPartnerGroupEditPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupEditPage;
|
|
228
|
+
|
|
229
|
+
export declare interface BusinessPartnerGroupEditPageRequest {
|
|
230
|
+
id: string;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export declare function BusinessPartnerGroupEditPageToJSON(json: any): BusinessPartnerGroupEditPage;
|
|
234
|
+
|
|
235
|
+
export declare function BusinessPartnerGroupEditPageToJSONTyped(value?: BusinessPartnerGroupEditPage | null, ignoreDiscriminator?: boolean): any;
|
|
236
|
+
|
|
237
|
+
/**
|
|
238
|
+
* Business Partner Group Edit Submit
|
|
239
|
+
* @export
|
|
240
|
+
* @interface BusinessPartnerGroupEditSubmit
|
|
241
|
+
*/
|
|
242
|
+
export declare interface BusinessPartnerGroupEditSubmit {
|
|
243
|
+
/**
|
|
244
|
+
* List of BPNs in the edited group
|
|
245
|
+
* @type {Array<string>}
|
|
246
|
+
* @memberof BusinessPartnerGroupEditSubmit
|
|
247
|
+
*/
|
|
248
|
+
businessPartnerNumbers: Array<string>;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
export declare function BusinessPartnerGroupEditSubmitFromJSON(json: any): BusinessPartnerGroupEditSubmit;
|
|
252
|
+
|
|
253
|
+
export declare function BusinessPartnerGroupEditSubmitFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupEditSubmit;
|
|
254
|
+
|
|
255
|
+
export declare interface BusinessPartnerGroupEditSubmitRequest {
|
|
256
|
+
id: string;
|
|
257
|
+
businessPartnerGroupEditSubmit?: BusinessPartnerGroupEditSubmit;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
export declare function BusinessPartnerGroupEditSubmitToJSON(json: any): BusinessPartnerGroupEditSubmit;
|
|
261
|
+
|
|
262
|
+
export declare function BusinessPartnerGroupEditSubmitToJSONTyped(value?: BusinessPartnerGroupEditSubmit | null, ignoreDiscriminator?: boolean): any;
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Business Partner Group List Page Entry
|
|
266
|
+
* @export
|
|
267
|
+
* @interface BusinessPartnerGroupListPageEntry
|
|
268
|
+
*/
|
|
269
|
+
export declare interface BusinessPartnerGroupListPageEntry {
|
|
270
|
+
/**
|
|
271
|
+
* Business Partner Group Id
|
|
272
|
+
* @type {string}
|
|
273
|
+
* @memberof BusinessPartnerGroupListPageEntry
|
|
274
|
+
*/
|
|
275
|
+
groupId: string;
|
|
276
|
+
/**
|
|
277
|
+
* List of BPNs in this group
|
|
278
|
+
* @type {Array<string>}
|
|
279
|
+
* @memberof BusinessPartnerGroupListPageEntry
|
|
280
|
+
*/
|
|
281
|
+
businessPartnerNumbers: Array<string>;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
export declare function BusinessPartnerGroupListPageEntryFromJSON(json: any): BusinessPartnerGroupListPageEntry;
|
|
285
|
+
|
|
286
|
+
export declare function BusinessPartnerGroupListPageEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupListPageEntry;
|
|
287
|
+
|
|
288
|
+
export declare function BusinessPartnerGroupListPageEntryToJSON(json: any): BusinessPartnerGroupListPageEntry;
|
|
289
|
+
|
|
290
|
+
export declare function BusinessPartnerGroupListPageEntryToJSONTyped(value?: BusinessPartnerGroupListPageEntry | null, ignoreDiscriminator?: boolean): any;
|
|
291
|
+
|
|
292
|
+
export declare interface BusinessPartnerGroupListPageRequest {
|
|
293
|
+
businessPartnerGroupQuery?: BusinessPartnerGroupQuery;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* Query for filtering Business Partner Groups
|
|
298
|
+
* @export
|
|
299
|
+
* @interface BusinessPartnerGroupQuery
|
|
300
|
+
*/
|
|
301
|
+
export declare interface BusinessPartnerGroupQuery {
|
|
302
|
+
/**
|
|
303
|
+
* Search Query String
|
|
304
|
+
* @type {string}
|
|
305
|
+
* @memberof BusinessPartnerGroupQuery
|
|
306
|
+
*/
|
|
307
|
+
searchQuery?: string;
|
|
308
|
+
/**
|
|
309
|
+
* Number of items to display
|
|
310
|
+
* @type {number}
|
|
311
|
+
* @memberof BusinessPartnerGroupQuery
|
|
312
|
+
*/
|
|
313
|
+
limit?: number;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
export declare function BusinessPartnerGroupQueryFromJSON(json: any): BusinessPartnerGroupQuery;
|
|
317
|
+
|
|
318
|
+
export declare function BusinessPartnerGroupQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): BusinessPartnerGroupQuery;
|
|
319
|
+
|
|
320
|
+
export declare function BusinessPartnerGroupQueryToJSON(json: any): BusinessPartnerGroupQuery;
|
|
321
|
+
|
|
322
|
+
export declare function BusinessPartnerGroupQueryToJSONTyped(value?: BusinessPartnerGroupQuery | null, ignoreDiscriminator?: boolean): any;
|
|
323
|
+
|
|
173
324
|
/**
|
|
174
325
|
* Callback address to be called after a transfer or negotiation success/failure
|
|
175
326
|
* @export
|
|
@@ -1477,6 +1628,10 @@ export declare interface DeleteAssetRequest {
|
|
|
1477
1628
|
assetId: string;
|
|
1478
1629
|
}
|
|
1479
1630
|
|
|
1631
|
+
export declare interface DeleteBusinessPartnerGroupRequest {
|
|
1632
|
+
id: string;
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1480
1635
|
export declare interface DeleteContractDefinitionRequest {
|
|
1481
1636
|
contractDefinitionId: string;
|
|
1482
1637
|
}
|
|
@@ -1842,6 +1997,31 @@ export declare function instanceOfAssetPage(value: any): value is AssetPage;
|
|
|
1842
1997
|
*/
|
|
1843
1998
|
export declare function instanceOfBuildInfo(value: any): value is BuildInfo;
|
|
1844
1999
|
|
|
2000
|
+
/**
|
|
2001
|
+
* Check if a given object implements the BusinessPartnerGroupCreateSubmit interface.
|
|
2002
|
+
*/
|
|
2003
|
+
export declare function instanceOfBusinessPartnerGroupCreateSubmit(value: any): value is BusinessPartnerGroupCreateSubmit;
|
|
2004
|
+
|
|
2005
|
+
/**
|
|
2006
|
+
* Check if a given object implements the BusinessPartnerGroupEditPage interface.
|
|
2007
|
+
*/
|
|
2008
|
+
export declare function instanceOfBusinessPartnerGroupEditPage(value: any): value is BusinessPartnerGroupEditPage;
|
|
2009
|
+
|
|
2010
|
+
/**
|
|
2011
|
+
* Check if a given object implements the BusinessPartnerGroupEditSubmit interface.
|
|
2012
|
+
*/
|
|
2013
|
+
export declare function instanceOfBusinessPartnerGroupEditSubmit(value: any): value is BusinessPartnerGroupEditSubmit;
|
|
2014
|
+
|
|
2015
|
+
/**
|
|
2016
|
+
* Check if a given object implements the BusinessPartnerGroupListPageEntry interface.
|
|
2017
|
+
*/
|
|
2018
|
+
export declare function instanceOfBusinessPartnerGroupListPageEntry(value: any): value is BusinessPartnerGroupListPageEntry;
|
|
2019
|
+
|
|
2020
|
+
/**
|
|
2021
|
+
* Check if a given object implements the BusinessPartnerGroupQuery interface.
|
|
2022
|
+
*/
|
|
2023
|
+
export declare function instanceOfBusinessPartnerGroupQuery(value: any): value is BusinessPartnerGroupQuery;
|
|
2024
|
+
|
|
1845
2025
|
/**
|
|
1846
2026
|
* Check if a given object implements the CallbackAddressDto interface.
|
|
1847
2027
|
*/
|
|
@@ -2930,6 +3110,38 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2930
3110
|
* Get the build version info
|
|
2931
3111
|
*/
|
|
2932
3112
|
buildInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuildInfo>;
|
|
3113
|
+
/**
|
|
3114
|
+
* Create a new Business Partner Group
|
|
3115
|
+
*/
|
|
3116
|
+
businessPartnerGroupCreateSubmitRaw(requestParameters: BusinessPartnerGroupCreateSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
3117
|
+
/**
|
|
3118
|
+
* Create a new Business Partner Group
|
|
3119
|
+
*/
|
|
3120
|
+
businessPartnerGroupCreateSubmit(requestParameters?: BusinessPartnerGroupCreateSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3121
|
+
/**
|
|
3122
|
+
* Collect all data for the Business Partner Group Edit Page
|
|
3123
|
+
*/
|
|
3124
|
+
businessPartnerGroupEditPageRaw(requestParameters: BusinessPartnerGroupEditPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BusinessPartnerGroupEditPage>>;
|
|
3125
|
+
/**
|
|
3126
|
+
* Collect all data for the Business Partner Group Edit Page
|
|
3127
|
+
*/
|
|
3128
|
+
businessPartnerGroupEditPage(requestParameters: BusinessPartnerGroupEditPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BusinessPartnerGroupEditPage>;
|
|
3129
|
+
/**
|
|
3130
|
+
* Edit a Business Partner Group
|
|
3131
|
+
*/
|
|
3132
|
+
businessPartnerGroupEditSubmitRaw(requestParameters: BusinessPartnerGroupEditSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
3133
|
+
/**
|
|
3134
|
+
* Edit a Business Partner Group
|
|
3135
|
+
*/
|
|
3136
|
+
businessPartnerGroupEditSubmit(requestParameters: BusinessPartnerGroupEditSubmitRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3137
|
+
/**
|
|
3138
|
+
* Collect all data for the Business Partner Groups List Page
|
|
3139
|
+
*/
|
|
3140
|
+
businessPartnerGroupListPageRaw(requestParameters: BusinessPartnerGroupListPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<BusinessPartnerGroupListPageEntry>>>;
|
|
3141
|
+
/**
|
|
3142
|
+
* Collect all data for the Business Partner Groups List Page
|
|
3143
|
+
*/
|
|
3144
|
+
businessPartnerGroupListPage(requestParameters?: BusinessPartnerGroupListPageRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<BusinessPartnerGroupListPageEntry>>;
|
|
2933
3145
|
/**
|
|
2934
3146
|
* Create a new Asset
|
|
2935
3147
|
*/
|
|
@@ -2990,6 +3202,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2990
3202
|
* Delete an Asset
|
|
2991
3203
|
*/
|
|
2992
3204
|
deleteAsset(requestParameters: DeleteAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
3205
|
+
/**
|
|
3206
|
+
* Delete a Business Partner Group
|
|
3207
|
+
*/
|
|
3208
|
+
deleteBusinessPartnerGroupRaw(requestParameters: DeleteBusinessPartnerGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
3209
|
+
/**
|
|
3210
|
+
* Delete a Business Partner Group
|
|
3211
|
+
*/
|
|
3212
|
+
deleteBusinessPartnerGroup(requestParameters: DeleteBusinessPartnerGroupRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2993
3213
|
/**
|
|
2994
3214
|
* Delete a Contract Definition
|
|
2995
3215
|
*/
|
|
@@ -3818,6 +4038,7 @@ export declare const UiConfigFeature: {
|
|
|
3818
4038
|
readonly EeBasicMarketing: "EE_BASIC_MARKETING";
|
|
3819
4039
|
readonly CatenaPolicies: "CATENA_POLICIES";
|
|
3820
4040
|
readonly SovityPolicies: "SOVITY_POLICIES";
|
|
4041
|
+
readonly BusinessPartnerGroupManagement: "BUSINESS_PARTNER_GROUP_MANAGEMENT";
|
|
3821
4042
|
};
|
|
3822
4043
|
|
|
3823
4044
|
export declare type UiConfigFeature = (typeof UiConfigFeature)[keyof typeof UiConfigFeature];
|