@sovity.de/edc-client 3.1.0 → 3.3.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.
Files changed (32) hide show
  1. package/README.md +2 -2
  2. package/dist/EdcClient.d.ts +3 -6
  3. package/dist/generated/apis/BrokerServerApi.d.ts +40 -0
  4. package/dist/generated/apis/EnterpriseEditionApi.d.ts +27 -1
  5. package/dist/generated/apis/UIApi.d.ts +7 -1
  6. package/dist/generated/apis/index.d.ts +1 -0
  7. package/dist/generated/models/CatalogPageQuery.d.ts +48 -0
  8. package/dist/generated/models/CatalogPageResult.d.ts +42 -0
  9. package/dist/generated/models/CatalogPageSortingItem.d.ts +35 -0
  10. package/dist/generated/models/CnfFilter.d.ts +21 -0
  11. package/dist/generated/models/CnfFilterAttribute.d.ts +33 -0
  12. package/dist/generated/models/CnfFilterItem.d.ts +26 -0
  13. package/dist/generated/models/CnfFilterValue.d.ts +21 -0
  14. package/dist/generated/models/CnfFilterValueAttribute.d.ts +26 -0
  15. package/dist/generated/models/ConnectorListEntry.d.ts +64 -0
  16. package/dist/generated/models/ConnectorPageQuery.d.ts +40 -0
  17. package/dist/generated/models/ConnectorPageResult.d.ts +35 -0
  18. package/dist/generated/models/ConnectorPageSortingItem.d.ts +34 -0
  19. package/dist/generated/models/ContractAgreementCard.d.ts +6 -0
  20. package/dist/generated/models/DataOfferListEntry.d.ts +73 -0
  21. package/dist/generated/models/DataOfferListEntryContractOffer.d.ts +39 -0
  22. package/dist/generated/models/PaginationMetadata.d.ts +38 -0
  23. package/dist/generated/models/PolicyDto.d.ts +1 -1
  24. package/dist/generated/models/StoredFile.d.ts +64 -0
  25. package/dist/generated/models/TransferHistoryEntry.d.ts +83 -0
  26. package/dist/generated/models/TransferHistoryPage.d.ts +21 -0
  27. package/dist/generated/models/index.d.ts +18 -0
  28. package/dist/sovity-edc-client.js +924 -195
  29. package/dist/sovity-edc-client.js.map +1 -1
  30. package/dist/sovity-edc-client.umd.cjs +1 -1
  31. package/dist/sovity-edc-client.umd.cjs.map +1 -1
  32. package/package.json +1 -1
