@sovity.de/edc-client 7.0.0 → 7.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.
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var
|
|
1
|
+
var M = Object.defineProperty;
|
|
2
|
+
var L = (t, e, r) => e in t ? M(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
|
|
3
|
+
var p = (t, e, r) => (L(t, typeof e != "symbol" ? e + "" : e, r), r);
|
|
4
4
|
const H = "https://my-connector/api/management".replace(
|
|
5
5
|
/\/+$/,
|
|
6
6
|
""
|
|
7
7
|
);
|
|
8
|
-
class
|
|
8
|
+
class D {
|
|
9
9
|
constructor(e = {}) {
|
|
10
10
|
this.configuration = e;
|
|
11
11
|
}
|
|
@@ -47,13 +47,13 @@ class S {
|
|
|
47
47
|
return this.configuration.credentials;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
const k = new
|
|
50
|
+
const k = new D(), h = class {
|
|
51
51
|
constructor(e = k) {
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
p(this, "middleware");
|
|
53
|
+
p(this, "fetchApi", async (e, r) => {
|
|
54
54
|
let n = { url: e, init: r };
|
|
55
|
-
for (const
|
|
56
|
-
|
|
55
|
+
for (const a of this.middleware)
|
|
56
|
+
a.pre && (n = await a.pre({
|
|
57
57
|
fetch: this.fetchApi,
|
|
58
58
|
...n
|
|
59
59
|
}) || n);
|
|
@@ -63,23 +63,23 @@ const k = new S(), h = class {
|
|
|
63
63
|
n.url,
|
|
64
64
|
n.init
|
|
65
65
|
);
|
|
66
|
-
} catch (
|
|
66
|
+
} catch (a) {
|
|
67
67
|
for (const s of this.middleware)
|
|
68
68
|
s.onError && (i = await s.onError({
|
|
69
69
|
fetch: this.fetchApi,
|
|
70
70
|
url: n.url,
|
|
71
71
|
init: n.init,
|
|
72
|
-
error:
|
|
72
|
+
error: a,
|
|
73
73
|
response: i ? i.clone() : void 0
|
|
74
74
|
}) || i);
|
|
75
75
|
if (i === void 0)
|
|
76
|
-
throw
|
|
77
|
-
|
|
76
|
+
throw a instanceof Error ? new $(
|
|
77
|
+
a,
|
|
78
78
|
"The request failed and the interceptors did not return an alternative response"
|
|
79
|
-
) :
|
|
79
|
+
) : a;
|
|
80
80
|
}
|
|
81
|
-
for (const
|
|
82
|
-
|
|
81
|
+
for (const a of this.middleware)
|
|
82
|
+
a.post && (i = await a.post({
|
|
83
83
|
fetch: this.fetchApi,
|
|
84
84
|
url: n.url,
|
|
85
85
|
init: n.init,
|
|
@@ -118,10 +118,10 @@ const k = new S(), h = class {
|
|
|
118
118
|
const { url: n, init: i } = await this.createFetchParams(
|
|
119
119
|
e,
|
|
120
120
|
r
|
|
121
|
-
),
|
|
122
|
-
if (
|
|
123
|
-
return
|
|
124
|
-
throw new K(
|
|
121
|
+
), a = await this.fetchApi(n, i);
|
|
122
|
+
if (a && a.status >= 200 && a.status < 300)
|
|
123
|
+
return a;
|
|
124
|
+
throw new K(a, "Response returned an error code");
|
|
125
125
|
}
|
|
126
126
|
async createFetchParams(e, r) {
|
|
127
127
|
let n = this.configuration.basePath + e.path;
|
|
@@ -132,24 +132,24 @@ const k = new S(), h = class {
|
|
|
132
132
|
e.headers
|
|
133
133
|
);
|
|
134
134
|
Object.keys(i).forEach(
|
|
135
|
-
(
|
|
135
|
+
(w) => i[w] === void 0 ? delete i[w] : {}
|
|
136
136
|
);
|
|
137
|
-
const
|
|
137
|
+
const a = typeof r == "function" ? r : async () => r, s = {
|
|
138
138
|
method: e.method,
|
|
139
139
|
headers: i,
|
|
140
140
|
body: e.body,
|
|
141
141
|
credentials: this.configuration.credentials
|
|
142
|
-
},
|
|
142
|
+
}, f = {
|
|
143
143
|
...s,
|
|
144
|
-
...await
|
|
144
|
+
...await a({
|
|
145
145
|
init: s,
|
|
146
146
|
context: e
|
|
147
147
|
})
|
|
148
|
-
},
|
|
149
|
-
...
|
|
150
|
-
body: G(
|
|
148
|
+
}, E = {
|
|
149
|
+
...f,
|
|
150
|
+
body: G(f.body) || f.body instanceof URLSearchParams || x(f.body) ? f.body : JSON.stringify(f.body)
|
|
151
151
|
};
|
|
152
|
-
return { url: n, init:
|
|
152
|
+
return { url: n, init: E };
|
|
153
153
|
}
|
|
154
154
|
/**
|
|
155
155
|
* Create a shallow clone of `this` by constructing a new instance
|
|
@@ -161,7 +161,7 @@ const k = new S(), h = class {
|
|
|
161
161
|
}
|
|
162
162
|
};
|
|
163
163
|
let g = h;
|
|
164
|
-
|
|
164
|
+
p(g, "jsonRegex", new RegExp(
|
|
165
165
|
"^(:?application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(:?;.*)?$",
|
|
166
166
|
"i"
|
|
167
167
|
));
|
|
@@ -174,31 +174,31 @@ function G(t) {
|
|
|
174
174
|
class K extends Error {
|
|
175
175
|
constructor(r, n) {
|
|
176
176
|
super(n);
|
|
177
|
-
|
|
177
|
+
p(this, "name", "ResponseError");
|
|
178
178
|
this.response = r;
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
181
|
class $ extends Error {
|
|
182
182
|
constructor(r, n) {
|
|
183
183
|
super(n);
|
|
184
|
-
|
|
184
|
+
p(this, "name", "FetchError");
|
|
185
185
|
this.cause = r;
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
|
-
class
|
|
188
|
+
class u extends Error {
|
|
189
189
|
constructor(r, n) {
|
|
190
190
|
super(n);
|
|
191
|
-
|
|
191
|
+
p(this, "name", "RequiredError");
|
|
192
192
|
this.field = r;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
|
-
const
|
|
195
|
+
const Fe = {
|
|
196
196
|
csv: ",",
|
|
197
197
|
ssv: " ",
|
|
198
198
|
tsv: " ",
|
|
199
199
|
pipes: "|"
|
|
200
200
|
};
|
|
201
|
-
function
|
|
201
|
+
function o(t, e) {
|
|
202
202
|
const r = t[e];
|
|
203
203
|
return r != null;
|
|
204
204
|
}
|
|
@@ -208,7 +208,7 @@ function O(t, e = "") {
|
|
|
208
208
|
function T(t, e, r = "") {
|
|
209
209
|
const n = r + (r.length ? `[${t}]` : t);
|
|
210
210
|
if (e instanceof Array) {
|
|
211
|
-
const i = e.map((
|
|
211
|
+
const i = e.map((a) => encodeURIComponent(String(a))).join(`&${encodeURIComponent(n)}=`);
|
|
212
212
|
return `${encodeURIComponent(n)}=${i}`;
|
|
213
213
|
}
|
|
214
214
|
if (e instanceof Set) {
|
|
@@ -221,13 +221,13 @@ function T(t, e, r = "") {
|
|
|
221
221
|
String(e)
|
|
222
222
|
)}`;
|
|
223
223
|
}
|
|
224
|
-
function
|
|
224
|
+
function be(t, e) {
|
|
225
225
|
return Object.keys(t).reduce(
|
|
226
226
|
(r, n) => ({ ...r, [n]: e(t[n]) }),
|
|
227
227
|
{}
|
|
228
228
|
);
|
|
229
229
|
}
|
|
230
|
-
function
|
|
230
|
+
function Ee(t) {
|
|
231
231
|
for (const e of t)
|
|
232
232
|
if (e.contentType === "multipart/form-data")
|
|
233
233
|
return !0;
|
|
@@ -241,14 +241,14 @@ class c {
|
|
|
241
241
|
return this.transformer(await this.raw.json());
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
|
-
class
|
|
244
|
+
class v {
|
|
245
245
|
constructor(e) {
|
|
246
246
|
this.raw = e;
|
|
247
247
|
}
|
|
248
248
|
async value() {
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
|
-
class
|
|
251
|
+
class Me {
|
|
252
252
|
constructor(e) {
|
|
253
253
|
this.raw = e;
|
|
254
254
|
}
|
|
@@ -256,7 +256,7 @@ class Ee {
|
|
|
256
256
|
return await this.raw.blob();
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
|
-
class
|
|
259
|
+
class _ {
|
|
260
260
|
constructor(e) {
|
|
261
261
|
this.raw = e;
|
|
262
262
|
}
|
|
@@ -264,54 +264,56 @@ class Q {
|
|
|
264
264
|
return await this.raw.text();
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
|
-
function
|
|
267
|
+
function Le(t) {
|
|
268
268
|
let e = !0;
|
|
269
|
-
return e = e && "assetId" in t, e = e && "connectorEndpoint" in t, e = e && "participantId" in t, e = e && "title" in t, e = e && "creatorOrganizationName" in t, e;
|
|
269
|
+
return e = e && "assetId" in t, e = e && "connectorEndpoint" in t, e = e && "participantId" in t, e = e && "title" in t, e = e && "creatorOrganizationName" in t, e = e && "isOwnConnector" in t, e;
|
|
270
270
|
}
|
|
271
271
|
function l(t) {
|
|
272
|
-
return
|
|
272
|
+
return Q(t);
|
|
273
273
|
}
|
|
274
|
-
function
|
|
274
|
+
function Q(t, e) {
|
|
275
275
|
return t == null ? t : {
|
|
276
276
|
assetId: t.assetId,
|
|
277
277
|
connectorEndpoint: t.connectorEndpoint,
|
|
278
278
|
participantId: t.participantId,
|
|
279
279
|
title: t.title,
|
|
280
280
|
creatorOrganizationName: t.creatorOrganizationName,
|
|
281
|
-
language:
|
|
282
|
-
description:
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
281
|
+
language: o(t, "language") ? t.language : void 0,
|
|
282
|
+
description: o(t, "description") ? t.description : void 0,
|
|
283
|
+
descriptionShortText: o(t, "descriptionShortText") ? t.descriptionShortText : void 0,
|
|
284
|
+
isOwnConnector: t.isOwnConnector,
|
|
285
|
+
publisherHomepage: o(t, "publisherHomepage") ? t.publisherHomepage : void 0,
|
|
286
|
+
licenseUrl: o(t, "licenseUrl") ? t.licenseUrl : void 0,
|
|
287
|
+
version: o(t, "version") ? t.version : void 0,
|
|
288
|
+
keywords: o(t, "keywords") ? t.keywords : void 0,
|
|
289
|
+
mediaType: o(t, "mediaType") ? t.mediaType : void 0,
|
|
290
|
+
landingPageUrl: o(t, "landingPageUrl") ? t.landingPageUrl : void 0,
|
|
291
|
+
httpDatasourceHintsProxyMethod: o(
|
|
290
292
|
t,
|
|
291
293
|
"httpDatasourceHintsProxyMethod"
|
|
292
294
|
) ? t.httpDatasourceHintsProxyMethod : void 0,
|
|
293
|
-
httpDatasourceHintsProxyPath:
|
|
295
|
+
httpDatasourceHintsProxyPath: o(
|
|
294
296
|
t,
|
|
295
297
|
"httpDatasourceHintsProxyPath"
|
|
296
298
|
) ? t.httpDatasourceHintsProxyPath : void 0,
|
|
297
|
-
httpDatasourceHintsProxyQueryParams:
|
|
299
|
+
httpDatasourceHintsProxyQueryParams: o(
|
|
298
300
|
t,
|
|
299
301
|
"httpDatasourceHintsProxyQueryParams"
|
|
300
302
|
) ? t.httpDatasourceHintsProxyQueryParams : void 0,
|
|
301
|
-
httpDatasourceHintsProxyBody:
|
|
303
|
+
httpDatasourceHintsProxyBody: o(
|
|
302
304
|
t,
|
|
303
305
|
"httpDatasourceHintsProxyBody"
|
|
304
306
|
) ? t.httpDatasourceHintsProxyBody : void 0,
|
|
305
|
-
dataCategory:
|
|
306
|
-
dataSubcategory:
|
|
307
|
-
dataModel:
|
|
308
|
-
geoReferenceMethod:
|
|
309
|
-
transportMode:
|
|
310
|
-
additionalProperties:
|
|
311
|
-
additionalJsonProperties:
|
|
312
|
-
privateProperties:
|
|
313
|
-
privateJsonProperties:
|
|
314
|
-
assetJsonLd:
|
|
307
|
+
dataCategory: o(t, "dataCategory") ? t.dataCategory : void 0,
|
|
308
|
+
dataSubcategory: o(t, "dataSubcategory") ? t.dataSubcategory : void 0,
|
|
309
|
+
dataModel: o(t, "dataModel") ? t.dataModel : void 0,
|
|
310
|
+
geoReferenceMethod: o(t, "geoReferenceMethod") ? t.geoReferenceMethod : void 0,
|
|
311
|
+
transportMode: o(t, "transportMode") ? t.transportMode : void 0,
|
|
312
|
+
additionalProperties: o(t, "additionalProperties") ? t.additionalProperties : void 0,
|
|
313
|
+
additionalJsonProperties: o(t, "additionalJsonProperties") ? t.additionalJsonProperties : void 0,
|
|
314
|
+
privateProperties: o(t, "privateProperties") ? t.privateProperties : void 0,
|
|
315
|
+
privateJsonProperties: o(t, "privateJsonProperties") ? t.privateJsonProperties : void 0,
|
|
316
|
+
assetJsonLd: o(t, "assetJsonLd") ? t.assetJsonLd : void 0
|
|
315
317
|
};
|
|
316
318
|
}
|
|
317
319
|
function m(t) {
|
|
@@ -324,6 +326,8 @@ function m(t) {
|
|
|
324
326
|
creatorOrganizationName: t.creatorOrganizationName,
|
|
325
327
|
language: t.language,
|
|
326
328
|
description: t.description,
|
|
329
|
+
descriptionShortText: t.descriptionShortText,
|
|
330
|
+
isOwnConnector: t.isOwnConnector,
|
|
327
331
|
publisherHomepage: t.publisherHomepage,
|
|
328
332
|
licenseUrl: t.licenseUrl,
|
|
329
333
|
version: t.version,
|
|
@@ -346,75 +350,75 @@ function m(t) {
|
|
|
346
350
|
assetJsonLd: t.assetJsonLd
|
|
347
351
|
};
|
|
348
352
|
}
|
|
349
|
-
function
|
|
353
|
+
function He(t) {
|
|
350
354
|
let e = !0;
|
|
351
355
|
return e = e && "assets" in t, e;
|
|
352
356
|
}
|
|
353
|
-
function
|
|
354
|
-
return
|
|
357
|
+
function V(t) {
|
|
358
|
+
return B(t);
|
|
355
359
|
}
|
|
356
|
-
function
|
|
360
|
+
function B(t, e) {
|
|
357
361
|
return t == null ? t : {
|
|
358
362
|
assets: t.assets.map(l)
|
|
359
363
|
};
|
|
360
364
|
}
|
|
361
|
-
function
|
|
365
|
+
function ke(t) {
|
|
362
366
|
if (t !== void 0)
|
|
363
367
|
return t === null ? null : {
|
|
364
368
|
assets: t.assets.map(m)
|
|
365
369
|
};
|
|
366
370
|
}
|
|
367
|
-
function
|
|
371
|
+
function xe(t) {
|
|
368
372
|
let e = !0;
|
|
369
373
|
return e = e && "numActiveConsumingContractAgreements" in t, e;
|
|
370
374
|
}
|
|
371
|
-
function
|
|
372
|
-
return
|
|
375
|
+
function z(t) {
|
|
376
|
+
return X(t);
|
|
373
377
|
}
|
|
374
|
-
function
|
|
378
|
+
function X(t, e) {
|
|
375
379
|
return t == null ? t : {
|
|
376
380
|
numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
|
|
377
|
-
maxActiveConsumingContractAgreements:
|
|
381
|
+
maxActiveConsumingContractAgreements: o(
|
|
378
382
|
t,
|
|
379
383
|
"maxActiveConsumingContractAgreements"
|
|
380
384
|
) ? t.maxActiveConsumingContractAgreements : void 0
|
|
381
385
|
};
|
|
382
386
|
}
|
|
383
|
-
function
|
|
387
|
+
function Ge(t) {
|
|
384
388
|
if (t !== void 0)
|
|
385
389
|
return t === null ? null : {
|
|
386
390
|
numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
|
|
387
391
|
maxActiveConsumingContractAgreements: t.maxActiveConsumingContractAgreements
|
|
388
392
|
};
|
|
389
393
|
}
|
|
390
|
-
const
|
|
394
|
+
const Ke = {
|
|
391
395
|
Consuming: "CONSUMING",
|
|
392
396
|
Providing: "PROVIDING"
|
|
393
397
|
};
|
|
394
398
|
function N(t) {
|
|
395
|
-
return
|
|
399
|
+
return Y(t);
|
|
396
400
|
}
|
|
397
|
-
function
|
|
401
|
+
function Y(t, e) {
|
|
398
402
|
return t;
|
|
399
403
|
}
|
|
400
|
-
function
|
|
404
|
+
function $e(t) {
|
|
401
405
|
return t;
|
|
402
406
|
}
|
|
403
|
-
const
|
|
407
|
+
const ve = {
|
|
404
408
|
Running: "RUNNING",
|
|
405
409
|
Ok: "OK",
|
|
406
410
|
Error: "ERROR"
|
|
407
411
|
};
|
|
408
|
-
function
|
|
409
|
-
return
|
|
412
|
+
function W(t) {
|
|
413
|
+
return Z(t);
|
|
410
414
|
}
|
|
411
|
-
function
|
|
415
|
+
function Z(t, e) {
|
|
412
416
|
return t;
|
|
413
417
|
}
|
|
414
|
-
function
|
|
418
|
+
function _e(t) {
|
|
415
419
|
return t;
|
|
416
420
|
}
|
|
417
|
-
function
|
|
421
|
+
function Qe(t) {
|
|
418
422
|
let e = !0;
|
|
419
423
|
return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
|
|
420
424
|
}
|
|
@@ -425,7 +429,7 @@ function j(t, e) {
|
|
|
425
429
|
return t == null ? t : {
|
|
426
430
|
name: t.name,
|
|
427
431
|
code: t.code,
|
|
428
|
-
simplifiedState:
|
|
432
|
+
simplifiedState: W(
|
|
429
433
|
t.simplifiedState
|
|
430
434
|
)
|
|
431
435
|
};
|
|
@@ -438,7 +442,7 @@ function J(t) {
|
|
|
438
442
|
simplifiedState: t.simplifiedState
|
|
439
443
|
};
|
|
440
444
|
}
|
|
441
|
-
function
|
|
445
|
+
function Ve(t) {
|
|
442
446
|
let e = !0;
|
|
443
447
|
return e = e && "transferProcessId" in t, e = e && "lastUpdatedDate" in t, e = e && "state" in t, e;
|
|
444
448
|
}
|
|
@@ -450,7 +454,7 @@ function et(t, e) {
|
|
|
450
454
|
transferProcessId: t.transferProcessId,
|
|
451
455
|
lastUpdatedDate: new Date(t.lastUpdatedDate),
|
|
452
456
|
state: A(t.state),
|
|
453
|
-
errorMessage:
|
|
457
|
+
errorMessage: o(t, "errorMessage") ? t.errorMessage : void 0
|
|
454
458
|
};
|
|
455
459
|
}
|
|
456
460
|
function rt(t) {
|
|
@@ -462,7 +466,7 @@ function rt(t) {
|
|
|
462
466
|
errorMessage: t.errorMessage
|
|
463
467
|
};
|
|
464
468
|
}
|
|
465
|
-
const
|
|
469
|
+
const Be = {
|
|
466
470
|
Eq: "EQ",
|
|
467
471
|
Neq: "NEQ",
|
|
468
472
|
Gt: "GT",
|
|
@@ -482,10 +486,10 @@ function nt(t) {
|
|
|
482
486
|
function it(t, e) {
|
|
483
487
|
return t;
|
|
484
488
|
}
|
|
485
|
-
function
|
|
489
|
+
function ze(t) {
|
|
486
490
|
return t;
|
|
487
491
|
}
|
|
488
|
-
const
|
|
492
|
+
const Xe = {
|
|
489
493
|
String: "STRING",
|
|
490
494
|
StringList: "STRING_LIST",
|
|
491
495
|
Json: "JSON"
|
|
@@ -496,10 +500,10 @@ function ot(t) {
|
|
|
496
500
|
function at(t, e) {
|
|
497
501
|
return t;
|
|
498
502
|
}
|
|
499
|
-
function
|
|
503
|
+
function Ye(t) {
|
|
500
504
|
return t;
|
|
501
505
|
}
|
|
502
|
-
function
|
|
506
|
+
function We(t) {
|
|
503
507
|
let e = !0;
|
|
504
508
|
return e = e && "type" in t, e;
|
|
505
509
|
}
|
|
@@ -509,8 +513,8 @@ function st(t) {
|
|
|
509
513
|
function ct(t, e) {
|
|
510
514
|
return t == null ? t : {
|
|
511
515
|
type: ot(t.type),
|
|
512
|
-
value:
|
|
513
|
-
valueList:
|
|
516
|
+
value: o(t, "value") ? t.value : void 0,
|
|
517
|
+
valueList: o(t, "valueList") ? t.valueList : void 0
|
|
514
518
|
};
|
|
515
519
|
}
|
|
516
520
|
function dt(t) {
|
|
@@ -521,7 +525,7 @@ function dt(t) {
|
|
|
521
525
|
valueList: t.valueList
|
|
522
526
|
};
|
|
523
527
|
}
|
|
524
|
-
function
|
|
528
|
+
function Ze(t) {
|
|
525
529
|
let e = !0;
|
|
526
530
|
return e = e && "left" in t, e = e && "operator" in t, e = e && "right" in t, e;
|
|
527
531
|
}
|
|
@@ -543,17 +547,17 @@ function U(t) {
|
|
|
543
547
|
right: dt(t.right)
|
|
544
548
|
};
|
|
545
549
|
}
|
|
546
|
-
function
|
|
550
|
+
function je(t) {
|
|
547
551
|
let e = !0;
|
|
548
552
|
return e = e && "policyJsonLd" in t, e = e && "errors" in t, e;
|
|
549
553
|
}
|
|
550
554
|
function y(t) {
|
|
551
|
-
return
|
|
555
|
+
return pt(t);
|
|
552
556
|
}
|
|
553
|
-
function
|
|
557
|
+
function pt(t, e) {
|
|
554
558
|
return t == null ? t : {
|
|
555
559
|
policyJsonLd: t.policyJsonLd,
|
|
556
|
-
constraints:
|
|
560
|
+
constraints: o(t, "constraints") ? t.constraints.map(
|
|
557
561
|
R
|
|
558
562
|
) : void 0,
|
|
559
563
|
errors: t.errors
|
|
@@ -569,11 +573,11 @@ function P(t) {
|
|
|
569
573
|
errors: t.errors
|
|
570
574
|
};
|
|
571
575
|
}
|
|
572
|
-
function
|
|
576
|
+
function tr(t) {
|
|
573
577
|
let e = !0;
|
|
574
578
|
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 && "asset" in t, e = e && "contractPolicy" in t, e = e && "transferProcesses" in t, e;
|
|
575
579
|
}
|
|
576
|
-
function
|
|
580
|
+
function ft(t) {
|
|
577
581
|
return gt(t);
|
|
578
582
|
}
|
|
579
583
|
function gt(t, e) {
|
|
@@ -607,7 +611,7 @@ function lt(t) {
|
|
|
607
611
|
)
|
|
608
612
|
};
|
|
609
613
|
}
|
|
610
|
-
function
|
|
614
|
+
function er(t) {
|
|
611
615
|
let e = !0;
|
|
612
616
|
return e = e && "contractAgreements" in t, e;
|
|
613
617
|
}
|
|
@@ -617,11 +621,11 @@ function mt(t) {
|
|
|
617
621
|
function yt(t, e) {
|
|
618
622
|
return t == null ? t : {
|
|
619
623
|
contractAgreements: t.contractAgreements.map(
|
|
620
|
-
|
|
624
|
+
ft
|
|
621
625
|
)
|
|
622
626
|
};
|
|
623
627
|
}
|
|
624
|
-
function
|
|
628
|
+
function rr(t) {
|
|
625
629
|
if (t !== void 0)
|
|
626
630
|
return t === null ? null : {
|
|
627
631
|
contractAgreements: t.contractAgreements.map(
|
|
@@ -629,7 +633,7 @@ function tr(t) {
|
|
|
629
633
|
)
|
|
630
634
|
};
|
|
631
635
|
}
|
|
632
|
-
const
|
|
636
|
+
const nr = {
|
|
633
637
|
Value: "VALUE",
|
|
634
638
|
ValueList: "VALUE_LIST"
|
|
635
639
|
};
|
|
@@ -639,23 +643,23 @@ function Pt(t) {
|
|
|
639
643
|
function ht(t, e) {
|
|
640
644
|
return t;
|
|
641
645
|
}
|
|
642
|
-
function
|
|
646
|
+
function ir(t) {
|
|
643
647
|
return t;
|
|
644
648
|
}
|
|
645
|
-
function
|
|
649
|
+
function or(t) {
|
|
646
650
|
return !0;
|
|
647
651
|
}
|
|
648
|
-
function
|
|
649
|
-
return
|
|
652
|
+
function wt(t) {
|
|
653
|
+
return It(t);
|
|
650
654
|
}
|
|
651
|
-
function
|
|
655
|
+
function It(t, e) {
|
|
652
656
|
return t == null ? t : {
|
|
653
|
-
type:
|
|
654
|
-
value:
|
|
655
|
-
valueList:
|
|
657
|
+
type: o(t, "type") ? Pt(t.type) : void 0,
|
|
658
|
+
value: o(t, "value") ? t.value : void 0,
|
|
659
|
+
valueList: o(t, "valueList") ? t.valueList : void 0
|
|
656
660
|
};
|
|
657
661
|
}
|
|
658
|
-
function
|
|
662
|
+
function Ct(t) {
|
|
659
663
|
if (t !== void 0)
|
|
660
664
|
return t === null ? null : {
|
|
661
665
|
type: t.type,
|
|
@@ -663,21 +667,21 @@ function wt(t) {
|
|
|
663
667
|
valueList: t.valueList
|
|
664
668
|
};
|
|
665
669
|
}
|
|
666
|
-
const
|
|
670
|
+
const ar = {
|
|
667
671
|
Eq: "EQ",
|
|
668
672
|
In: "IN",
|
|
669
673
|
Like: "LIKE"
|
|
670
674
|
};
|
|
671
|
-
function
|
|
672
|
-
return
|
|
675
|
+
function St(t) {
|
|
676
|
+
return Dt(t);
|
|
673
677
|
}
|
|
674
|
-
function
|
|
678
|
+
function Dt(t, e) {
|
|
675
679
|
return t;
|
|
676
680
|
}
|
|
677
|
-
function
|
|
681
|
+
function sr(t) {
|
|
678
682
|
return t;
|
|
679
683
|
}
|
|
680
|
-
function
|
|
684
|
+
function cr(t) {
|
|
681
685
|
let e = !0;
|
|
682
686
|
return e = e && "operandLeft" in t, e = e && "operator" in t, e = e && "operandRight" in t, e;
|
|
683
687
|
}
|
|
@@ -687,8 +691,8 @@ function q(t) {
|
|
|
687
691
|
function Ot(t, e) {
|
|
688
692
|
return t == null ? t : {
|
|
689
693
|
operandLeft: t.operandLeft,
|
|
690
|
-
operator:
|
|
691
|
-
operandRight:
|
|
694
|
+
operator: St(t.operator),
|
|
695
|
+
operandRight: wt(t.operandRight)
|
|
692
696
|
};
|
|
693
697
|
}
|
|
694
698
|
function F(t) {
|
|
@@ -696,10 +700,10 @@ function F(t) {
|
|
|
696
700
|
return t === null ? null : {
|
|
697
701
|
operandLeft: t.operandLeft,
|
|
698
702
|
operator: t.operator,
|
|
699
|
-
operandRight:
|
|
703
|
+
operandRight: Ct(t.operandRight)
|
|
700
704
|
};
|
|
701
705
|
}
|
|
702
|
-
function
|
|
706
|
+
function dr(t) {
|
|
703
707
|
let e = !0;
|
|
704
708
|
return e = e && "contractDefinitionId" in t, e = e && "accessPolicyId" in t, e = e && "contractPolicyId" in t, e = e && "assetSelector" in t, e;
|
|
705
709
|
}
|
|
@@ -727,7 +731,7 @@ function At(t) {
|
|
|
727
731
|
)
|
|
728
732
|
};
|
|
729
733
|
}
|
|
730
|
-
function
|
|
734
|
+
function ur(t) {
|
|
731
735
|
let e = !0;
|
|
732
736
|
return e = e && "contractDefinitions" in t, e;
|
|
733
737
|
}
|
|
@@ -741,7 +745,7 @@ function Rt(t, e) {
|
|
|
741
745
|
)
|
|
742
746
|
};
|
|
743
747
|
}
|
|
744
|
-
function
|
|
748
|
+
function pr(t) {
|
|
745
749
|
if (t !== void 0)
|
|
746
750
|
return t === null ? null : {
|
|
747
751
|
contractDefinitions: t.contractDefinitions.map(
|
|
@@ -749,11 +753,11 @@ function dr(t) {
|
|
|
749
753
|
)
|
|
750
754
|
};
|
|
751
755
|
}
|
|
752
|
-
function
|
|
756
|
+
function fr(t) {
|
|
753
757
|
let e = !0;
|
|
754
758
|
return e = e && "contractDefinitionId" in t, e = e && "contractPolicyId" in t, e = e && "accessPolicyId" in t, e = e && "assetSelector" in t, e;
|
|
755
759
|
}
|
|
756
|
-
function
|
|
760
|
+
function gr(t) {
|
|
757
761
|
return Ut(t);
|
|
758
762
|
}
|
|
759
763
|
function Ut(t, e) {
|
|
@@ -777,11 +781,11 @@ function qt(t) {
|
|
|
777
781
|
)
|
|
778
782
|
};
|
|
779
783
|
}
|
|
780
|
-
function
|
|
784
|
+
function lr(t) {
|
|
781
785
|
let e = !0;
|
|
782
786
|
return e = e && "counterPartyAddress" in t, e = e && "counterPartyParticipantId" in t, e = e && "contractOfferId" in t, e = e && "policyJsonLd" in t, e = e && "assetId" in t, e;
|
|
783
787
|
}
|
|
784
|
-
function
|
|
788
|
+
function mr(t) {
|
|
785
789
|
return Ft(t);
|
|
786
790
|
}
|
|
787
791
|
function Ft(t, e) {
|
|
@@ -793,7 +797,7 @@ function Ft(t, e) {
|
|
|
793
797
|
assetId: t.assetId
|
|
794
798
|
};
|
|
795
799
|
}
|
|
796
|
-
function
|
|
800
|
+
function bt(t) {
|
|
797
801
|
if (t !== void 0)
|
|
798
802
|
return t === null ? null : {
|
|
799
803
|
counterPartyAddress: t.counterPartyAddress,
|
|
@@ -803,32 +807,32 @@ function Et(t) {
|
|
|
803
807
|
assetId: t.assetId
|
|
804
808
|
};
|
|
805
809
|
}
|
|
806
|
-
const
|
|
810
|
+
const yr = {
|
|
807
811
|
InProgress: "IN_PROGRESS",
|
|
808
812
|
Agreed: "AGREED",
|
|
809
813
|
Terminated: "TERMINATED"
|
|
810
814
|
};
|
|
811
|
-
function
|
|
812
|
-
return
|
|
815
|
+
function Et(t) {
|
|
816
|
+
return Mt(t);
|
|
813
817
|
}
|
|
814
|
-
function
|
|
818
|
+
function Mt(t, e) {
|
|
815
819
|
return t;
|
|
816
820
|
}
|
|
817
|
-
function
|
|
821
|
+
function Pr(t) {
|
|
818
822
|
return t;
|
|
819
823
|
}
|
|
820
|
-
function
|
|
824
|
+
function hr(t) {
|
|
821
825
|
let e = !0;
|
|
822
826
|
return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
|
|
823
827
|
}
|
|
824
|
-
function
|
|
828
|
+
function Lt(t) {
|
|
825
829
|
return Ht(t);
|
|
826
830
|
}
|
|
827
831
|
function Ht(t, e) {
|
|
828
832
|
return t == null ? t : {
|
|
829
833
|
name: t.name,
|
|
830
834
|
code: t.code,
|
|
831
|
-
simplifiedState:
|
|
835
|
+
simplifiedState: Et(
|
|
832
836
|
t.simplifiedState
|
|
833
837
|
)
|
|
834
838
|
};
|
|
@@ -841,7 +845,7 @@ function kt(t) {
|
|
|
841
845
|
simplifiedState: t.simplifiedState
|
|
842
846
|
};
|
|
843
847
|
}
|
|
844
|
-
function
|
|
848
|
+
function wr(t) {
|
|
845
849
|
let e = !0;
|
|
846
850
|
return e = e && "tokenUrl" in t, e = e && "jwksUrl" in t, e;
|
|
847
851
|
}
|
|
@@ -861,21 +865,21 @@ function Kt(t) {
|
|
|
861
865
|
jwksUrl: t.jwksUrl
|
|
862
866
|
};
|
|
863
867
|
}
|
|
864
|
-
function
|
|
868
|
+
function Ir(t) {
|
|
865
869
|
let e = !0;
|
|
866
870
|
return e = e && "url" in t, e = e && "tokenUrl" in t, e = e && "authorityId" in t, e;
|
|
867
871
|
}
|
|
868
872
|
function $t(t) {
|
|
869
|
-
return
|
|
873
|
+
return vt(t);
|
|
870
874
|
}
|
|
871
|
-
function
|
|
875
|
+
function vt(t, e) {
|
|
872
876
|
return t == null ? t : {
|
|
873
877
|
url: t.url,
|
|
874
878
|
tokenUrl: t.tokenUrl,
|
|
875
879
|
authorityId: t.authorityId
|
|
876
880
|
};
|
|
877
881
|
}
|
|
878
|
-
function
|
|
882
|
+
function _t(t) {
|
|
879
883
|
if (t !== void 0)
|
|
880
884
|
return t === null ? null : {
|
|
881
885
|
url: t.url,
|
|
@@ -883,14 +887,14 @@ function Qt(t) {
|
|
|
883
887
|
authorityId: t.authorityId
|
|
884
888
|
};
|
|
885
889
|
}
|
|
886
|
-
function
|
|
890
|
+
function Cr(t) {
|
|
887
891
|
let e = !0;
|
|
888
892
|
return e = e && "numTotal" in t, e = e && "numRunning" in t, e = e && "numOk" in t, e = e && "numError" in t, e;
|
|
889
893
|
}
|
|
890
|
-
function
|
|
891
|
-
return
|
|
894
|
+
function I(t) {
|
|
895
|
+
return Qt(t);
|
|
892
896
|
}
|
|
893
|
-
function
|
|
897
|
+
function Qt(t, e) {
|
|
894
898
|
return t == null ? t : {
|
|
895
899
|
numTotal: t.numTotal,
|
|
896
900
|
numRunning: t.numRunning,
|
|
@@ -898,7 +902,7 @@ function Vt(t, e) {
|
|
|
898
902
|
numError: t.numError
|
|
899
903
|
};
|
|
900
904
|
}
|
|
901
|
-
function
|
|
905
|
+
function C(t) {
|
|
902
906
|
if (t !== void 0)
|
|
903
907
|
return t === null ? null : {
|
|
904
908
|
numTotal: t.numTotal,
|
|
@@ -907,24 +911,24 @@ function w(t) {
|
|
|
907
911
|
numError: t.numError
|
|
908
912
|
};
|
|
909
913
|
}
|
|
910
|
-
function
|
|
914
|
+
function Sr(t) {
|
|
911
915
|
let e = !0;
|
|
912
916
|
return e = e && "numAssets" in t, e = e && "numPolicies" in t, e = e && "numContractDefinitions" in t, e = e && "numContractAgreementsConsuming" in t, e = e && "numContractAgreementsProviding" in t, e = e && "transferProcessesConsuming" in t, e = e && "transferProcessesProviding" in t, e = e && "connectorEndpoint" in t, e = e && "connectorParticipantId" in t, e = e && "connectorTitle" in t, e = e && "connectorDescription" in t, e = e && "connectorCuratorUrl" in t, e = e && "connectorCuratorName" in t, e = e && "connectorMaintainerUrl" in t, e = e && "connectorMaintainerName" in t, e;
|
|
913
917
|
}
|
|
914
|
-
function
|
|
915
|
-
return
|
|
918
|
+
function Vt(t) {
|
|
919
|
+
return Bt(t);
|
|
916
920
|
}
|
|
917
|
-
function
|
|
921
|
+
function Bt(t, e) {
|
|
918
922
|
return t == null ? t : {
|
|
919
923
|
numAssets: t.numAssets,
|
|
920
924
|
numPolicies: t.numPolicies,
|
|
921
925
|
numContractDefinitions: t.numContractDefinitions,
|
|
922
926
|
numContractAgreementsConsuming: t.numContractAgreementsConsuming,
|
|
923
927
|
numContractAgreementsProviding: t.numContractAgreementsProviding,
|
|
924
|
-
transferProcessesConsuming:
|
|
928
|
+
transferProcessesConsuming: I(
|
|
925
929
|
t.transferProcessesConsuming
|
|
926
930
|
),
|
|
927
|
-
transferProcessesProviding:
|
|
931
|
+
transferProcessesProviding: I(
|
|
928
932
|
t.transferProcessesProviding
|
|
929
933
|
),
|
|
930
934
|
connectorEndpoint: t.connectorEndpoint,
|
|
@@ -935,11 +939,11 @@ function zt(t, e) {
|
|
|
935
939
|
connectorCuratorName: t.connectorCuratorName,
|
|
936
940
|
connectorMaintainerUrl: t.connectorMaintainerUrl,
|
|
937
941
|
connectorMaintainerName: t.connectorMaintainerName,
|
|
938
|
-
connectorDapsConfig:
|
|
939
|
-
connectorMiwConfig:
|
|
942
|
+
connectorDapsConfig: o(t, "connectorDapsConfig") ? xt(t.connectorDapsConfig) : void 0,
|
|
943
|
+
connectorMiwConfig: o(t, "connectorMiwConfig") ? $t(t.connectorMiwConfig) : void 0
|
|
940
944
|
};
|
|
941
945
|
}
|
|
942
|
-
function
|
|
946
|
+
function Dr(t) {
|
|
943
947
|
if (t !== void 0)
|
|
944
948
|
return t === null ? null : {
|
|
945
949
|
numAssets: t.numAssets,
|
|
@@ -947,10 +951,10 @@ function wr(t) {
|
|
|
947
951
|
numContractDefinitions: t.numContractDefinitions,
|
|
948
952
|
numContractAgreementsConsuming: t.numContractAgreementsConsuming,
|
|
949
953
|
numContractAgreementsProviding: t.numContractAgreementsProviding,
|
|
950
|
-
transferProcessesConsuming:
|
|
954
|
+
transferProcessesConsuming: C(
|
|
951
955
|
t.transferProcessesConsuming
|
|
952
956
|
),
|
|
953
|
-
transferProcessesProviding:
|
|
957
|
+
transferProcessesProviding: C(
|
|
954
958
|
t.transferProcessesProviding
|
|
955
959
|
),
|
|
956
960
|
connectorEndpoint: t.connectorEndpoint,
|
|
@@ -964,64 +968,64 @@ function wr(t) {
|
|
|
964
968
|
connectorDapsConfig: Kt(
|
|
965
969
|
t.connectorDapsConfig
|
|
966
970
|
),
|
|
967
|
-
connectorMiwConfig:
|
|
971
|
+
connectorMiwConfig: _t(t.connectorMiwConfig)
|
|
968
972
|
};
|
|
969
973
|
}
|
|
970
|
-
function
|
|
974
|
+
function Or(t) {
|
|
971
975
|
let e = !0;
|
|
972
976
|
return e = e && "id" in t, e = e && "lastUpdatedDate" in t, e;
|
|
973
977
|
}
|
|
974
978
|
function d(t) {
|
|
975
|
-
return
|
|
979
|
+
return zt(t);
|
|
976
980
|
}
|
|
977
|
-
function
|
|
981
|
+
function zt(t, e) {
|
|
978
982
|
return t == null ? t : {
|
|
979
983
|
id: t.id,
|
|
980
984
|
lastUpdatedDate: new Date(t.lastUpdatedDate)
|
|
981
985
|
};
|
|
982
986
|
}
|
|
983
|
-
function
|
|
987
|
+
function Tr(t) {
|
|
984
988
|
if (t !== void 0)
|
|
985
989
|
return t === null ? null : {
|
|
986
990
|
id: t.id,
|
|
987
991
|
lastUpdatedDate: t.lastUpdatedDate.toISOString()
|
|
988
992
|
};
|
|
989
993
|
}
|
|
990
|
-
function
|
|
994
|
+
function Nr(t) {
|
|
991
995
|
let e = !0;
|
|
992
996
|
return e = e && "contractAgreementId" in t, e = e && "transferProcessRequestJsonLd" in t, e;
|
|
993
997
|
}
|
|
994
|
-
function
|
|
995
|
-
return
|
|
998
|
+
function Ar(t) {
|
|
999
|
+
return Xt(t);
|
|
996
1000
|
}
|
|
997
|
-
function
|
|
1001
|
+
function Xt(t, e) {
|
|
998
1002
|
return t == null ? t : {
|
|
999
1003
|
contractAgreementId: t.contractAgreementId,
|
|
1000
1004
|
transferProcessRequestJsonLd: t.transferProcessRequestJsonLd
|
|
1001
1005
|
};
|
|
1002
1006
|
}
|
|
1003
|
-
function
|
|
1007
|
+
function Yt(t) {
|
|
1004
1008
|
if (t !== void 0)
|
|
1005
1009
|
return t === null ? null : {
|
|
1006
1010
|
contractAgreementId: t.contractAgreementId,
|
|
1007
1011
|
transferProcessRequestJsonLd: t.transferProcessRequestJsonLd
|
|
1008
1012
|
};
|
|
1009
1013
|
}
|
|
1010
|
-
function
|
|
1014
|
+
function Jr(t) {
|
|
1011
1015
|
let e = !0;
|
|
1012
1016
|
return e = e && "contractAgreementId" in t, e = e && "dataSinkProperties" in t, e = e && "transferProcessProperties" in t, e;
|
|
1013
1017
|
}
|
|
1014
|
-
function
|
|
1015
|
-
return
|
|
1018
|
+
function Rr(t) {
|
|
1019
|
+
return Wt(t);
|
|
1016
1020
|
}
|
|
1017
|
-
function
|
|
1021
|
+
function Wt(t, e) {
|
|
1018
1022
|
return t == null ? t : {
|
|
1019
1023
|
contractAgreementId: t.contractAgreementId,
|
|
1020
1024
|
dataSinkProperties: t.dataSinkProperties,
|
|
1021
1025
|
transferProcessProperties: t.transferProcessProperties
|
|
1022
1026
|
};
|
|
1023
1027
|
}
|
|
1024
|
-
function
|
|
1028
|
+
function Zt(t) {
|
|
1025
1029
|
if (t !== void 0)
|
|
1026
1030
|
return t === null ? null : {
|
|
1027
1031
|
contractAgreementId: t.contractAgreementId,
|
|
@@ -1029,7 +1033,7 @@ function vt(t) {
|
|
|
1029
1033
|
transferProcessProperties: t.transferProcessProperties
|
|
1030
1034
|
};
|
|
1031
1035
|
}
|
|
1032
|
-
function
|
|
1036
|
+
function Ur(t) {
|
|
1033
1037
|
let e = !0;
|
|
1034
1038
|
return e = e && "incomingTransferProcessCounts" in t, e = e && "outgoingTransferProcessCounts" in t, e;
|
|
1035
1039
|
}
|
|
@@ -1049,7 +1053,7 @@ function ee(t) {
|
|
|
1049
1053
|
outgoingTransferProcessCounts: t.outgoingTransferProcessCounts
|
|
1050
1054
|
};
|
|
1051
1055
|
}
|
|
1052
|
-
function
|
|
1056
|
+
function qr(t) {
|
|
1053
1057
|
let e = !0;
|
|
1054
1058
|
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;
|
|
1055
1059
|
}
|
|
@@ -1067,7 +1071,7 @@ function ne(t, e) {
|
|
|
1067
1071
|
)
|
|
1068
1072
|
};
|
|
1069
1073
|
}
|
|
1070
|
-
function
|
|
1074
|
+
function Fr(t) {
|
|
1071
1075
|
if (t !== void 0)
|
|
1072
1076
|
return t === null ? null : {
|
|
1073
1077
|
assetsCount: t.assetsCount,
|
|
@@ -1079,7 +1083,7 @@ function Ur(t) {
|
|
|
1079
1083
|
)
|
|
1080
1084
|
};
|
|
1081
1085
|
}
|
|
1082
|
-
function
|
|
1086
|
+
function br(t) {
|
|
1083
1087
|
return !0;
|
|
1084
1088
|
}
|
|
1085
1089
|
function ie(t) {
|
|
@@ -1087,7 +1091,7 @@ function ie(t) {
|
|
|
1087
1091
|
}
|
|
1088
1092
|
function oe(t, e) {
|
|
1089
1093
|
return t == null ? t : {
|
|
1090
|
-
constraints:
|
|
1094
|
+
constraints: o(t, "constraints") ? t.constraints.map(
|
|
1091
1095
|
R
|
|
1092
1096
|
) : void 0
|
|
1093
1097
|
};
|
|
@@ -1100,11 +1104,11 @@ function ae(t) {
|
|
|
1100
1104
|
)
|
|
1101
1105
|
};
|
|
1102
1106
|
}
|
|
1103
|
-
function
|
|
1107
|
+
function Er(t) {
|
|
1104
1108
|
let e = !0;
|
|
1105
1109
|
return e = e && "policyDefinitionId" in t, e = e && "policy" in t, e;
|
|
1106
1110
|
}
|
|
1107
|
-
function
|
|
1111
|
+
function Mr(t) {
|
|
1108
1112
|
return se(t);
|
|
1109
1113
|
}
|
|
1110
1114
|
function se(t, e) {
|
|
@@ -1120,7 +1124,7 @@ function ce(t) {
|
|
|
1120
1124
|
policy: ae(t.policy)
|
|
1121
1125
|
};
|
|
1122
1126
|
}
|
|
1123
|
-
function
|
|
1127
|
+
function Lr(t) {
|
|
1124
1128
|
let e = !0;
|
|
1125
1129
|
return e = e && "policyDefinitionId" in t, e = e && "policy" in t, e;
|
|
1126
1130
|
}
|
|
@@ -1133,18 +1137,18 @@ function ue(t, e) {
|
|
|
1133
1137
|
policy: y(t.policy)
|
|
1134
1138
|
};
|
|
1135
1139
|
}
|
|
1136
|
-
function
|
|
1140
|
+
function pe(t) {
|
|
1137
1141
|
if (t !== void 0)
|
|
1138
1142
|
return t === null ? null : {
|
|
1139
1143
|
policyDefinitionId: t.policyDefinitionId,
|
|
1140
1144
|
policy: P(t.policy)
|
|
1141
1145
|
};
|
|
1142
1146
|
}
|
|
1143
|
-
function
|
|
1147
|
+
function Hr(t) {
|
|
1144
1148
|
let e = !0;
|
|
1145
1149
|
return e = e && "policies" in t, e;
|
|
1146
1150
|
}
|
|
1147
|
-
function
|
|
1151
|
+
function fe(t) {
|
|
1148
1152
|
return ge(t);
|
|
1149
1153
|
}
|
|
1150
1154
|
function ge(t, e) {
|
|
@@ -1154,13 +1158,13 @@ function ge(t, e) {
|
|
|
1154
1158
|
)
|
|
1155
1159
|
};
|
|
1156
1160
|
}
|
|
1157
|
-
function
|
|
1161
|
+
function kr(t) {
|
|
1158
1162
|
if (t !== void 0)
|
|
1159
1163
|
return t === null ? null : {
|
|
1160
|
-
policies: t.policies.map(
|
|
1164
|
+
policies: t.policies.map(pe)
|
|
1161
1165
|
};
|
|
1162
1166
|
}
|
|
1163
|
-
function
|
|
1167
|
+
function xr(t) {
|
|
1164
1168
|
let e = !0;
|
|
1165
1169
|
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 && "counterPartyParticipantId" in t, e = e && "assetName" in t, e = e && "assetId" in t, e;
|
|
1166
1170
|
}
|
|
@@ -1179,7 +1183,7 @@ function me(t, e) {
|
|
|
1179
1183
|
counterPartyParticipantId: t.counterPartyParticipantId,
|
|
1180
1184
|
assetName: t.assetName,
|
|
1181
1185
|
assetId: t.assetId,
|
|
1182
|
-
errorMessage:
|
|
1186
|
+
errorMessage: o(t, "errorMessage") ? t.errorMessage : void 0
|
|
1183
1187
|
};
|
|
1184
1188
|
}
|
|
1185
1189
|
function ye(t) {
|
|
@@ -1198,7 +1202,7 @@ function ye(t) {
|
|
|
1198
1202
|
errorMessage: t.errorMessage
|
|
1199
1203
|
};
|
|
1200
1204
|
}
|
|
1201
|
-
function
|
|
1205
|
+
function Gr(t) {
|
|
1202
1206
|
let e = !0;
|
|
1203
1207
|
return e = e && "transferEntries" in t, e;
|
|
1204
1208
|
}
|
|
@@ -1212,7 +1216,7 @@ function he(t, e) {
|
|
|
1212
1216
|
)
|
|
1213
1217
|
};
|
|
1214
1218
|
}
|
|
1215
|
-
function
|
|
1219
|
+
function Kr(t) {
|
|
1216
1220
|
if (t !== void 0)
|
|
1217
1221
|
return t === null ? null : {
|
|
1218
1222
|
transferEntries: t.transferEntries.map(
|
|
@@ -1220,38 +1224,38 @@ function xr(t) {
|
|
|
1220
1224
|
)
|
|
1221
1225
|
};
|
|
1222
1226
|
}
|
|
1223
|
-
function
|
|
1227
|
+
function $r(t) {
|
|
1224
1228
|
let e = !0;
|
|
1225
1229
|
return e = e && "id" in t, e = e && "dataAddressProperties" in t, e;
|
|
1226
1230
|
}
|
|
1227
|
-
function
|
|
1228
|
-
return
|
|
1231
|
+
function vr(t) {
|
|
1232
|
+
return we(t);
|
|
1229
1233
|
}
|
|
1230
|
-
function
|
|
1234
|
+
function we(t, e) {
|
|
1231
1235
|
return t == null ? t : {
|
|
1232
1236
|
id: t.id,
|
|
1233
|
-
title:
|
|
1234
|
-
language:
|
|
1235
|
-
description:
|
|
1236
|
-
publisherHomepage:
|
|
1237
|
-
licenseUrl:
|
|
1238
|
-
version:
|
|
1239
|
-
keywords:
|
|
1240
|
-
mediaType:
|
|
1241
|
-
landingPageUrl:
|
|
1242
|
-
dataCategory:
|
|
1243
|
-
dataSubcategory:
|
|
1244
|
-
dataModel:
|
|
1245
|
-
geoReferenceMethod:
|
|
1246
|
-
transportMode:
|
|
1237
|
+
title: o(t, "title") ? t.title : void 0,
|
|
1238
|
+
language: o(t, "language") ? t.language : void 0,
|
|
1239
|
+
description: o(t, "description") ? t.description : void 0,
|
|
1240
|
+
publisherHomepage: o(t, "publisherHomepage") ? t.publisherHomepage : void 0,
|
|
1241
|
+
licenseUrl: o(t, "licenseUrl") ? t.licenseUrl : void 0,
|
|
1242
|
+
version: o(t, "version") ? t.version : void 0,
|
|
1243
|
+
keywords: o(t, "keywords") ? t.keywords : void 0,
|
|
1244
|
+
mediaType: o(t, "mediaType") ? t.mediaType : void 0,
|
|
1245
|
+
landingPageUrl: o(t, "landingPageUrl") ? t.landingPageUrl : void 0,
|
|
1246
|
+
dataCategory: o(t, "dataCategory") ? t.dataCategory : void 0,
|
|
1247
|
+
dataSubcategory: o(t, "dataSubcategory") ? t.dataSubcategory : void 0,
|
|
1248
|
+
dataModel: o(t, "dataModel") ? t.dataModel : void 0,
|
|
1249
|
+
geoReferenceMethod: o(t, "geoReferenceMethod") ? t.geoReferenceMethod : void 0,
|
|
1250
|
+
transportMode: o(t, "transportMode") ? t.transportMode : void 0,
|
|
1247
1251
|
dataAddressProperties: t.dataAddressProperties,
|
|
1248
|
-
additionalProperties:
|
|
1249
|
-
additionalJsonProperties:
|
|
1250
|
-
privateProperties:
|
|
1251
|
-
privateJsonProperties:
|
|
1252
|
+
additionalProperties: o(t, "additionalProperties") ? t.additionalProperties : void 0,
|
|
1253
|
+
additionalJsonProperties: o(t, "additionalJsonProperties") ? t.additionalJsonProperties : void 0,
|
|
1254
|
+
privateProperties: o(t, "privateProperties") ? t.privateProperties : void 0,
|
|
1255
|
+
privateJsonProperties: o(t, "privateJsonProperties") ? t.privateJsonProperties : void 0
|
|
1252
1256
|
};
|
|
1253
1257
|
}
|
|
1254
|
-
function
|
|
1258
|
+
function b(t) {
|
|
1255
1259
|
if (t !== void 0)
|
|
1256
1260
|
return t === null ? null : {
|
|
1257
1261
|
id: t.id,
|
|
@@ -1276,22 +1280,73 @@ function E(t) {
|
|
|
1276
1280
|
privateJsonProperties: t.privateJsonProperties
|
|
1277
1281
|
};
|
|
1278
1282
|
}
|
|
1279
|
-
function
|
|
1283
|
+
function _r(t) {
|
|
1284
|
+
return !0;
|
|
1285
|
+
}
|
|
1286
|
+
function Qr(t) {
|
|
1287
|
+
return Ie(t);
|
|
1288
|
+
}
|
|
1289
|
+
function Ie(t, e) {
|
|
1290
|
+
return t == null ? t : {
|
|
1291
|
+
title: o(t, "title") ? t.title : void 0,
|
|
1292
|
+
language: o(t, "language") ? t.language : void 0,
|
|
1293
|
+
description: o(t, "description") ? t.description : void 0,
|
|
1294
|
+
publisherHomepage: o(t, "publisherHomepage") ? t.publisherHomepage : void 0,
|
|
1295
|
+
licenseUrl: o(t, "licenseUrl") ? t.licenseUrl : void 0,
|
|
1296
|
+
version: o(t, "version") ? t.version : void 0,
|
|
1297
|
+
keywords: o(t, "keywords") ? t.keywords : void 0,
|
|
1298
|
+
mediaType: o(t, "mediaType") ? t.mediaType : void 0,
|
|
1299
|
+
landingPageUrl: o(t, "landingPageUrl") ? t.landingPageUrl : void 0,
|
|
1300
|
+
dataCategory: o(t, "dataCategory") ? t.dataCategory : void 0,
|
|
1301
|
+
dataSubcategory: o(t, "dataSubcategory") ? t.dataSubcategory : void 0,
|
|
1302
|
+
dataModel: o(t, "dataModel") ? t.dataModel : void 0,
|
|
1303
|
+
geoReferenceMethod: o(t, "geoReferenceMethod") ? t.geoReferenceMethod : void 0,
|
|
1304
|
+
transportMode: o(t, "transportMode") ? t.transportMode : void 0,
|
|
1305
|
+
additionalProperties: o(t, "additionalProperties") ? t.additionalProperties : void 0,
|
|
1306
|
+
additionalJsonProperties: o(t, "additionalJsonProperties") ? t.additionalJsonProperties : void 0,
|
|
1307
|
+
privateProperties: o(t, "privateProperties") ? t.privateProperties : void 0,
|
|
1308
|
+
privateJsonProperties: o(t, "privateJsonProperties") ? t.privateJsonProperties : void 0
|
|
1309
|
+
};
|
|
1310
|
+
}
|
|
1311
|
+
function Ce(t) {
|
|
1312
|
+
if (t !== void 0)
|
|
1313
|
+
return t === null ? null : {
|
|
1314
|
+
title: t.title,
|
|
1315
|
+
language: t.language,
|
|
1316
|
+
description: t.description,
|
|
1317
|
+
publisherHomepage: t.publisherHomepage,
|
|
1318
|
+
licenseUrl: t.licenseUrl,
|
|
1319
|
+
version: t.version,
|
|
1320
|
+
keywords: t.keywords,
|
|
1321
|
+
mediaType: t.mediaType,
|
|
1322
|
+
landingPageUrl: t.landingPageUrl,
|
|
1323
|
+
dataCategory: t.dataCategory,
|
|
1324
|
+
dataSubcategory: t.dataSubcategory,
|
|
1325
|
+
dataModel: t.dataModel,
|
|
1326
|
+
geoReferenceMethod: t.geoReferenceMethod,
|
|
1327
|
+
transportMode: t.transportMode,
|
|
1328
|
+
additionalProperties: t.additionalProperties,
|
|
1329
|
+
additionalJsonProperties: t.additionalJsonProperties,
|
|
1330
|
+
privateProperties: t.privateProperties,
|
|
1331
|
+
privateJsonProperties: t.privateJsonProperties
|
|
1332
|
+
};
|
|
1333
|
+
}
|
|
1334
|
+
function Vr(t) {
|
|
1280
1335
|
let e = !0;
|
|
1281
1336
|
return e = e && "contractNegotiationId" in t, e = e && "createdAt" in t, e = e && "state" in t, e;
|
|
1282
1337
|
}
|
|
1283
|
-
function
|
|
1284
|
-
return
|
|
1338
|
+
function S(t) {
|
|
1339
|
+
return Se(t);
|
|
1285
1340
|
}
|
|
1286
|
-
function
|
|
1341
|
+
function Se(t, e) {
|
|
1287
1342
|
return t == null ? t : {
|
|
1288
1343
|
contractNegotiationId: t.contractNegotiationId,
|
|
1289
1344
|
createdAt: new Date(t.createdAt),
|
|
1290
|
-
contractAgreementId:
|
|
1291
|
-
state:
|
|
1345
|
+
contractAgreementId: o(t, "contractAgreementId") ? t.contractAgreementId : void 0,
|
|
1346
|
+
state: Lt(t.state)
|
|
1292
1347
|
};
|
|
1293
1348
|
}
|
|
1294
|
-
function
|
|
1349
|
+
function Br(t) {
|
|
1295
1350
|
if (t !== void 0)
|
|
1296
1351
|
return t === null ? null : {
|
|
1297
1352
|
contractNegotiationId: t.contractNegotiationId,
|
|
@@ -1300,55 +1355,55 @@ function _r(t) {
|
|
|
1300
1355
|
state: kt(t.state)
|
|
1301
1356
|
};
|
|
1302
1357
|
}
|
|
1303
|
-
function
|
|
1358
|
+
function zr(t) {
|
|
1304
1359
|
let e = !0;
|
|
1305
1360
|
return e = e && "contractOfferId" in t, e = e && "policy" in t, e;
|
|
1306
1361
|
}
|
|
1307
|
-
function
|
|
1308
|
-
return
|
|
1362
|
+
function De(t) {
|
|
1363
|
+
return Oe(t);
|
|
1309
1364
|
}
|
|
1310
|
-
function
|
|
1365
|
+
function Oe(t, e) {
|
|
1311
1366
|
return t == null ? t : {
|
|
1312
1367
|
contractOfferId: t.contractOfferId,
|
|
1313
1368
|
policy: y(t.policy)
|
|
1314
1369
|
};
|
|
1315
1370
|
}
|
|
1316
|
-
function
|
|
1371
|
+
function Te(t) {
|
|
1317
1372
|
if (t !== void 0)
|
|
1318
1373
|
return t === null ? null : {
|
|
1319
1374
|
contractOfferId: t.contractOfferId,
|
|
1320
1375
|
policy: P(t.policy)
|
|
1321
1376
|
};
|
|
1322
1377
|
}
|
|
1323
|
-
function
|
|
1378
|
+
function Xr(t) {
|
|
1324
1379
|
let e = !0;
|
|
1325
1380
|
return e = e && "endpoint" in t, e = e && "participantId" in t, e = e && "asset" in t, e = e && "contractOffers" in t, e;
|
|
1326
1381
|
}
|
|
1327
|
-
function
|
|
1328
|
-
return
|
|
1382
|
+
function Ne(t) {
|
|
1383
|
+
return Ae(t);
|
|
1329
1384
|
}
|
|
1330
|
-
function
|
|
1385
|
+
function Ae(t, e) {
|
|
1331
1386
|
return t == null ? t : {
|
|
1332
1387
|
endpoint: t.endpoint,
|
|
1333
1388
|
participantId: t.participantId,
|
|
1334
1389
|
asset: l(t.asset),
|
|
1335
1390
|
contractOffers: t.contractOffers.map(
|
|
1336
|
-
|
|
1391
|
+
De
|
|
1337
1392
|
)
|
|
1338
1393
|
};
|
|
1339
1394
|
}
|
|
1340
|
-
function
|
|
1395
|
+
function Yr(t) {
|
|
1341
1396
|
if (t !== void 0)
|
|
1342
1397
|
return t === null ? null : {
|
|
1343
1398
|
endpoint: t.endpoint,
|
|
1344
1399
|
participantId: t.participantId,
|
|
1345
1400
|
asset: m(t.asset),
|
|
1346
1401
|
contractOffers: t.contractOffers.map(
|
|
1347
|
-
|
|
1402
|
+
Te
|
|
1348
1403
|
)
|
|
1349
1404
|
};
|
|
1350
1405
|
}
|
|
1351
|
-
class
|
|
1406
|
+
class Je extends g {
|
|
1352
1407
|
/**
|
|
1353
1408
|
* Available and used resources of a connector.
|
|
1354
1409
|
*/
|
|
@@ -1364,7 +1419,7 @@ class Ne extends g {
|
|
|
1364
1419
|
);
|
|
1365
1420
|
return new c(
|
|
1366
1421
|
i,
|
|
1367
|
-
(
|
|
1422
|
+
(a) => z(a)
|
|
1368
1423
|
);
|
|
1369
1424
|
}
|
|
1370
1425
|
/**
|
|
@@ -1379,18 +1434,18 @@ class Ne extends g {
|
|
|
1379
1434
|
*/
|
|
1380
1435
|
async fileUploadCreateAssetRaw(e, r) {
|
|
1381
1436
|
if (e.blobId === null || e.blobId === void 0)
|
|
1382
|
-
throw new
|
|
1437
|
+
throw new u(
|
|
1383
1438
|
"blobId",
|
|
1384
1439
|
"Required parameter requestParameters.blobId was null or undefined when calling fileUploadCreateAsset."
|
|
1385
1440
|
);
|
|
1386
1441
|
if (e.uiAssetCreateRequest === null || e.uiAssetCreateRequest === void 0)
|
|
1387
|
-
throw new
|
|
1442
|
+
throw new u(
|
|
1388
1443
|
"uiAssetCreateRequest",
|
|
1389
1444
|
"Required parameter requestParameters.uiAssetCreateRequest was null or undefined when calling fileUploadCreateAsset."
|
|
1390
1445
|
);
|
|
1391
1446
|
const n = {}, i = {};
|
|
1392
1447
|
i["Content-Type"] = "application/json";
|
|
1393
|
-
const
|
|
1448
|
+
const a = await this.request(
|
|
1394
1449
|
{
|
|
1395
1450
|
path: "/wrapper/ee/file-upload/blobs/{blobId}/asset".replace(
|
|
1396
1451
|
"{blobId}",
|
|
@@ -1399,13 +1454,13 @@ class Ne extends g {
|
|
|
1399
1454
|
method: "POST",
|
|
1400
1455
|
headers: i,
|
|
1401
1456
|
query: n,
|
|
1402
|
-
body:
|
|
1457
|
+
body: b(
|
|
1403
1458
|
e.uiAssetCreateRequest
|
|
1404
1459
|
)
|
|
1405
1460
|
},
|
|
1406
1461
|
r
|
|
1407
1462
|
);
|
|
1408
|
-
return new
|
|
1463
|
+
return new v(a);
|
|
1409
1464
|
}
|
|
1410
1465
|
/**
|
|
1411
1466
|
* Creates an asset using the uploaded file as data source.
|
|
@@ -1428,7 +1483,7 @@ class Ne extends g {
|
|
|
1428
1483
|
},
|
|
1429
1484
|
e
|
|
1430
1485
|
);
|
|
1431
|
-
return this.isJsonMime(i.headers.get("content-type")) ? new c(i) : new
|
|
1486
|
+
return this.isJsonMime(i.headers.get("content-type")) ? new c(i) : new _(i);
|
|
1432
1487
|
}
|
|
1433
1488
|
/**
|
|
1434
1489
|
* Requests a Blob URL with a SAS Token so that the UI can directly upload the file to the Azure Blob Storage. Returns the Blob ID / Token.
|
|
@@ -1438,27 +1493,27 @@ class Ne extends g {
|
|
|
1438
1493
|
return await (await this.fileUploadRequestSasTokenRaw(e)).value();
|
|
1439
1494
|
}
|
|
1440
1495
|
}
|
|
1441
|
-
class
|
|
1496
|
+
class Re extends g {
|
|
1442
1497
|
/**
|
|
1443
1498
|
* Create a new Asset
|
|
1444
1499
|
*/
|
|
1445
1500
|
async createAssetRaw(e, r) {
|
|
1446
1501
|
const n = {}, i = {};
|
|
1447
1502
|
i["Content-Type"] = "application/json";
|
|
1448
|
-
const
|
|
1503
|
+
const a = await this.request(
|
|
1449
1504
|
{
|
|
1450
1505
|
path: "/wrapper/ui/pages/asset-page/assets",
|
|
1451
1506
|
method: "POST",
|
|
1452
1507
|
headers: i,
|
|
1453
1508
|
query: n,
|
|
1454
|
-
body:
|
|
1509
|
+
body: b(
|
|
1455
1510
|
e.uiAssetCreateRequest
|
|
1456
1511
|
)
|
|
1457
1512
|
},
|
|
1458
1513
|
r
|
|
1459
1514
|
);
|
|
1460
1515
|
return new c(
|
|
1461
|
-
|
|
1516
|
+
a,
|
|
1462
1517
|
(s) => d(s)
|
|
1463
1518
|
);
|
|
1464
1519
|
}
|
|
@@ -1477,7 +1532,7 @@ class Ae extends g {
|
|
|
1477
1532
|
async createContractDefinitionRaw(e, r) {
|
|
1478
1533
|
const n = {}, i = {};
|
|
1479
1534
|
i["Content-Type"] = "application/json";
|
|
1480
|
-
const
|
|
1535
|
+
const a = await this.request(
|
|
1481
1536
|
{
|
|
1482
1537
|
path: "/wrapper/ui/pages/contract-definition-page/contract-definitions",
|
|
1483
1538
|
method: "POST",
|
|
@@ -1490,7 +1545,7 @@ class Ae extends g {
|
|
|
1490
1545
|
r
|
|
1491
1546
|
);
|
|
1492
1547
|
return new c(
|
|
1493
|
-
|
|
1548
|
+
a,
|
|
1494
1549
|
(s) => d(s)
|
|
1495
1550
|
);
|
|
1496
1551
|
}
|
|
@@ -1509,7 +1564,7 @@ class Ae extends g {
|
|
|
1509
1564
|
async createPolicyDefinitionRaw(e, r) {
|
|
1510
1565
|
const n = {}, i = {};
|
|
1511
1566
|
i["Content-Type"] = "application/json";
|
|
1512
|
-
const
|
|
1567
|
+
const a = await this.request(
|
|
1513
1568
|
{
|
|
1514
1569
|
path: "/wrapper/ui/pages/policy-page/policy-definitions",
|
|
1515
1570
|
method: "POST",
|
|
@@ -1522,7 +1577,7 @@ class Ae extends g {
|
|
|
1522
1577
|
r
|
|
1523
1578
|
);
|
|
1524
1579
|
return new c(
|
|
1525
|
-
|
|
1580
|
+
a,
|
|
1526
1581
|
(s) => d(s)
|
|
1527
1582
|
);
|
|
1528
1583
|
}
|
|
@@ -1540,11 +1595,11 @@ class Ae extends g {
|
|
|
1540
1595
|
*/
|
|
1541
1596
|
async deleteAssetRaw(e, r) {
|
|
1542
1597
|
if (e.assetId === null || e.assetId === void 0)
|
|
1543
|
-
throw new
|
|
1598
|
+
throw new u(
|
|
1544
1599
|
"assetId",
|
|
1545
1600
|
"Required parameter requestParameters.assetId was null or undefined when calling deleteAsset."
|
|
1546
1601
|
);
|
|
1547
|
-
const n = {}, i = {},
|
|
1602
|
+
const n = {}, i = {}, a = await this.request(
|
|
1548
1603
|
{
|
|
1549
1604
|
path: "/wrapper/ui/pages/asset-page/assets/{assetId}".replace(
|
|
1550
1605
|
"{assetId}",
|
|
@@ -1557,7 +1612,7 @@ class Ae extends g {
|
|
|
1557
1612
|
r
|
|
1558
1613
|
);
|
|
1559
1614
|
return new c(
|
|
1560
|
-
|
|
1615
|
+
a,
|
|
1561
1616
|
(s) => d(s)
|
|
1562
1617
|
);
|
|
1563
1618
|
}
|
|
@@ -1575,11 +1630,11 @@ class Ae extends g {
|
|
|
1575
1630
|
*/
|
|
1576
1631
|
async deleteContractDefinitionRaw(e, r) {
|
|
1577
1632
|
if (e.contractDefinitionId === null || e.contractDefinitionId === void 0)
|
|
1578
|
-
throw new
|
|
1633
|
+
throw new u(
|
|
1579
1634
|
"contractDefinitionId",
|
|
1580
1635
|
"Required parameter requestParameters.contractDefinitionId was null or undefined when calling deleteContractDefinition."
|
|
1581
1636
|
);
|
|
1582
|
-
const n = {}, i = {},
|
|
1637
|
+
const n = {}, i = {}, a = await this.request(
|
|
1583
1638
|
{
|
|
1584
1639
|
path: "/wrapper/ui/pages/contract-definition-page/contract-definitions/{contractDefinitionId}".replace(
|
|
1585
1640
|
"{contractDefinitionId}",
|
|
@@ -1594,7 +1649,7 @@ class Ae extends g {
|
|
|
1594
1649
|
r
|
|
1595
1650
|
);
|
|
1596
1651
|
return new c(
|
|
1597
|
-
|
|
1652
|
+
a,
|
|
1598
1653
|
(s) => d(s)
|
|
1599
1654
|
);
|
|
1600
1655
|
}
|
|
@@ -1612,11 +1667,11 @@ class Ae extends g {
|
|
|
1612
1667
|
*/
|
|
1613
1668
|
async deletePolicyDefinitionRaw(e, r) {
|
|
1614
1669
|
if (e.policyId === null || e.policyId === void 0)
|
|
1615
|
-
throw new
|
|
1670
|
+
throw new u(
|
|
1616
1671
|
"policyId",
|
|
1617
1672
|
"Required parameter requestParameters.policyId was null or undefined when calling deletePolicyDefinition."
|
|
1618
1673
|
);
|
|
1619
|
-
const n = {}, i = {},
|
|
1674
|
+
const n = {}, i = {}, a = await this.request(
|
|
1620
1675
|
{
|
|
1621
1676
|
path: "/wrapper/ui/pages/policy-page/policy-definitions/{policyId}".replace(
|
|
1622
1677
|
"{policyId}",
|
|
@@ -1629,7 +1684,7 @@ class Ae extends g {
|
|
|
1629
1684
|
r
|
|
1630
1685
|
);
|
|
1631
1686
|
return new c(
|
|
1632
|
-
|
|
1687
|
+
a,
|
|
1633
1688
|
(s) => d(s)
|
|
1634
1689
|
);
|
|
1635
1690
|
}
|
|
@@ -1642,6 +1697,46 @@ class Ae extends g {
|
|
|
1642
1697
|
r
|
|
1643
1698
|
)).value();
|
|
1644
1699
|
}
|
|
1700
|
+
/**
|
|
1701
|
+
* Updates an Asset\'s metadata
|
|
1702
|
+
*/
|
|
1703
|
+
async editAssetMetadataRaw(e, r) {
|
|
1704
|
+
if (e.assetId === null || e.assetId === void 0)
|
|
1705
|
+
throw new u(
|
|
1706
|
+
"assetId",
|
|
1707
|
+
"Required parameter requestParameters.assetId was null or undefined when calling editAssetMetadata."
|
|
1708
|
+
);
|
|
1709
|
+
const n = {}, i = {};
|
|
1710
|
+
i["Content-Type"] = "application/json";
|
|
1711
|
+
const a = await this.request(
|
|
1712
|
+
{
|
|
1713
|
+
path: "/wrapper/ui/pages/asset-page/assets/{assetId}/metadata".replace(
|
|
1714
|
+
"{assetId}",
|
|
1715
|
+
encodeURIComponent(String(e.assetId))
|
|
1716
|
+
),
|
|
1717
|
+
method: "PUT",
|
|
1718
|
+
headers: i,
|
|
1719
|
+
query: n,
|
|
1720
|
+
body: Ce(
|
|
1721
|
+
e.uiAssetEditMetadataRequest
|
|
1722
|
+
)
|
|
1723
|
+
},
|
|
1724
|
+
r
|
|
1725
|
+
);
|
|
1726
|
+
return new c(
|
|
1727
|
+
a,
|
|
1728
|
+
(s) => d(s)
|
|
1729
|
+
);
|
|
1730
|
+
}
|
|
1731
|
+
/**
|
|
1732
|
+
* Updates an Asset\'s metadata
|
|
1733
|
+
*/
|
|
1734
|
+
async editAssetMetadata(e, r) {
|
|
1735
|
+
return await (await this.editAssetMetadataRaw(
|
|
1736
|
+
e,
|
|
1737
|
+
r
|
|
1738
|
+
)).value();
|
|
1739
|
+
}
|
|
1645
1740
|
/**
|
|
1646
1741
|
* Collect all data for Asset Page
|
|
1647
1742
|
*/
|
|
@@ -1657,7 +1752,7 @@ class Ae extends g {
|
|
|
1657
1752
|
);
|
|
1658
1753
|
return new c(
|
|
1659
1754
|
i,
|
|
1660
|
-
(
|
|
1755
|
+
(a) => V(a)
|
|
1661
1756
|
);
|
|
1662
1757
|
}
|
|
1663
1758
|
/**
|
|
@@ -1672,7 +1767,7 @@ class Ae extends g {
|
|
|
1672
1767
|
async getCatalogPageDataOffersRaw(e, r) {
|
|
1673
1768
|
const n = {};
|
|
1674
1769
|
e.connectorEndpoint !== void 0 && (n.connectorEndpoint = e.connectorEndpoint);
|
|
1675
|
-
const i = {},
|
|
1770
|
+
const i = {}, a = await this.request(
|
|
1676
1771
|
{
|
|
1677
1772
|
path: "/wrapper/ui/pages/catalog-page/data-offers",
|
|
1678
1773
|
method: "GET",
|
|
@@ -1682,8 +1777,8 @@ class Ae extends g {
|
|
|
1682
1777
|
r
|
|
1683
1778
|
);
|
|
1684
1779
|
return new c(
|
|
1685
|
-
|
|
1686
|
-
(s) => s.map(
|
|
1780
|
+
a,
|
|
1781
|
+
(s) => s.map(Ne)
|
|
1687
1782
|
);
|
|
1688
1783
|
}
|
|
1689
1784
|
/**
|
|
@@ -1710,7 +1805,7 @@ class Ae extends g {
|
|
|
1710
1805
|
);
|
|
1711
1806
|
return new c(
|
|
1712
1807
|
i,
|
|
1713
|
-
(
|
|
1808
|
+
(a) => mt(a)
|
|
1714
1809
|
);
|
|
1715
1810
|
}
|
|
1716
1811
|
/**
|
|
@@ -1734,7 +1829,7 @@ class Ae extends g {
|
|
|
1734
1829
|
);
|
|
1735
1830
|
return new c(
|
|
1736
1831
|
i,
|
|
1737
|
-
(
|
|
1832
|
+
(a) => Jt(a)
|
|
1738
1833
|
);
|
|
1739
1834
|
}
|
|
1740
1835
|
/**
|
|
@@ -1748,11 +1843,11 @@ class Ae extends g {
|
|
|
1748
1843
|
*/
|
|
1749
1844
|
async getContractNegotiationRaw(e, r) {
|
|
1750
1845
|
if (e.contractNegotiationId === null || e.contractNegotiationId === void 0)
|
|
1751
|
-
throw new
|
|
1846
|
+
throw new u(
|
|
1752
1847
|
"contractNegotiationId",
|
|
1753
1848
|
"Required parameter requestParameters.contractNegotiationId was null or undefined when calling getContractNegotiation."
|
|
1754
1849
|
);
|
|
1755
|
-
const n = {}, i = {},
|
|
1850
|
+
const n = {}, i = {}, a = await this.request(
|
|
1756
1851
|
{
|
|
1757
1852
|
path: "/wrapper/ui/pages/catalog-page/contract-negotiations/{contractNegotiationId}".replace(
|
|
1758
1853
|
"{contractNegotiationId}",
|
|
@@ -1767,8 +1862,8 @@ class Ae extends g {
|
|
|
1767
1862
|
r
|
|
1768
1863
|
);
|
|
1769
1864
|
return new c(
|
|
1770
|
-
|
|
1771
|
-
(s) =>
|
|
1865
|
+
a,
|
|
1866
|
+
(s) => S(s)
|
|
1772
1867
|
);
|
|
1773
1868
|
}
|
|
1774
1869
|
/**
|
|
@@ -1795,7 +1890,7 @@ class Ae extends g {
|
|
|
1795
1890
|
);
|
|
1796
1891
|
return new c(
|
|
1797
1892
|
i,
|
|
1798
|
-
(
|
|
1893
|
+
(a) => Vt(a)
|
|
1799
1894
|
);
|
|
1800
1895
|
}
|
|
1801
1896
|
/**
|
|
@@ -1819,7 +1914,7 @@ class Ae extends g {
|
|
|
1819
1914
|
);
|
|
1820
1915
|
return new c(
|
|
1821
1916
|
i,
|
|
1822
|
-
(
|
|
1917
|
+
(a) => fe(a)
|
|
1823
1918
|
);
|
|
1824
1919
|
}
|
|
1825
1920
|
/**
|
|
@@ -1843,7 +1938,7 @@ class Ae extends g {
|
|
|
1843
1938
|
);
|
|
1844
1939
|
return new c(
|
|
1845
1940
|
i,
|
|
1846
|
-
(
|
|
1941
|
+
(a) => Pe(a)
|
|
1847
1942
|
);
|
|
1848
1943
|
}
|
|
1849
1944
|
/**
|
|
@@ -1857,11 +1952,11 @@ class Ae extends g {
|
|
|
1857
1952
|
*/
|
|
1858
1953
|
async getTransferProcessAssetRaw(e, r) {
|
|
1859
1954
|
if (e.transferProcessId === null || e.transferProcessId === void 0)
|
|
1860
|
-
throw new
|
|
1955
|
+
throw new u(
|
|
1861
1956
|
"transferProcessId",
|
|
1862
1957
|
"Required parameter requestParameters.transferProcessId was null or undefined when calling getTransferProcessAsset."
|
|
1863
1958
|
);
|
|
1864
|
-
const n = {}, i = {},
|
|
1959
|
+
const n = {}, i = {}, a = await this.request(
|
|
1865
1960
|
{
|
|
1866
1961
|
path: "/wrapper/ui/pages/transfer-history-page/transfer-processes/{transferProcessId}/asset".replace(
|
|
1867
1962
|
"{transferProcessId}",
|
|
@@ -1876,7 +1971,7 @@ class Ae extends g {
|
|
|
1876
1971
|
r
|
|
1877
1972
|
);
|
|
1878
1973
|
return new c(
|
|
1879
|
-
|
|
1974
|
+
a,
|
|
1880
1975
|
(s) => l(s)
|
|
1881
1976
|
);
|
|
1882
1977
|
}
|
|
@@ -1895,21 +1990,21 @@ class Ae extends g {
|
|
|
1895
1990
|
async initiateContractNegotiationRaw(e, r) {
|
|
1896
1991
|
const n = {}, i = {};
|
|
1897
1992
|
i["Content-Type"] = "application/json";
|
|
1898
|
-
const
|
|
1993
|
+
const a = await this.request(
|
|
1899
1994
|
{
|
|
1900
1995
|
path: "/wrapper/ui/pages/catalog-page/contract-negotiations",
|
|
1901
1996
|
method: "POST",
|
|
1902
1997
|
headers: i,
|
|
1903
1998
|
query: n,
|
|
1904
|
-
body:
|
|
1999
|
+
body: bt(
|
|
1905
2000
|
e.contractNegotiationRequest
|
|
1906
2001
|
)
|
|
1907
2002
|
},
|
|
1908
2003
|
r
|
|
1909
2004
|
);
|
|
1910
2005
|
return new c(
|
|
1911
|
-
|
|
1912
|
-
(s) =>
|
|
2006
|
+
a,
|
|
2007
|
+
(s) => S(s)
|
|
1913
2008
|
);
|
|
1914
2009
|
}
|
|
1915
2010
|
/**
|
|
@@ -1927,20 +2022,20 @@ class Ae extends g {
|
|
|
1927
2022
|
async initiateCustomTransferRaw(e, r) {
|
|
1928
2023
|
const n = {}, i = {};
|
|
1929
2024
|
i["Content-Type"] = "application/json";
|
|
1930
|
-
const
|
|
2025
|
+
const a = await this.request(
|
|
1931
2026
|
{
|
|
1932
2027
|
path: "/wrapper/ui/pages/contract-agreement-page/transfers/custom",
|
|
1933
2028
|
method: "POST",
|
|
1934
2029
|
headers: i,
|
|
1935
2030
|
query: n,
|
|
1936
|
-
body:
|
|
2031
|
+
body: Yt(
|
|
1937
2032
|
e.initiateCustomTransferRequest
|
|
1938
2033
|
)
|
|
1939
2034
|
},
|
|
1940
2035
|
r
|
|
1941
2036
|
);
|
|
1942
2037
|
return new c(
|
|
1943
|
-
|
|
2038
|
+
a,
|
|
1944
2039
|
(s) => d(s)
|
|
1945
2040
|
);
|
|
1946
2041
|
}
|
|
@@ -1959,20 +2054,20 @@ class Ae extends g {
|
|
|
1959
2054
|
async initiateTransferRaw(e, r) {
|
|
1960
2055
|
const n = {}, i = {};
|
|
1961
2056
|
i["Content-Type"] = "application/json";
|
|
1962
|
-
const
|
|
2057
|
+
const a = await this.request(
|
|
1963
2058
|
{
|
|
1964
2059
|
path: "/wrapper/ui/pages/contract-agreement-page/transfers",
|
|
1965
2060
|
method: "POST",
|
|
1966
2061
|
headers: i,
|
|
1967
2062
|
query: n,
|
|
1968
|
-
body:
|
|
2063
|
+
body: Zt(
|
|
1969
2064
|
e.initiateTransferRequest
|
|
1970
2065
|
)
|
|
1971
2066
|
},
|
|
1972
2067
|
r
|
|
1973
2068
|
);
|
|
1974
2069
|
return new c(
|
|
1975
|
-
|
|
2070
|
+
a,
|
|
1976
2071
|
(s) => d(s)
|
|
1977
2072
|
);
|
|
1978
2073
|
}
|
|
@@ -1986,7 +2081,7 @@ class Ae extends g {
|
|
|
1986
2081
|
)).value();
|
|
1987
2082
|
}
|
|
1988
2083
|
}
|
|
1989
|
-
class
|
|
2084
|
+
class Ue extends g {
|
|
1990
2085
|
/**
|
|
1991
2086
|
* Basic KPIs about the running EDC Connector.
|
|
1992
2087
|
*/
|
|
@@ -2002,7 +2097,7 @@ class Je extends g {
|
|
|
2002
2097
|
);
|
|
2003
2098
|
return new c(
|
|
2004
2099
|
i,
|
|
2005
|
-
(
|
|
2100
|
+
(a) => re(a)
|
|
2006
2101
|
);
|
|
2007
2102
|
}
|
|
2008
2103
|
/**
|
|
@@ -2033,8 +2128,8 @@ class Je extends g {
|
|
|
2033
2128
|
return await (await this.getSupportedFunctionsRaw(e)).value();
|
|
2034
2129
|
}
|
|
2035
2130
|
}
|
|
2036
|
-
function
|
|
2037
|
-
const e = new
|
|
2131
|
+
function Wr(t) {
|
|
2132
|
+
const e = new D({
|
|
2038
2133
|
basePath: t.managementApiUrl,
|
|
2039
2134
|
headers: {
|
|
2040
2135
|
"X-Api-Key": t.managementApiKey ?? "ApiKeyDefaultValue"
|
|
@@ -2043,33 +2138,33 @@ function zr(t) {
|
|
|
2043
2138
|
...t.configOverrides
|
|
2044
2139
|
});
|
|
2045
2140
|
return {
|
|
2046
|
-
uiApi: new
|
|
2047
|
-
useCaseApi: new
|
|
2048
|
-
enterpriseEditionApi: new
|
|
2141
|
+
uiApi: new Re(e),
|
|
2142
|
+
useCaseApi: new Ue(e),
|
|
2143
|
+
enterpriseEditionApi: new Je(e)
|
|
2049
2144
|
};
|
|
2050
2145
|
}
|
|
2051
2146
|
export {
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2147
|
+
V as AssetPageFromJSON,
|
|
2148
|
+
B as AssetPageFromJSONTyped,
|
|
2149
|
+
ke as AssetPageToJSON,
|
|
2055
2150
|
H as BASE_PATH,
|
|
2056
2151
|
g as BaseAPI,
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2152
|
+
Me as BlobApiResponse,
|
|
2153
|
+
Fe as COLLECTION_FORMATS,
|
|
2154
|
+
D as Configuration,
|
|
2155
|
+
z as ConnectorLimitsFromJSON,
|
|
2156
|
+
X as ConnectorLimitsFromJSONTyped,
|
|
2157
|
+
Ge as ConnectorLimitsToJSON,
|
|
2158
|
+
ft as ContractAgreementCardFromJSON,
|
|
2064
2159
|
gt as ContractAgreementCardFromJSONTyped,
|
|
2065
2160
|
lt as ContractAgreementCardToJSON,
|
|
2066
|
-
|
|
2161
|
+
Ke as ContractAgreementDirection,
|
|
2067
2162
|
N as ContractAgreementDirectionFromJSON,
|
|
2068
|
-
|
|
2069
|
-
|
|
2163
|
+
Y as ContractAgreementDirectionFromJSONTyped,
|
|
2164
|
+
$e as ContractAgreementDirectionToJSON,
|
|
2070
2165
|
mt as ContractAgreementPageFromJSON,
|
|
2071
2166
|
yt as ContractAgreementPageFromJSONTyped,
|
|
2072
|
-
|
|
2167
|
+
rr as ContractAgreementPageToJSON,
|
|
2073
2168
|
tt as ContractAgreementTransferProcessFromJSON,
|
|
2074
2169
|
et as ContractAgreementTransferProcessFromJSONTyped,
|
|
2075
2170
|
rt as ContractAgreementTransferProcessToJSON,
|
|
@@ -2078,110 +2173,113 @@ export {
|
|
|
2078
2173
|
At as ContractDefinitionEntryToJSON,
|
|
2079
2174
|
Jt as ContractDefinitionPageFromJSON,
|
|
2080
2175
|
Rt as ContractDefinitionPageFromJSONTyped,
|
|
2081
|
-
|
|
2082
|
-
|
|
2176
|
+
pr as ContractDefinitionPageToJSON,
|
|
2177
|
+
gr as ContractDefinitionRequestFromJSON,
|
|
2083
2178
|
Ut as ContractDefinitionRequestFromJSONTyped,
|
|
2084
2179
|
qt as ContractDefinitionRequestToJSON,
|
|
2085
|
-
|
|
2180
|
+
mr as ContractNegotiationRequestFromJSON,
|
|
2086
2181
|
Ft as ContractNegotiationRequestFromJSONTyped,
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2182
|
+
bt as ContractNegotiationRequestToJSON,
|
|
2183
|
+
yr as ContractNegotiationSimplifiedState,
|
|
2184
|
+
Et as ContractNegotiationSimplifiedStateFromJSON,
|
|
2185
|
+
Mt as ContractNegotiationSimplifiedStateFromJSONTyped,
|
|
2186
|
+
Pr as ContractNegotiationSimplifiedStateToJSON,
|
|
2187
|
+
Lt as ContractNegotiationStateFromJSON,
|
|
2093
2188
|
Ht as ContractNegotiationStateFromJSONTyped,
|
|
2094
2189
|
kt as ContractNegotiationStateToJSON,
|
|
2095
2190
|
xt as DashboardDapsConfigFromJSON,
|
|
2096
2191
|
Gt as DashboardDapsConfigFromJSONTyped,
|
|
2097
2192
|
Kt as DashboardDapsConfigToJSON,
|
|
2098
2193
|
$t as DashboardMiwConfigFromJSON,
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2194
|
+
vt as DashboardMiwConfigFromJSONTyped,
|
|
2195
|
+
_t as DashboardMiwConfigToJSON,
|
|
2196
|
+
Vt as DashboardPageFromJSON,
|
|
2197
|
+
Bt as DashboardPageFromJSONTyped,
|
|
2198
|
+
Dr as DashboardPageToJSON,
|
|
2199
|
+
I as DashboardTransferAmountsFromJSON,
|
|
2200
|
+
Qt as DashboardTransferAmountsFromJSONTyped,
|
|
2201
|
+
C as DashboardTransferAmountsToJSON,
|
|
2107
2202
|
k as DefaultConfig,
|
|
2108
|
-
|
|
2203
|
+
Je as EnterpriseEditionApi,
|
|
2109
2204
|
$ as FetchError,
|
|
2110
2205
|
d as IdResponseDtoFromJSON,
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2206
|
+
zt as IdResponseDtoFromJSONTyped,
|
|
2207
|
+
Tr as IdResponseDtoToJSON,
|
|
2208
|
+
Ar as InitiateCustomTransferRequestFromJSON,
|
|
2209
|
+
Xt as InitiateCustomTransferRequestFromJSONTyped,
|
|
2210
|
+
Yt as InitiateCustomTransferRequestToJSON,
|
|
2211
|
+
Rr as InitiateTransferRequestFromJSON,
|
|
2212
|
+
Wt as InitiateTransferRequestFromJSONTyped,
|
|
2213
|
+
Zt as InitiateTransferRequestToJSON,
|
|
2119
2214
|
c as JSONApiResponse,
|
|
2120
2215
|
re as KpiResultFromJSON,
|
|
2121
2216
|
ne as KpiResultFromJSONTyped,
|
|
2122
|
-
|
|
2123
|
-
|
|
2217
|
+
Fr as KpiResultToJSON,
|
|
2218
|
+
Be as OperatorDto,
|
|
2124
2219
|
nt as OperatorDtoFromJSON,
|
|
2125
2220
|
it as OperatorDtoFromJSONTyped,
|
|
2126
|
-
|
|
2127
|
-
|
|
2221
|
+
ze as OperatorDtoToJSON,
|
|
2222
|
+
Mr as PolicyDefinitionCreateRequestFromJSON,
|
|
2128
2223
|
se as PolicyDefinitionCreateRequestFromJSONTyped,
|
|
2129
2224
|
ce as PolicyDefinitionCreateRequestToJSON,
|
|
2130
2225
|
de as PolicyDefinitionDtoFromJSON,
|
|
2131
2226
|
ue as PolicyDefinitionDtoFromJSONTyped,
|
|
2132
|
-
|
|
2133
|
-
|
|
2227
|
+
pe as PolicyDefinitionDtoToJSON,
|
|
2228
|
+
fe as PolicyDefinitionPageFromJSON,
|
|
2134
2229
|
ge as PolicyDefinitionPageFromJSONTyped,
|
|
2135
|
-
|
|
2136
|
-
|
|
2230
|
+
kr as PolicyDefinitionPageToJSON,
|
|
2231
|
+
u as RequiredError,
|
|
2137
2232
|
K as ResponseError,
|
|
2138
|
-
|
|
2233
|
+
_ as TextApiResponse,
|
|
2139
2234
|
le as TransferHistoryEntryFromJSON,
|
|
2140
2235
|
me as TransferHistoryEntryFromJSONTyped,
|
|
2141
2236
|
ye as TransferHistoryEntryToJSON,
|
|
2142
2237
|
Pe as TransferHistoryPageFromJSON,
|
|
2143
2238
|
he as TransferHistoryPageFromJSONTyped,
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2239
|
+
Kr as TransferHistoryPageToJSON,
|
|
2240
|
+
ve as TransferProcessSimplifiedState,
|
|
2241
|
+
W as TransferProcessSimplifiedStateFromJSON,
|
|
2242
|
+
Z as TransferProcessSimplifiedStateFromJSONTyped,
|
|
2243
|
+
_e as TransferProcessSimplifiedStateToJSON,
|
|
2149
2244
|
A as TransferProcessStateFromJSON,
|
|
2150
2245
|
j as TransferProcessStateFromJSONTyped,
|
|
2151
2246
|
J as TransferProcessStateToJSON,
|
|
2152
2247
|
jt as TransferProcessStatesDtoFromJSON,
|
|
2153
2248
|
te as TransferProcessStatesDtoFromJSONTyped,
|
|
2154
2249
|
ee as TransferProcessStatesDtoToJSON,
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2250
|
+
Re as UIApi,
|
|
2251
|
+
vr as UiAssetCreateRequestFromJSON,
|
|
2252
|
+
we as UiAssetCreateRequestFromJSONTyped,
|
|
2253
|
+
b as UiAssetCreateRequestToJSON,
|
|
2254
|
+
Qr as UiAssetEditMetadataRequestFromJSON,
|
|
2255
|
+
Ie as UiAssetEditMetadataRequestFromJSONTyped,
|
|
2256
|
+
Ce as UiAssetEditMetadataRequestToJSON,
|
|
2159
2257
|
l as UiAssetFromJSON,
|
|
2160
|
-
|
|
2258
|
+
Q as UiAssetFromJSONTyped,
|
|
2161
2259
|
m as UiAssetToJSON,
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2260
|
+
S as UiContractNegotiationFromJSON,
|
|
2261
|
+
Se as UiContractNegotiationFromJSONTyped,
|
|
2262
|
+
Br as UiContractNegotiationToJSON,
|
|
2263
|
+
De as UiContractOfferFromJSON,
|
|
2264
|
+
Oe as UiContractOfferFromJSONTyped,
|
|
2265
|
+
Te as UiContractOfferToJSON,
|
|
2168
2266
|
q as UiCriterionFromJSON,
|
|
2169
2267
|
Ot as UiCriterionFromJSONTyped,
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2268
|
+
wt as UiCriterionLiteralFromJSON,
|
|
2269
|
+
It as UiCriterionLiteralFromJSONTyped,
|
|
2270
|
+
Ct as UiCriterionLiteralToJSON,
|
|
2271
|
+
nr as UiCriterionLiteralType,
|
|
2174
2272
|
Pt as UiCriterionLiteralTypeFromJSON,
|
|
2175
2273
|
ht as UiCriterionLiteralTypeFromJSONTyped,
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2274
|
+
ir as UiCriterionLiteralTypeToJSON,
|
|
2275
|
+
ar as UiCriterionOperator,
|
|
2276
|
+
St as UiCriterionOperatorFromJSON,
|
|
2277
|
+
Dt as UiCriterionOperatorFromJSONTyped,
|
|
2278
|
+
sr as UiCriterionOperatorToJSON,
|
|
2181
2279
|
F as UiCriterionToJSON,
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2280
|
+
Ne as UiDataOfferFromJSON,
|
|
2281
|
+
Ae as UiDataOfferFromJSONTyped,
|
|
2282
|
+
Yr as UiDataOfferToJSON,
|
|
2185
2283
|
R as UiPolicyConstraintFromJSON,
|
|
2186
2284
|
ut as UiPolicyConstraintFromJSONTyped,
|
|
2187
2285
|
U as UiPolicyConstraintToJSON,
|
|
@@ -2189,57 +2287,58 @@ export {
|
|
|
2189
2287
|
oe as UiPolicyCreateRequestFromJSONTyped,
|
|
2190
2288
|
ae as UiPolicyCreateRequestToJSON,
|
|
2191
2289
|
y as UiPolicyFromJSON,
|
|
2192
|
-
|
|
2290
|
+
pt as UiPolicyFromJSONTyped,
|
|
2193
2291
|
st as UiPolicyLiteralFromJSON,
|
|
2194
2292
|
ct as UiPolicyLiteralFromJSONTyped,
|
|
2195
2293
|
dt as UiPolicyLiteralToJSON,
|
|
2196
|
-
|
|
2294
|
+
Xe as UiPolicyLiteralType,
|
|
2197
2295
|
ot as UiPolicyLiteralTypeFromJSON,
|
|
2198
2296
|
at as UiPolicyLiteralTypeFromJSONTyped,
|
|
2199
|
-
|
|
2297
|
+
Ye as UiPolicyLiteralTypeToJSON,
|
|
2200
2298
|
P as UiPolicyToJSON,
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2299
|
+
Ue as UseCaseApi,
|
|
2300
|
+
v as VoidApiResponse,
|
|
2301
|
+
Wr as buildEdcClient,
|
|
2302
|
+
Ee as canConsumeForm,
|
|
2303
|
+
o as exists,
|
|
2304
|
+
He as instanceOfAssetPage,
|
|
2305
|
+
xe as instanceOfConnectorLimits,
|
|
2306
|
+
tr as instanceOfContractAgreementCard,
|
|
2307
|
+
er as instanceOfContractAgreementPage,
|
|
2308
|
+
Ve as instanceOfContractAgreementTransferProcess,
|
|
2309
|
+
dr as instanceOfContractDefinitionEntry,
|
|
2310
|
+
ur as instanceOfContractDefinitionPage,
|
|
2311
|
+
fr as instanceOfContractDefinitionRequest,
|
|
2312
|
+
lr as instanceOfContractNegotiationRequest,
|
|
2313
|
+
hr as instanceOfContractNegotiationState,
|
|
2314
|
+
wr as instanceOfDashboardDapsConfig,
|
|
2315
|
+
Ir as instanceOfDashboardMiwConfig,
|
|
2316
|
+
Sr as instanceOfDashboardPage,
|
|
2317
|
+
Cr as instanceOfDashboardTransferAmounts,
|
|
2318
|
+
Or as instanceOfIdResponseDto,
|
|
2319
|
+
Nr as instanceOfInitiateCustomTransferRequest,
|
|
2320
|
+
Jr as instanceOfInitiateTransferRequest,
|
|
2321
|
+
qr as instanceOfKpiResult,
|
|
2322
|
+
Er as instanceOfPolicyDefinitionCreateRequest,
|
|
2323
|
+
Lr as instanceOfPolicyDefinitionDto,
|
|
2324
|
+
Hr as instanceOfPolicyDefinitionPage,
|
|
2325
|
+
xr as instanceOfTransferHistoryEntry,
|
|
2326
|
+
Gr as instanceOfTransferHistoryPage,
|
|
2327
|
+
Qe as instanceOfTransferProcessState,
|
|
2328
|
+
Ur as instanceOfTransferProcessStatesDto,
|
|
2329
|
+
Le as instanceOfUiAsset,
|
|
2330
|
+
$r as instanceOfUiAssetCreateRequest,
|
|
2331
|
+
_r as instanceOfUiAssetEditMetadataRequest,
|
|
2332
|
+
Vr as instanceOfUiContractNegotiation,
|
|
2333
|
+
zr as instanceOfUiContractOffer,
|
|
2334
|
+
cr as instanceOfUiCriterion,
|
|
2335
|
+
or as instanceOfUiCriterionLiteral,
|
|
2336
|
+
Xr as instanceOfUiDataOffer,
|
|
2337
|
+
je as instanceOfUiPolicy,
|
|
2338
|
+
Ze as instanceOfUiPolicyConstraint,
|
|
2339
|
+
br as instanceOfUiPolicyCreateRequest,
|
|
2340
|
+
We as instanceOfUiPolicyLiteral,
|
|
2341
|
+
be as mapValues,
|
|
2243
2342
|
O as querystring
|
|
2244
2343
|
};
|
|
2245
2344
|
//# sourceMappingURL=sovity-edc-client.js.map
|