@@ -1,8 +1,8 @@
1
- var w = Object.defineProperty;
2
- var A = (t, e, r) => e in t ? w(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
3
- var s = (t, e, r) => (A(t, typeof e != "symbol" ? e + "" : e, r), r);
4
- const C = "http://localhost".replace(/\/+$/, "");
5
- class g {
1
+ var D = Object.defineProperty;
2
+ var F = (t, e, r) => e in t ? D(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
3
+ var d = (t, e, r) => (F(t, typeof e != "symbol" ? e + "" : e, r), r);
4
+ const N = "http://localhost".replace(/\/+$/, "");
5
+ class S {
6
6
  constructor(e = {}) {
7
7
  this.configuration = e;
8
8
  }
@@ -10,7 +10,7 @@ class g {
10
10
  this.configuration = e;
11
11
  }
12
12
  get basePath() {
13
- return this.configuration.basePath != null ? this.configuration.basePath : C;
13
+ return this.configuration.basePath != null ? this.configuration.basePath : N;
14
14
  }
15
15
  get fetchApi() {
16
16
  return this.configuration.fetchApi;
@@ -19,7 +19,7 @@ class g {
19
19
  return this.configuration.middleware || [];
20
20
  }
21
21
  get queryParamsStringify() {
22
- return this.configuration.queryParamsStringify || l;
22
+ return this.configuration.queryParamsStringify || O;
23
23
  }
24
24
  get username() {
25
25
  return this.configuration.username;
@@ -44,10 +44,10 @@ class g {
44
44
  return this.configuration.credentials;
45
45
  }
46
46
  }
47
- const P = new g(), f = class {
48
- constructor(e = P) {
49
- s(this, "middleware");
50
- s(this, "fetchApi", async (e, r) => {
47
+ const E = new S(), l = class {
48
+ constructor(e = E) {
49
+ d(this, "middleware");
50
+ d(this, "fetchApi", async (e, r) => {
51
51
  let n = { url: e, init: r };
52
52
  for (const o of this.middleware)
53
53
  o.pre && (n = await o.pre({
@@ -61,8 +61,8 @@ const P = new g(), f = class {
61
61
  n.init
62
62
  );
63
63
  } catch (o) {
64
- for (const u of this.middleware)
65
- u.onError && (i = await u.onError({
64
+ for (const s of this.middleware)
65
+ s.onError && (i = await s.onError({
66
66
  fetch: this.fetchApi,
67
67
  url: n.url,
68
68
  init: n.init,
@@ -70,7 +70,7 @@ const P = new g(), f = class {
70
70
  response: i ? i.clone() : void 0
71
71
  }) || i);
72
72
  if (i === void 0)
73
- throw o instanceof Error ? new T(
73
+ throw o instanceof Error ? new M(
74
74
  o,
75
75
  "The request failed and the interceptors did not return an alternative response"
76
76
  ) : o;
@@ -109,7 +109,7 @@ const P = new g(), f = class {
109
109
  * @return True if the given MIME is JSON, false otherwise.
110
110
  */
111
111
  isJsonMime(e) {
112
- return e ? f.jsonRegex.test(e) : !1;
112
+ return e ? l.jsonRegex.test(e) : !1;
113
113
  }
114
114
  async request(e, r) {
115
115
  const { url: n, init: i } = await this.createFetchParams(
@@ -118,7 +118,7 @@ const P = new g(), f = class {
118
118
  ), o = await this.fetchApi(n, i);
119
119
  if (o && o.status >= 200 && o.status < 300)
120
120
  return o;
121
- throw new O(o, "Response returned an error code");
121
+ throw new b(o, "Response returned an error code");
122
122
  }
123
123
  async createFetchParams(e, r) {
124
124
  let n = this.configuration.basePath + e.path;
@@ -129,24 +129,24 @@ const P = new g(), f = class {
129
129
  e.headers
130
130
  );
131
131
  Object.keys(i).forEach(
132
- (m) => i[m] === void 0 ? delete i[m] : {}
132
+ (g) => i[g] === void 0 ? delete i[g] : {}
133
133
  );
134
- const o = typeof r == "function" ? r : async () => r, u = {
134
+ const o = typeof r == "function" ? r : async () => r, s = {
135
135
  method: e.method,
136
136
  headers: i,
137
137
  body: e.body,
138
138
  credentials: this.configuration.credentials
139
- }, c = {
140
- ...u,
139
+ }, f = {
140
+ ...s,
141
141
  ...await o({
142
- init: u,
142
+ init: s,
143
143
  context: e
144
144
  })
145
- }, y = {
146
- ...c,
147
- body: D(c.body) || c.body instanceof URLSearchParams || S(c.body) ? c.body : JSON.stringify(c.body)
145
+ }, T = {
146
+ ...f,
147
+ body: J(f.body) || f.body instanceof URLSearchParams || R(f.body) ? f.body : JSON.stringify(f.body)
148
148
  };
149
- return { url: n, init: y };
149
+ return { url: n, init: T };
150
150
  }
151
151
  /**
152
152
  * Create a shallow clone of `this` by constructing a new instance
@@ -157,52 +157,52 @@ const P = new g(), f = class {
157
157
  return r.middleware = this.middleware.slice(), r;
158
158
  }
159
159
  };
160
- let a = f;
161
- s(a, "jsonRegex", new RegExp(
160
+ let u = l;
161
+ d(u, "jsonRegex", new RegExp(
162
162
  "^(:?application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(:?;.*)?$",
163
163
  "i"
164
164
  ));
165
- function S(t) {
165
+ function R(t) {
166
166
  return typeof Blob < "u" && t instanceof Blob;
167
167
  }
168
- function D(t) {
168
+ function J(t) {
169
169
  return typeof FormData < "u" && t instanceof FormData;
170
170
  }
171
- class O extends Error {
171
+ class b extends Error {
172
172
  constructor(r, n) {
173
173
  super(n);
174
- s(this, "name", "ResponseError");
174
+ d(this, "name", "ResponseError");
175
175
  this.response = r;
176
176
  }
177
177
  }
178
- class T extends Error {
178
+ class M extends Error {
179
179
  constructor(r, n) {
180
180
  super(n);
181
- s(this, "name", "FetchError");
181
+ d(this, "name", "FetchError");
182
182
  this.cause = r;
183
183
  }
184
184
  }
185
- class tt extends Error {
185
+ class p extends Error {
186
186
  constructor(r, n) {
187
187
  super(n);
188
- s(this, "name", "RequiredError");
188
+ d(this, "name", "RequiredError");
189
189
  this.field = r;
190
190
  }
191
191
  }
192
- const et = {
192
+ const Yt = {
193
193
  csv: ",",
194
194
  ssv: " ",
195
195
  tsv: " ",
196
196
  pipes: "|"
197
197
  };
198
- function p(t, e) {
198
+ function a(t, e) {
199
199
  const r = t[e];
200
200
  return r != null;
201
201
  }
202
- function l(t, e = "") {
203
- return Object.keys(t).map((r) => h(r, t[r], e)).filter((r) => r.length > 0).join("&");
202
+ function O(t, e = "") {
203
+ return Object.keys(t).map((r) => y(r, t[r], e)).filter((r) => r.length > 0).join("&");
204
204
  }
205
- function h(t, e, r = "") {
205
+ function y(t, e, r = "") {
206
206
  const n = r + (r.length ? `[${t}]` : t);
207
207
  if (e instanceof Array) {
208
208
  const i = e.map((o) => encodeURIComponent(String(o))).join(`&${encodeURIComponent(n)}=`);
@@ -210,27 +210,27 @@ function h(t, e, r = "") {
210
210
  }
211
211
  if (e instanceof Set) {
212
212
  const i = Array.from(e);
213
- return h(t, i, r);
213
+ return y(t, i, r);
214
214
  }
215
215
  return e instanceof Date ? `${encodeURIComponent(n)}=${encodeURIComponent(
216
216
  e.toISOString()
217
- )}` : e instanceof Object ? l(e, n) : `${encodeURIComponent(n)}=${encodeURIComponent(
217
+ )}` : e instanceof Object ? O(e, n) : `${encodeURIComponent(n)}=${encodeURIComponent(
218
218
  String(e)
219
219
  )}`;
220
220
  }
221
- function rt(t, e) {
221
+ function Zt(t, e) {
222
222
  return Object.keys(t).reduce(
223
223
  (r, n) => ({ ...r, [n]: e(t[n]) }),
224
224
  {}
225
225
  );
226
226
  }
227
- function nt(t) {
227
+ function vt(t) {
228
228
  for (const e of t)
229
229
  if (e.contentType === "multipart/form-data")
230
230
  return !0;
231
231
  return !1;
232
232
  }
233
- class d {
233
+ class c {
234
234
  constructor(e, r = (n) => n) {
235
235
  this.raw = e, this.transformer = r;
236
236
  }
@@ -238,14 +238,14 @@ class d {
238
238
  return this.transformer(await this.raw.json());
239
239
  }
240
240
  }
241
- class it {
241
+ class jt {
242
242
  constructor(e) {
243
243
  this.raw = e;
244
244
  }
245
245
  async value() {
246
246
  }
247
247
  }
248
- class ot {
248
+ class te {
249
249
  constructor(e) {
250
250
  this.raw = e;
251
251
  }
@@ -253,7 +253,7 @@ class ot {
253
253
  return await this.raw.blob();
254
254
  }
255
255
  }
256
- class st {
256
+ class ee {
257
257
  constructor(e) {
258
258
  this.raw = e;
259
259
  }
@@ -261,21 +261,21 @@ class st {
261
261
  return await this.raw.text();
262
262
  }
263
263
  }
264
- function ct(t) {
264
+ function re(t) {
265
265
  let e = !0;
266
266
  return e = e && "assetId" in t, e = e && "createdAt" in t, e = e && "properties" in t, e;
267
267
  }
268
- function I(t) {
269
- return E(t);
268
+ function q(t) {
269
+ return L(t);
270
270
  }
271
- function E(t, e) {
271
+ function L(t, e) {
272
272
  return t == null ? t : {
273
273
  assetId: t.assetId,
274
274
  createdAt: new Date(t.createdAt),
275
275
  properties: t.properties
276
276
  };
277
277
  }
278
- function R(t) {
278
+ function U(t) {
279
279
  if (t !== void 0)
280
280
  return t === null ? null : {
281
281
  assetId: t.assetId,
@@ -283,49 +283,458 @@ function R(t) {
283
283
  properties: t.properties
284
284
  };
285
285
  }
286
+ function ne(t) {
287
+ let e = !0;
288
+ return e = e && "id" in t, e = e && "selectedIds" in t, e;
289
+ }
290
+ function B(t) {
291
+ return V(t);
292
+ }
293
+ function V(t, e) {
294
+ return t == null ? t : {
295
+ id: t.id,
296
+ selectedIds: t.selectedIds
297
+ };
298
+ }
299
+ function Q(t) {
300
+ if (t !== void 0)
301
+ return t === null ? null : {
302
+ id: t.id,
303
+ selectedIds: t.selectedIds
304
+ };
305
+ }
306
+ function ie(t) {
307
+ let e = !0;
308
+ return e = e && "selectedAttributeValues" in t, e;
309
+ }
310
+ function x(t) {
311
+ return G(t);
312
+ }
313
+ function G(t, e) {
314
+ return t == null ? t : {
315
+ selectedAttributeValues: t.selectedAttributeValues.map(B)
316
+ };
317
+ }
318
+ function H(t) {
319
+ if (t !== void 0)
320
+ return t === null ? null : {
321
+ selectedAttributeValues: t.selectedAttributeValues.map(Q)
322
+ };
323
+ }
324
+ const oe = {
325
+ MostRecent: "MOST_RECENT",
326
+ Title: "TITLE",
327
+ Originator: "ORIGINATOR"
328
+ };
329
+ function ae(t) {
330
+ return !0;
331
+ }
332
+ function se(t) {
333
+ return K(t);
334
+ }
335
+ function K(t, e) {
336
+ return t == null ? t : {
337
+ filter: a(t, "filter") ? x(t.filter) : void 0,
338
+ searchQuery: a(t, "searchQuery") ? t.searchQuery : void 0,
339
+ sorting: a(t, "sorting") ? t.sorting : void 0,
340
+ pageOneBased: a(t, "pageOneBased") ? t.pageOneBased : void 0
341
+ };
342
+ }
343
+ function $(t) {
344
+ if (t !== void 0)
345
+ return t === null ? null : {
346
+ filter: H(t.filter),
347
+ searchQuery: t.searchQuery,
348
+ sorting: t.sorting,
349
+ pageOneBased: t.pageOneBased
350
+ };
351
+ }
352
+ const ce = {
353
+ MostRecent: "MOST_RECENT",
354
+ Title: "TITLE",
355
+ Originator: "ORIGINATOR"
356
+ };
357
+ function de(t) {
358
+ let e = !0;
359
+ return e = e && "sorting" in t, e = e && "title" in t, e;
360
+ }
361
+ function k(t) {
362
+ return z(t);
363
+ }
364
+ function z(t, e) {
365
+ return t == null ? t : {
366
+ sorting: t.sorting,
367
+ title: t.title
368
+ };
369
+ }
370
+ function _(t) {
371
+ if (t !== void 0)
372
+ return t === null ? null : {
373
+ sorting: t.sorting,
374
+ title: t.title
375
+ };
376
+ }
377
+ function ue(t) {
378
+ let e = !0;
379
+ return e = e && "id" in t, e = e && "title" in t, e;
380
+ }
381
+ function W(t) {
382
+ return X(t);
383
+ }
384
+ function X(t, e) {
385
+ return t == null ? t : {
386
+ id: t.id,
387
+ title: t.title
388
+ };
389
+ }
390
+ function Y(t) {
391
+ if (t !== void 0)
392
+ return t === null ? null : {
393
+ id: t.id,
394
+ title: t.title
395
+ };
396
+ }
397
+ function fe(t) {
398
+ let e = !0;
399
+ return e = e && "id" in t, e = e && "title" in t, e = e && "values" in t, e;
400
+ }
401
+ function Z(t) {
402
+ return v(t);
403
+ }
404
+ function v(t, e) {
405
+ return t == null ? t : {
406
+ id: t.id,
407
+ title: t.title,
408
+ values: t.values.map(W)
409
+ };
410
+ }
411
+ function j(t) {
412
+ if (t !== void 0)
413
+ return t === null ? null : {
414
+ id: t.id,
415
+ title: t.title,
416
+ values: t.values.map(Y)
417
+ };
418
+ }
419
+ function le(t) {
420
+ let e = !0;
421
+ return e = e && "fields" in t, e;
422
+ }
423
+ function tt(t) {
424
+ return et(t);
425
+ }
426
+ function et(t, e) {
427
+ return t == null ? t : {
428
+ fields: t.fields.map(Z)
429
+ };
430
+ }
431
+ function rt(t) {
432
+ if (t !== void 0)
433
+ return t === null ? null : {
434
+ fields: t.fields.map(j)
435
+ };
436
+ }
437
+ function ge(t) {
438
+ let e = !0;
439
+ return e = e && "legacyPolicy" in t, e;
440
+ }
441
+ function h(t) {
442
+ return nt(t);
443
+ }
444
+ function nt(t, e) {
445
+ return t == null ? t : {
446
+ legacyPolicy: t.legacyPolicy
447
+ };
448
+ }
449
+ function A(t) {
450
+ if (t !== void 0)
451
+ return t === null ? null : {
452
+ legacyPolicy: t.legacyPolicy
453
+ };
454
+ }
455
+ function pe(t) {
456
+ let e = !0;
457
+ return e = e && "contractOfferId" in t, e = e && "createdAt" in t, e = e && "updatedAt" in t, e = e && "contractPolicy" in t, e;
458
+ }
459
+ function it(t) {
460
+ return ot(t);
461
+ }
462
+ function ot(t, e) {
463
+ return t == null ? t : {
464
+ contractOfferId: t.contractOfferId,
465
+ createdAt: new Date(t.createdAt),
466
+ updatedAt: new Date(t.updatedAt),
467
+ contractPolicy: h(t.contractPolicy)
468
+ };
469
+ }
286
470
  function at(t) {
471
+ if (t !== void 0)
472
+ return t === null ? null : {
473
+ contractOfferId: t.contractOfferId,
474
+ createdAt: t.createdAt.toISOString(),
475
+ updatedAt: t.updatedAt.toISOString(),
476
+ contractPolicy: A(t.contractPolicy)
477
+ };
478
+ }
479
+ const me = {
480
+ Online: "ONLINE",
481
+ Offline: "OFFLINE"
482
+ };
483
+ function Se(t) {
484
+ let e = !0;
485
+ return e = e && "assetId" in t, e = e && "connectorEndpoint" in t, e = e && "connectorOnlineStatus" in t, e = e && "createdAt" in t, e = e && "updatedAt" in t, e = e && "properties" in t, e = e && "contractOffers" in t, e;
486
+ }
487
+ function st(t) {
488
+ return ct(t);
489
+ }
490
+ function ct(t, e) {
491
+ return t == null ? t : {
492
+ assetId: t.assetId,
493
+ connectorEndpoint: t.connectorEndpoint,
494
+ connectorOnlineStatus: t.connectorOnlineStatus,
495
+ connectorOfflineSinceOrLastUpdatedAt: a(
496
+ t,
497
+ "connectorOfflineSinceOrLastUpdatedAt"
498
+ ) ? new Date(t.connectorOfflineSinceOrLastUpdatedAt) : void 0,
499
+ createdAt: new Date(t.createdAt),
500
+ updatedAt: new Date(t.updatedAt),
501
+ properties: t.properties,
502
+ contractOffers: t.contractOffers.map(
503
+ it
504
+ )
505
+ };
506
+ }
507
+ function dt(t) {
508
+ if (t !== void 0)
509
+ return t === null ? null : {
510
+ assetId: t.assetId,
511
+ connectorEndpoint: t.connectorEndpoint,
512
+ connectorOnlineStatus: t.connectorOnlineStatus,
513
+ connectorOfflineSinceOrLastUpdatedAt: t.connectorOfflineSinceOrLastUpdatedAt === void 0 ? void 0 : t.connectorOfflineSinceOrLastUpdatedAt.toISOString(),
514
+ createdAt: t.createdAt.toISOString(),
515
+ updatedAt: t.updatedAt.toISOString(),
516
+ properties: t.properties,
517
+ contractOffers: t.contractOffers.map(
518
+ at
519
+ )
520
+ };
521
+ }
522
+ function Oe(t) {
523
+ let e = !0;
524
+ return e = e && "numTotal" in t, e = e && "numVisible" in t, e = e && "pageOneBased" in t, e = e && "pageSize" in t, e;
525
+ }
526
+ function C(t) {
527
+ return ut(t);
528
+ }
529
+ function ut(t, e) {
530
+ return t == null ? t : {
531
+ numTotal: t.numTotal,
532
+ numVisible: t.numVisible,
533
+ pageOneBased: t.pageOneBased,
534
+ pageSize: t.pageSize
535
+ };
536
+ }
537
+ function P(t) {
538
+ if (t !== void 0)
539
+ return t === null ? null : {
540
+ numTotal: t.numTotal,
541
+ numVisible: t.numVisible,
542
+ pageOneBased: t.pageOneBased,
543
+ pageSize: t.pageSize
544
+ };
545
+ }
546
+ function ye(t) {
547
+ let e = !0;
548
+ return e = e && "availableFilters" in t, e = e && "availableSortings" in t, e = e && "paginationMetadata" in t, e = e && "dataOffers" in t, e;
549
+ }
550
+ function ft(t) {
551
+ return lt(t);
552
+ }
553
+ function lt(t, e) {
554
+ return t == null ? t : {
555
+ availableFilters: tt(t.availableFilters),
556
+ availableSortings: t.availableSortings.map(
557
+ k
558
+ ),
559
+ paginationMetadata: C(
560
+ t.paginationMetadata
561
+ ),
562
+ dataOffers: t.dataOffers.map(
563
+ st
564
+ )
565
+ };
566
+ }
567
+ function he(t) {
568
+ if (t !== void 0)
569
+ return t === null ? null : {
570
+ availableFilters: rt(t.availableFilters),
571
+ availableSortings: t.availableSortings.map(
572
+ _
573
+ ),
574
+ paginationMetadata: P(t.paginationMetadata),
575
+ dataOffers: t.dataOffers.map(
576
+ dt
577
+ )
578
+ };
579
+ }
580
+ function Ae(t) {
287
581
  let e = !0;
288
582
  return e = e && "numActiveConsumingContractAgreements" in t, e;
289
583
  }
290
- function N(t) {
291
- return F(t);
584
+ function gt(t) {
585
+ return pt(t);
292
586
  }
293
- function F(t, e) {
587
+ function pt(t, e) {
294
588
  return t == null ? t : {
295
589
  numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
296
- maxActiveConsumingContractAgreements: p(
590
+ maxActiveConsumingContractAgreements: a(
297
591
  t,
298
592
  "maxActiveConsumingContractAgreements"
299
593
  ) ? t.maxActiveConsumingContractAgreements : void 0
300
594
  };
301
595
  }
302
- function ut(t) {
596
+ function Ce(t) {
303
597
  if (t !== void 0)
304
598
  return t === null ? null : {
305
599
  numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
306
600
  maxActiveConsumingContractAgreements: t.maxActiveConsumingContractAgreements
307
601
  };
308
602
  }
309
- const dt = {
603
+ const Pe = {
604
+ Online: "ONLINE",
605
+ Offline: "OFFLINE"
606
+ };
607
+ function Ie(t) {
608
+ let e = !0;
609
+ return e = e && "id" in t, e = e && "endpoint" in t, e = e && "createdAt" in t, e = e && "onlineStatus" in t, e;
610
+ }
611
+ function mt(t) {
612
+ return St(t);
613
+ }
614
+ function St(t, e) {
615
+ return t == null ? t : {
616
+ id: t.id,
617
+ endpoint: t.endpoint,
618
+ createdAt: new Date(t.createdAt),
619
+ lastSuccessfulRefreshAt: a(t, "lastSuccessfulRefreshAt") ? new Date(t.lastSuccessfulRefreshAt) : void 0,
620
+ lastRefreshAttemptAt: a(t, "lastRefreshAttemptAt") ? new Date(t.lastRefreshAttemptAt) : void 0,
621
+ onlineStatus: t.onlineStatus,
622
+ numContractOffers: a(t, "numContractOffers") ? t.numContractOffers : void 0
623
+ };
624
+ }
625
+ function Ot(t) {
626
+ if (t !== void 0)
627
+ return t === null ? null : {
628
+ id: t.id,
629
+ endpoint: t.endpoint,
630
+ createdAt: t.createdAt.toISOString(),
631
+ lastSuccessfulRefreshAt: t.lastSuccessfulRefreshAt === void 0 ? void 0 : t.lastSuccessfulRefreshAt.toISOString(),
632
+ lastRefreshAttemptAt: t.lastRefreshAttemptAt === void 0 ? void 0 : t.lastRefreshAttemptAt.toISOString(),
633
+ onlineStatus: t.onlineStatus,
634
+ numContractOffers: t.numContractOffers
635
+ };
636
+ }
637
+ const we = {
638
+ MostRecent: "MOST_RECENT",
639
+ Title: "TITLE"
640
+ };
641
+ function Te(t) {
642
+ return !0;
643
+ }
644
+ function De(t) {
645
+ return yt(t);
646
+ }
647
+ function yt(t, e) {
648
+ return t == null ? t : {
649
+ searchQuery: a(t, "searchQuery") ? t.searchQuery : void 0,
650
+ sorting: a(t, "sorting") ? t.sorting : void 0,
651
+ pageOneBased: a(t, "pageOneBased") ? t.pageOneBased : void 0
652
+ };
653
+ }
654
+ function ht(t) {
655
+ if (t !== void 0)
656
+ return t === null ? null : {
657
+ searchQuery: t.searchQuery,
658
+ sorting: t.sorting,
659
+ pageOneBased: t.pageOneBased
660
+ };
661
+ }
662
+ const Fe = {
663
+ MostRecent: "MOST_RECENT",
664
+ Title: "TITLE"
665
+ };
666
+ function Ne(t) {
667
+ let e = !0;
668
+ return e = e && "sorting" in t, e = e && "title" in t, e;
669
+ }
670
+ function At(t) {
671
+ return Ct(t);
672
+ }
673
+ function Ct(t, e) {
674
+ return t == null ? t : {
675
+ sorting: t.sorting,
676
+ title: t.title
677
+ };
678
+ }
679
+ function Pt(t) {
680
+ if (t !== void 0)
681
+ return t === null ? null : {
682
+ sorting: t.sorting,
683
+ title: t.title
684
+ };
685
+ }
686
+ function Ee(t) {
687
+ let e = !0;
688
+ return e = e && "availableSortings" in t, e = e && "paginationMetadata" in t, e = e && "connectors" in t, e;
689
+ }
690
+ function It(t) {
691
+ return wt(t);
692
+ }
693
+ function wt(t, e) {
694
+ return t == null ? t : {
695
+ availableSortings: t.availableSortings.map(
696
+ At
697
+ ),
698
+ paginationMetadata: C(
699
+ t.paginationMetadata
700
+ ),
701
+ connectors: t.connectors.map(
702
+ mt
703
+ )
704
+ };
705
+ }
706
+ function Re(t) {
707
+ if (t !== void 0)
708
+ return t === null ? null : {
709
+ availableSortings: t.availableSortings.map(
710
+ Pt
711
+ ),
712
+ paginationMetadata: P(t.paginationMetadata),
713
+ connectors: t.connectors.map(
714
+ Ot
715
+ )
716
+ };
717
+ }
718
+ const Je = {
310
719
  Running: "RUNNING",
311
720
  Ok: "OK",
312
721
  Error: "ERROR"
313
722
  };
314
- function ft(t) {
723
+ function be(t) {
315
724
  let e = !0;
316
725
  return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
317
726
  }
318
- function J(t) {
319
- return b(t);
727
+ function I(t) {
728
+ return Tt(t);
320
729
  }
321
- function b(t, e) {
730
+ function Tt(t, e) {
322
731
  return t == null ? t : {
323
732
  name: t.name,
324
733
  code: t.code,
325
734
  simplifiedState: t.simplifiedState
326
735
  };
327
736
  }
328
- function q(t) {
737
+ function w(t) {
329
738
  if (t !== void 0)
330
739
  return t === null ? null : {
331
740
  name: t.name,
@@ -333,165 +742,309 @@ function q(t) {
333
742
  simplifiedState: t.simplifiedState
334
743
  };
335
744
  }
336
- function mt(t) {
745
+ function Me(t) {
337
746
  let e = !0;
338
747
  return e = e && "transferProcessId" in t, e = e && "lastUpdatedDate" in t, e = e && "state" in t, e;
339
748
  }
340
- function U(t) {
341
- return M(t);
749
+ function Dt(t) {
750
+ return Ft(t);
342
751
  }
343
- function M(t, e) {
752
+ function Ft(t, e) {
344
753
  return t == null ? t : {
345
754
  transferProcessId: t.transferProcessId,
346
755
  lastUpdatedDate: new Date(t.lastUpdatedDate),
347
- state: J(t.state),
348
- errorMessage: p(t, "errorMessage") ? t.errorMessage : void 0
756
+ state: I(t.state),
757
+ errorMessage: a(t, "errorMessage") ? t.errorMessage : void 0
349
758
  };
350
759
  }
351
- function x(t) {
760
+ function Nt(t) {
352
761
  if (t !== void 0)
353
762
  return t === null ? null : {
354
763
  transferProcessId: t.transferProcessId,
355
764
  lastUpdatedDate: t.lastUpdatedDate.toISOString(),
356
- state: q(t.state),
765
+ state: w(t.state),
357
766
  errorMessage: t.errorMessage
358
767
  };
359
768
  }
360
- function gt(t) {
361
- let e = !0;
362
- return e = e && "legacyPolicy" in t, e;
363
- }
364
- function K(t) {
365
- return L(t);
366
- }
367
- function L(t, e) {
368
- return t == null ? t : {
369
- legacyPolicy: t.legacyPolicy
370
- };
371
- }
372
- function $(t) {
373
- if (t !== void 0)
374
- return t === null ? null : {
375
- legacyPolicy: t.legacyPolicy
376
- };
377
- }
378
- const pt = {
769
+ const qe = {
379
770
  Consuming: "CONSUMING",
380
771
  Providing: "PROVIDING"
381
772
  };
382
- function lt(t) {
773
+ function Le(t) {
383
774
  let e = !0;
384
- return e = e && "contractAgreementId" in t, e = e && "direction" in t, e = e && "counterPartyAddress" in t, e = e && "counterPartyId" in t, e = e && "contractSigningDate" in t, e = e && "contractStartDate" in t, e = e && "contractEndDate" in t, e = e && "asset" in t, e = e && "contractPolicy" in t, e = e && "transferProcesses" in t, e;
775
+ return e = e && "contractAgreementId" in t, e = e && "contractNegotiationId" in t, e = e && "direction" in t, e = e && "counterPartyAddress" in t, e = e && "counterPartyId" in t, e = e && "contractSigningDate" in t, e = e && "contractStartDate" in t, e = e && "contractEndDate" in t, e = e && "asset" in t, e = e && "contractPolicy" in t, e = e && "transferProcesses" in t, e;
385
776
  }
386
- function G(t) {
387
- return k(t);
777
+ function Et(t) {
778
+ return Rt(t);
388
779
  }
389
- function k(t, e) {
780
+ function Rt(t, e) {
390
781
  return t == null ? t : {
391
782
  contractAgreementId: t.contractAgreementId,
783
+ contractNegotiationId: t.contractNegotiationId,
392
784
  direction: t.direction,
393
785
  counterPartyAddress: t.counterPartyAddress,
394
786
  counterPartyId: t.counterPartyId,
395
787
  contractSigningDate: new Date(t.contractSigningDate),
396
788
  contractStartDate: new Date(t.contractStartDate),
397
789
  contractEndDate: new Date(t.contractEndDate),
398
- asset: I(t.asset),
399
- contractPolicy: K(t.contractPolicy),
790
+ asset: q(t.asset),
791
+ contractPolicy: h(t.contractPolicy),
400
792
  transferProcesses: t.transferProcesses.map(
401
- U
793
+ Dt
402
794
  )
403
795
  };
404
796
  }
405
- function V(t) {
797
+ function Jt(t) {
406
798
  if (t !== void 0)
407
799
  return t === null ? null : {
408
800
  contractAgreementId: t.contractAgreementId,
801
+ contractNegotiationId: t.contractNegotiationId,
409
802
  direction: t.direction,
410
803
  counterPartyAddress: t.counterPartyAddress,
411
804
  counterPartyId: t.counterPartyId,
412
805
  contractSigningDate: t.contractSigningDate.toISOString(),
413
806
  contractStartDate: t.contractStartDate.toISOString(),
414
807
  contractEndDate: t.contractEndDate.toISOString(),
415
- asset: R(t.asset),
416
- contractPolicy: $(t.contractPolicy),
808
+ asset: U(t.asset),
809
+ contractPolicy: A(t.contractPolicy),
417
810
  transferProcesses: t.transferProcesses.map(
418
- x
811
+ Nt
419
812
  )
420
813
  };
421
814
  }
422
- function ht(t) {
815
+ function Ue(t) {
423
816
  let e = !0;
424
817
  return e = e && "contractAgreements" in t, e;
425
818
  }
426
- function B(t) {
427
- return H(t);
819
+ function bt(t) {
820
+ return Mt(t);
428
821
  }
429
- function H(t, e) {
822
+ function Mt(t, e) {
430
823
  return t == null ? t : {
431
824
  contractAgreements: t.contractAgreements.map(
432
- G
825
+ Et
433
826
  )
434
827
  };
435
828
  }
436
- function yt(t) {
829
+ function Be(t) {
437
830
  if (t !== void 0)
438
831
  return t === null ? null : {
439
832
  contractAgreements: t.contractAgreements.map(
440
- V
833
+ Jt
441
834
  )
442
835
  };
443
836
  }
444
- function wt(t) {
837
+ function Ve(t) {
445
838
  let e = !0;
446
839
  return e = e && "incomingTransferProcessCounts" in t, e = e && "outgoingTransferProcessCounts" in t, e;
447
840
  }
448
- function _(t) {
449
- return z(t);
841
+ function qt(t) {
842
+ return Lt(t);
450
843
  }
451
- function z(t, e) {
844
+ function Lt(t, e) {
452
845
  return t == null ? t : {
453
846
  incomingTransferProcessCounts: t.incomingTransferProcessCounts,
454
847
  outgoingTransferProcessCounts: t.outgoingTransferProcessCounts
455
848
  };
456
849
  }
457
- function Q(t) {
850
+ function Ut(t) {
458
851
  if (t !== void 0)
459
852
  return t === null ? null : {
460
853
  incomingTransferProcessCounts: t.incomingTransferProcessCounts,
461
854
  outgoingTransferProcessCounts: t.outgoingTransferProcessCounts
462
855
  };
463
856
  }
464
- function At(t) {
857
+ function Qe(t) {
465
858
  let e = !0;
466
859
  return e = e && "assetsCount" in t, e = e && "policiesCount" in t, e = e && "contractDefinitionsCount" in t, e = e && "contractAgreementsCount" in t, e = e && "transferProcessDto" in t, e;
467
860
  }
468
- function W(t) {
469
- return X(t);
861
+ function Bt(t) {
862
+ return Vt(t);
470
863
  }
471
- function X(t, e) {
864
+ function Vt(t, e) {
472
865
  return t == null ? t : {
473
866
  assetsCount: t.assetsCount,
474
867
  policiesCount: t.policiesCount,
475
868
  contractDefinitionsCount: t.contractDefinitionsCount,
476
869
  contractAgreementsCount: t.contractAgreementsCount,
477
- transferProcessDto: _(
870
+ transferProcessDto: qt(
478
871
  t.transferProcessDto
479
872
  )
480
873
  };
481
874
  }
482
- function Ct(t) {
875
+ function xe(t) {
483
876
  if (t !== void 0)
484
877
  return t === null ? null : {
485
878
  assetsCount: t.assetsCount,
486
879
  policiesCount: t.policiesCount,
487
880
  contractDefinitionsCount: t.contractDefinitionsCount,
488
881
  contractAgreementsCount: t.contractAgreementsCount,
489
- transferProcessDto: Q(
882
+ transferProcessDto: Ut(
490
883
  t.transferProcessDto
491
884
  )
492
885
  };
493
886
  }
494
- class Y extends a {
887
+ function Ge(t) {
888
+ let e = !0;
889
+ return e = e && "storedFileId" in t, e = e && "fileName" in t, e = e && "fileExtension" in t, e = e && "mediaType" in t, e = e && "byteSize" in t, e = e && "assetProperties" in t, e = e && "creationDate" in t, e = e && "lastModifiedDate" in t, e;
890
+ }
891
+ function m(t) {
892
+ return Qt(t);
893
+ }
894
+ function Qt(t, e) {
895
+ return t == null ? t : {
896
+ storedFileId: t.storedFileId,
897
+ fileName: t.fileName,
898
+ fileExtension: t.fileExtension,
899
+ mediaType: t.mediaType,
900
+ byteSize: t.byteSize,
901
+ assetProperties: t.assetProperties,
902
+ creationDate: new Date(t.creationDate),
903
+ lastModifiedDate: new Date(t.lastModifiedDate)
904
+ };
905
+ }
906
+ function He(t) {
907
+ if (t !== void 0)
908
+ return t === null ? null : {
909
+ storedFileId: t.storedFileId,
910
+ fileName: t.fileName,
911
+ fileExtension: t.fileExtension,
912
+ mediaType: t.mediaType,
913
+ byteSize: t.byteSize,
914
+ assetProperties: t.assetProperties,
915
+ creationDate: t.creationDate.toISOString(),
916
+ lastModifiedDate: t.lastModifiedDate.toISOString()
917
+ };
918
+ }
919
+ const Ke = {
920
+ Consuming: "CONSUMING",
921
+ Providing: "PROVIDING"
922
+ };
923
+ function $e(t) {
924
+ let e = !0;
925
+ return e = e && "transferProcessId" in t, e = e && "createdDate" in t, e = e && "lastUpdatedDate" in t, e = e && "state" in t, e = e && "contractAgreementId" in t, e = e && "direction" in t, e = e && "counterPartyConnectorEndpoint" in t, e = e && "assetName" in t, e = e && "assetId" in t, e;
926
+ }
927
+ function xt(t) {
928
+ return Gt(t);
929
+ }
930
+ function Gt(t, e) {
931
+ return t == null ? t : {
932
+ transferProcessId: t.transferProcessId,
933
+ createdDate: new Date(t.createdDate),
934
+ lastUpdatedDate: new Date(t.lastUpdatedDate),
935
+ state: I(t.state),
936
+ contractAgreementId: t.contractAgreementId,
937
+ direction: t.direction,
938
+ counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
939
+ assetName: t.assetName,
940
+ assetId: t.assetId,
941
+ errorMessage: a(t, "errorMessage") ? t.errorMessage : void 0
942
+ };
943
+ }
944
+ function Ht(t) {
945
+ if (t !== void 0)
946
+ return t === null ? null : {
947
+ transferProcessId: t.transferProcessId,
948
+ createdDate: t.createdDate.toISOString(),
949
+ lastUpdatedDate: t.lastUpdatedDate.toISOString(),
950
+ state: w(t.state),
951
+ contractAgreementId: t.contractAgreementId,
952
+ direction: t.direction,
953
+ counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
954
+ assetName: t.assetName,
955
+ assetId: t.assetId,
956
+ errorMessage: t.errorMessage
957
+ };
958
+ }
959
+ function ke(t) {
960
+ let e = !0;
961
+ return e = e && "transferEntries" in t, e;
962
+ }
963
+ function Kt(t) {
964
+ return $t(t);
965
+ }
966
+ function $t(t, e) {
967
+ return t == null ? t : {
968
+ transferEntries: t.transferEntries.map(
969
+ xt
970
+ )
971
+ };
972
+ }
973
+ function ze(t) {
974
+ if (t !== void 0)
975
+ return t === null ? null : {
976
+ transferEntries: t.transferEntries.map(
977
+ Ht
978
+ )
979
+ };
980
+ }
981
+ class kt extends u {
982
+ /**
983
+ * Query indexed Contract Offers
984
+ */
985
+ async catalogPageRaw(e, r) {
986
+ const n = {}, i = {};
987
+ i["Content-Type"] = "application/json";
988
+ const o = await this.request(
989
+ {
990
+ path: "/wrapper/broker/catalog-page",
991
+ method: "POST",
992
+ headers: i,
993
+ query: n,
994
+ body: $(
995
+ e.catalogPageQuery
996
+ )
997
+ },
998
+ r
999
+ );
1000
+ return new c(
1001
+ o,
1002
+ (s) => ft(s)
1003
+ );
1004
+ }
1005
+ /**
1006
+ * Query indexed Contract Offers
1007
+ */
1008
+ async catalogPage(e = {}, r) {
1009
+ return await (await this.catalogPageRaw(
1010
+ e,
1011
+ r
1012
+ )).value();
1013
+ }
1014
+ /**
1015
+ * Query known Connectors
1016
+ */
1017
+ async connectorPageRaw(e, r) {
1018
+ const n = {}, i = {};
1019
+ i["Content-Type"] = "application/json";
1020
+ const o = await this.request(
1021
+ {
1022
+ path: "/wrapper/broker/connector-page",
1023
+ method: "POST",
1024
+ headers: i,
1025
+ query: n,
1026
+ body: ht(
1027
+ e.connectorPageQuery
1028
+ )
1029
+ },
1030
+ r
1031
+ );
1032
+ return new c(
1033
+ o,
1034
+ (s) => It(s)
1035
+ );
1036
+ }
1037
+ /**
1038
+ * Query known Connectors
1039
+ */
1040
+ async connectorPage(e = {}, r) {
1041
+ return await (await this.connectorPageRaw(
1042
+ e,
1043
+ r
1044
+ )).value();
1045
+ }
1046
+ }
1047
+ class zt extends u {
495
1048
  /**
496
1049
  * Available and used resources of a connector.
497
1050
  */
@@ -505,9 +1058,9 @@ class Y extends a {
505
1058
  },
506
1059
  e
507
1060
  );
508
- return new d(
1061
+ return new c(
509
1062
  i,
510
- (o) => N(o)
1063
+ (o) => gt(o)
511
1064
  );
512
1065
  }
513
1066
  /**
@@ -516,8 +1069,79 @@ class Y extends a {
516
1069
  async connectorLimits(e) {
517
1070
  return await (await this.connectorLimitsRaw(e)).value();
518
1071
  }
1072
+ /**
1073
+ * Create an asset using the stored file as data source.
1074
+ * Create a file storage asset.
1075
+ */
1076
+ async createStoredFileAssetRaw(e, r) {
1077
+ if (e.storedFileId === null || e.storedFileId === void 0)
1078
+ throw new p(
1079
+ "storedFileId",
1080
+ "Required parameter requestParameters.storedFileId was null or undefined when calling createStoredFileAsset."
1081
+ );
1082
+ if (e.requestBody === null || e.requestBody === void 0)
1083
+ throw new p(
1084
+ "requestBody",
1085
+ "Required parameter requestParameters.requestBody was null or undefined when calling createStoredFileAsset."
1086
+ );
1087
+ const n = {}, i = {};
1088
+ i["Content-Type"] = "application/json";
1089
+ const o = await this.request(
1090
+ {
1091
+ path: "/wrapper/ee/file-storage/{storedFileId}/assets".replace(
1092
+ "{storedFileId}",
1093
+ encodeURIComponent(String(e.storedFileId))
1094
+ ),
1095
+ method: "POST",
1096
+ headers: i,
1097
+ query: n,
1098
+ body: e.requestBody
1099
+ },
1100
+ r
1101
+ );
1102
+ return new c(
1103
+ o,
1104
+ (s) => m(s)
1105
+ );
1106
+ }
1107
+ /**
1108
+ * Create an asset using the stored file as data source.
1109
+ * Create a file storage asset.
1110
+ */
1111
+ async createStoredFileAsset(e, r) {
1112
+ return await (await this.createStoredFileAssetRaw(
1113
+ e,
1114
+ r
1115
+ )).value();
1116
+ }
1117
+ /**
1118
+ * Get all files stored in file storage
1119
+ * Get all stored files.
1120
+ */
1121
+ async listStoredFilesRaw(e) {
1122
+ const r = {}, n = {}, i = await this.request(
1123
+ {
1124
+ path: "/wrapper/ee/file-storage/stored-files",
1125
+ method: "GET",
1126
+ headers: n,
1127
+ query: r
1128
+ },
1129
+ e
1130
+ );
1131
+ return new c(
1132
+ i,
1133
+ (o) => o.map(m)
1134
+ );
1135
+ }
1136
+ /**
1137
+ * Get all files stored in file storage
1138
+ * Get all stored files.
1139
+ */
1140
+ async listStoredFiles(e) {
1141
+ return await (await this.listStoredFilesRaw(e)).value();
1142
+ }
519
1143
  }
520
- class Z extends a {
1144
+ class _t extends u {
521
1145
  /**
522
1146
  * Collect all data for Contract Agreement Page
523
1147
  */
@@ -531,9 +1155,9 @@ class Z extends a {
531
1155
  },
532
1156
  e
533
1157
  );
534
- return new d(
1158
+ return new c(
535
1159
  i,
536
- (o) => B(o)
1160
+ (o) => bt(o)
537
1161
  );
538
1162
  }
539
1163
  /**
@@ -542,8 +1166,32 @@ class Z extends a {
542
1166
  async contractAgreementEndpoint(e) {
543
1167
  return await (await this.contractAgreementEndpointRaw(e)).value();
544
1168
  }
1169
+ /**
1170
+ */
1171
+ async transferHistoryPageEndpointRaw(e) {
1172
+ const r = {}, n = {}, i = await this.request(
1173
+ {
1174
+ path: "/wrapper/ui/pages/transfer-history-page",
1175
+ method: "GET",
1176
+ headers: n,
1177
+ query: r
1178
+ },
1179
+ e
1180
+ );
1181
+ return new c(
1182
+ i,
1183
+ (o) => Kt(o)
1184
+ );
1185
+ }
1186
+ /**
1187
+ */
1188
+ async transferHistoryPageEndpoint(e) {
1189
+ return await (await this.transferHistoryPageEndpointRaw(
1190
+ e
1191
+ )).value();
1192
+ }
545
1193
  }
546
- class v extends a {
1194
+ class Wt extends u {
547
1195
  /**
548
1196
  * List available functions in policies, prohibitions and obligations.
549
1197
  */
@@ -557,7 +1205,7 @@ class v extends a {
557
1205
  },
558
1206
  e
559
1207
  );
560
- return new d(i);
1208
+ return new c(i);
561
1209
  }
562
1210
  /**
563
1211
  * List available functions in policies, prohibitions and obligations.
@@ -578,9 +1226,9 @@ class v extends a {
578
1226
  },
579
1227
  e
580
1228
  );
581
- return new d(
1229
+ return new c(
582
1230
  i,
583
- (o) => W(o)
1231
+ (o) => Bt(o)
584
1232
  );
585
1233
  }
586
1234
  /**
@@ -590,8 +1238,8 @@ class v extends a {
590
1238
  return await (await this.kpiEndpointRaw(e)).value();
591
1239
  }
592
1240
  }
593
- function Pt(t) {
594
- const e = new g({
1241
+ function _e(t) {
1242
+ const e = new S({
595
1243
  basePath: t.managementApiUrl,
596
1244
  headers: {
597
1245
  "x-api-key": t.managementApiKey ?? "ApiKeyDefaultValue"
@@ -600,69 +1248,150 @@ function Pt(t) {
600
1248
  ...t.configOverrides
601
1249
  });
602
1250
  return {
603
- uiApi: new Z(e),
604
- useCaseApi: new v(e),
605
- enterpriseEditionApi: new Y(e)
1251
+ uiApi: new _t(e),
1252
+ useCaseApi: new Wt(e),
1253
+ enterpriseEditionApi: new zt(e),
1254
+ brokerServerApi: new kt(e)
606
1255
  };
607
1256
  }
608
1257
  export {
609
- I as AssetDtoFromJSON,
610
- E as AssetDtoFromJSONTyped,
611
- R as AssetDtoToJSON,
612
- C as BASE_PATH,
613
- a as BaseAPI,
614
- ot as BlobApiResponse,
615
- et as COLLECTION_FORMATS,
616
- g as Configuration,
617
- N as ConnectorLimitsFromJSON,
618
- F as ConnectorLimitsFromJSONTyped,
619
- ut as ConnectorLimitsToJSON,
620
- pt as ContractAgreementCardDirectionEnum,
621
- G as ContractAgreementCardFromJSON,
622
- k as ContractAgreementCardFromJSONTyped,
623
- V as ContractAgreementCardToJSON,
624
- B as ContractAgreementPageFromJSON,
625
- H as ContractAgreementPageFromJSONTyped,
626
- yt as ContractAgreementPageToJSON,
627
- U as ContractAgreementTransferProcessFromJSON,
628
- M as ContractAgreementTransferProcessFromJSONTyped,
629
- x as ContractAgreementTransferProcessToJSON,
630
- P as DefaultConfig,
631
- Y as EnterpriseEditionApi,
632
- T as FetchError,
633
- d as JSONApiResponse,
634
- W as KpiResultFromJSON,
635
- X as KpiResultFromJSONTyped,
636
- Ct as KpiResultToJSON,
637
- K as PolicyDtoFromJSON,
638
- L as PolicyDtoFromJSONTyped,
639
- $ as PolicyDtoToJSON,
640
- tt as RequiredError,
641
- O as ResponseError,
642
- st as TextApiResponse,
643
- J as TransferProcessStateFromJSON,
644
- b as TransferProcessStateFromJSONTyped,
645
- dt as TransferProcessStateSimplifiedStateEnum,
646
- q as TransferProcessStateToJSON,
647
- _ as TransferProcessStatesDtoFromJSON,
648
- z as TransferProcessStatesDtoFromJSONTyped,
649
- Q as TransferProcessStatesDtoToJSON,
650
- Z as UIApi,
651
- v as UseCaseApi,
652
- it as VoidApiResponse,
653
- Pt as buildEdcClient,
654
- nt as canConsumeForm,
655
- p as exists,
656
- ct as instanceOfAssetDto,
657
- at as instanceOfConnectorLimits,
658
- lt as instanceOfContractAgreementCard,
659
- ht as instanceOfContractAgreementPage,
660
- mt as instanceOfContractAgreementTransferProcess,
661
- At as instanceOfKpiResult,
662
- gt as instanceOfPolicyDto,
663
- ft as instanceOfTransferProcessState,
664
- wt as instanceOfTransferProcessStatesDto,
665
- rt as mapValues,
666
- l as querystring
1258
+ q as AssetDtoFromJSON,
1259
+ L as AssetDtoFromJSONTyped,
1260
+ U as AssetDtoToJSON,
1261
+ N as BASE_PATH,
1262
+ u as BaseAPI,
1263
+ te as BlobApiResponse,
1264
+ kt as BrokerServerApi,
1265
+ Yt as COLLECTION_FORMATS,
1266
+ se as CatalogPageQueryFromJSON,
1267
+ K as CatalogPageQueryFromJSONTyped,
1268
+ oe as CatalogPageQuerySortingEnum,
1269
+ $ as CatalogPageQueryToJSON,
1270
+ ft as CatalogPageResultFromJSON,
1271
+ lt as CatalogPageResultFromJSONTyped,
1272
+ he as CatalogPageResultToJSON,
1273
+ k as CatalogPageSortingItemFromJSON,
1274
+ z as CatalogPageSortingItemFromJSONTyped,
1275
+ ce as CatalogPageSortingItemSortingEnum,
1276
+ _ as CatalogPageSortingItemToJSON,
1277
+ Z as CnfFilterAttributeFromJSON,
1278
+ v as CnfFilterAttributeFromJSONTyped,
1279
+ j as CnfFilterAttributeToJSON,
1280
+ tt as CnfFilterFromJSON,
1281
+ et as CnfFilterFromJSONTyped,
1282
+ W as CnfFilterItemFromJSON,
1283
+ X as CnfFilterItemFromJSONTyped,
1284
+ Y as CnfFilterItemToJSON,
1285
+ rt as CnfFilterToJSON,
1286
+ B as CnfFilterValueAttributeFromJSON,
1287
+ V as CnfFilterValueAttributeFromJSONTyped,
1288
+ Q as CnfFilterValueAttributeToJSON,
1289
+ x as CnfFilterValueFromJSON,
1290
+ G as CnfFilterValueFromJSONTyped,
1291
+ H as CnfFilterValueToJSON,
1292
+ S as Configuration,
1293
+ gt as ConnectorLimitsFromJSON,
1294
+ pt as ConnectorLimitsFromJSONTyped,
1295
+ Ce as ConnectorLimitsToJSON,
1296
+ mt as ConnectorListEntryFromJSON,
1297
+ St as ConnectorListEntryFromJSONTyped,
1298
+ Pe as ConnectorListEntryOnlineStatusEnum,
1299
+ Ot as ConnectorListEntryToJSON,
1300
+ De as ConnectorPageQueryFromJSON,
1301
+ yt as ConnectorPageQueryFromJSONTyped,
1302
+ we as ConnectorPageQuerySortingEnum,
1303
+ ht as ConnectorPageQueryToJSON,
1304
+ It as ConnectorPageResultFromJSON,
1305
+ wt as ConnectorPageResultFromJSONTyped,
1306
+ Re as ConnectorPageResultToJSON,
1307
+ At as ConnectorPageSortingItemFromJSON,
1308
+ Ct as ConnectorPageSortingItemFromJSONTyped,
1309
+ Fe as ConnectorPageSortingItemSortingEnum,
1310
+ Pt as ConnectorPageSortingItemToJSON,
1311
+ qe as ContractAgreementCardDirectionEnum,
1312
+ Et as ContractAgreementCardFromJSON,
1313
+ Rt as ContractAgreementCardFromJSONTyped,
1314
+ Jt as ContractAgreementCardToJSON,
1315
+ bt as ContractAgreementPageFromJSON,
1316
+ Mt as ContractAgreementPageFromJSONTyped,
1317
+ Be as ContractAgreementPageToJSON,
1318
+ Dt as ContractAgreementTransferProcessFromJSON,
1319
+ Ft as ContractAgreementTransferProcessFromJSONTyped,
1320
+ Nt as ContractAgreementTransferProcessToJSON,
1321
+ me as DataOfferListEntryConnectorOnlineStatusEnum,
1322
+ it as DataOfferListEntryContractOfferFromJSON,
1323
+ ot as DataOfferListEntryContractOfferFromJSONTyped,
1324
+ at as DataOfferListEntryContractOfferToJSON,
1325
+ st as DataOfferListEntryFromJSON,
1326
+ ct as DataOfferListEntryFromJSONTyped,
1327
+ dt as DataOfferListEntryToJSON,
1328
+ E as DefaultConfig,
1329
+ zt as EnterpriseEditionApi,
1330
+ M as FetchError,
1331
+ c as JSONApiResponse,
1332
+ Bt as KpiResultFromJSON,
1333
+ Vt as KpiResultFromJSONTyped,
1334
+ xe as KpiResultToJSON,
1335
+ C as PaginationMetadataFromJSON,
1336
+ ut as PaginationMetadataFromJSONTyped,
1337
+ P as PaginationMetadataToJSON,
1338
+ h as PolicyDtoFromJSON,
1339
+ nt as PolicyDtoFromJSONTyped,
1340
+ A as PolicyDtoToJSON,
1341
+ p as RequiredError,
1342
+ b as ResponseError,
1343
+ m as StoredFileFromJSON,
1344
+ Qt as StoredFileFromJSONTyped,
1345
+ He as StoredFileToJSON,
1346
+ ee as TextApiResponse,
1347
+ Ke as TransferHistoryEntryDirectionEnum,
1348
+ xt as TransferHistoryEntryFromJSON,
1349
+ Gt as TransferHistoryEntryFromJSONTyped,
1350
+ Ht as TransferHistoryEntryToJSON,
1351
+ Kt as TransferHistoryPageFromJSON,
1352
+ $t as TransferHistoryPageFromJSONTyped,
1353
+ ze as TransferHistoryPageToJSON,
1354
+ I as TransferProcessStateFromJSON,
1355
+ Tt as TransferProcessStateFromJSONTyped,
1356
+ Je as TransferProcessStateSimplifiedStateEnum,
1357
+ w as TransferProcessStateToJSON,
1358
+ qt as TransferProcessStatesDtoFromJSON,
1359
+ Lt as TransferProcessStatesDtoFromJSONTyped,
1360
+ Ut as TransferProcessStatesDtoToJSON,
1361
+ _t as UIApi,
1362
+ Wt as UseCaseApi,
1363
+ jt as VoidApiResponse,
1364
+ _e as buildEdcClient,
1365
+ vt as canConsumeForm,
1366
+ a as exists,
1367
+ re as instanceOfAssetDto,
1368
+ ae as instanceOfCatalogPageQuery,
1369
+ ye as instanceOfCatalogPageResult,
1370
+ de as instanceOfCatalogPageSortingItem,
1371
+ le as instanceOfCnfFilter,
1372
+ fe as instanceOfCnfFilterAttribute,
1373
+ ue as instanceOfCnfFilterItem,
1374
+ ie as instanceOfCnfFilterValue,
1375
+ ne as instanceOfCnfFilterValueAttribute,
1376
+ Ae as instanceOfConnectorLimits,
1377
+ Ie as instanceOfConnectorListEntry,
1378
+ Te as instanceOfConnectorPageQuery,
1379
+ Ee as instanceOfConnectorPageResult,
1380
+ Ne as instanceOfConnectorPageSortingItem,
1381
+ Le as instanceOfContractAgreementCard,
1382
+ Ue as instanceOfContractAgreementPage,
1383
+ Me as instanceOfContractAgreementTransferProcess,
1384
+ Se as instanceOfDataOfferListEntry,
1385
+ pe as instanceOfDataOfferListEntryContractOffer,
1386
+ Qe as instanceOfKpiResult,
1387
+ Oe as instanceOfPaginationMetadata,
1388
+ ge as instanceOfPolicyDto,
1389
+ Ge as instanceOfStoredFile,
1390
+ $e as instanceOfTransferHistoryEntry,
1391
+ ke as instanceOfTransferHistoryPage,
1392
+ be as instanceOfTransferProcessState,
1393
+ Ve as instanceOfTransferProcessStatesDto,
1394
+ Zt as mapValues,
1395
+ O as querystring
667
1396
  };
668
1397
  //# sourceMappingURL=sovity-edc-client.js.map