@sovity.de/edc-client 5.0.0 → 7.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var u = (t, e, r) => (
|
|
4
|
-
const
|
|
5
|
-
|
|
1
|
+
var L = Object.defineProperty;
|
|
2
|
+
var M = (t, e, r) => e in t ? L(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
|
|
3
|
+
var u = (t, e, r) => (M(t, typeof e != "symbol" ? e + "" : e, r), r);
|
|
4
|
+
const H = "https://my-connector/api/management".replace(
|
|
5
|
+
/\/+$/,
|
|
6
|
+
""
|
|
7
|
+
);
|
|
8
|
+
class S {
|
|
6
9
|
constructor(e = {}) {
|
|
7
10
|
this.configuration = e;
|
|
8
11
|
}
|
|
@@ -10,7 +13,7 @@ class T {
|
|
|
10
13
|
this.configuration = e;
|
|
11
14
|
}
|
|
12
15
|
get basePath() {
|
|
13
|
-
return this.configuration.basePath != null ? this.configuration.basePath :
|
|
16
|
+
return this.configuration.basePath != null ? this.configuration.basePath : H;
|
|
14
17
|
}
|
|
15
18
|
get fetchApi() {
|
|
16
19
|
return this.configuration.fetchApi;
|
|
@@ -19,7 +22,7 @@ class T {
|
|
|
19
22
|
return this.configuration.middleware || [];
|
|
20
23
|
}
|
|
21
24
|
get queryParamsStringify() {
|
|
22
|
-
return this.configuration.queryParamsStringify ||
|
|
25
|
+
return this.configuration.queryParamsStringify || O;
|
|
23
26
|
}
|
|
24
27
|
get username() {
|
|
25
28
|
return this.configuration.username;
|
|
@@ -44,8 +47,8 @@ class T {
|
|
|
44
47
|
return this.configuration.credentials;
|
|
45
48
|
}
|
|
46
49
|
}
|
|
47
|
-
const
|
|
48
|
-
constructor(e =
|
|
50
|
+
const k = new S(), h = class {
|
|
51
|
+
constructor(e = k) {
|
|
49
52
|
u(this, "middleware");
|
|
50
53
|
u(this, "fetchApi", async (e, r) => {
|
|
51
54
|
let n = { url: e, init: r };
|
|
@@ -70,7 +73,7 @@ const $ = new T(), I = class {
|
|
|
70
73
|
response: i ? i.clone() : void 0
|
|
71
74
|
}) || i);
|
|
72
75
|
if (i === void 0)
|
|
73
|
-
throw o instanceof Error ? new
|
|
76
|
+
throw o instanceof Error ? new $(
|
|
74
77
|
o,
|
|
75
78
|
"The request failed and the interceptors did not return an alternative response"
|
|
76
79
|
) : o;
|
|
@@ -109,7 +112,7 @@ const $ = new T(), I = class {
|
|
|
109
112
|
* @return True if the given MIME is JSON, false otherwise.
|
|
110
113
|
*/
|
|
111
114
|
isJsonMime(e) {
|
|
112
|
-
return e ?
|
|
115
|
+
return e ? h.jsonRegex.test(e) : !1;
|
|
113
116
|
}
|
|
114
117
|
async request(e, r) {
|
|
115
118
|
const { url: n, init: i } = await this.createFetchParams(
|
|
@@ -118,7 +121,7 @@ const $ = new T(), I = class {
|
|
|
118
121
|
), o = await this.fetchApi(n, i);
|
|
119
122
|
if (o && o.status >= 200 && o.status < 300)
|
|
120
123
|
return o;
|
|
121
|
-
throw new
|
|
124
|
+
throw new K(o, "Response returned an error code");
|
|
122
125
|
}
|
|
123
126
|
async createFetchParams(e, r) {
|
|
124
127
|
let n = this.configuration.basePath + e.path;
|
|
@@ -129,7 +132,7 @@ const $ = new T(), I = class {
|
|
|
129
132
|
e.headers
|
|
130
133
|
);
|
|
131
134
|
Object.keys(i).forEach(
|
|
132
|
-
(
|
|
135
|
+
(I) => i[I] === void 0 ? delete i[I] : {}
|
|
133
136
|
);
|
|
134
137
|
const o = typeof r == "function" ? r : async () => r, s = {
|
|
135
138
|
method: e.method,
|
|
@@ -142,11 +145,11 @@ const $ = new T(), I = class {
|
|
|
142
145
|
init: s,
|
|
143
146
|
context: e
|
|
144
147
|
})
|
|
145
|
-
},
|
|
148
|
+
}, b = {
|
|
146
149
|
...p,
|
|
147
|
-
body:
|
|
150
|
+
body: G(p.body) || p.body instanceof URLSearchParams || x(p.body) ? p.body : JSON.stringify(p.body)
|
|
148
151
|
};
|
|
149
|
-
return { url: n, init:
|
|
152
|
+
return { url: n, init: b };
|
|
150
153
|
}
|
|
151
154
|
/**
|
|
152
155
|
* Create a shallow clone of `this` by constructing a new instance
|
|
@@ -157,25 +160,25 @@ const $ = new T(), I = class {
|
|
|
157
160
|
return r.middleware = this.middleware.slice(), r;
|
|
158
161
|
}
|
|
159
162
|
};
|
|
160
|
-
let
|
|
161
|
-
u(
|
|
163
|
+
let g = h;
|
|
164
|
+
u(g, "jsonRegex", new RegExp(
|
|
162
165
|
"^(:?application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(:?;.*)?$",
|
|
163
166
|
"i"
|
|
164
167
|
));
|
|
165
|
-
function
|
|
168
|
+
function x(t) {
|
|
166
169
|
return typeof Blob < "u" && t instanceof Blob;
|
|
167
170
|
}
|
|
168
|
-
function
|
|
171
|
+
function G(t) {
|
|
169
172
|
return typeof FormData < "u" && t instanceof FormData;
|
|
170
173
|
}
|
|
171
|
-
class
|
|
174
|
+
class K extends Error {
|
|
172
175
|
constructor(r, n) {
|
|
173
176
|
super(n);
|
|
174
177
|
u(this, "name", "ResponseError");
|
|
175
178
|
this.response = r;
|
|
176
179
|
}
|
|
177
180
|
}
|
|
178
|
-
class
|
|
181
|
+
class $ extends Error {
|
|
179
182
|
constructor(r, n) {
|
|
180
183
|
super(n);
|
|
181
184
|
u(this, "name", "FetchError");
|
|
@@ -189,7 +192,7 @@ class f extends Error {
|
|
|
189
192
|
this.field = r;
|
|
190
193
|
}
|
|
191
194
|
}
|
|
192
|
-
const
|
|
195
|
+
const Ue = {
|
|
193
196
|
csv: ",",
|
|
194
197
|
ssv: " ",
|
|
195
198
|
tsv: " ",
|
|
@@ -199,10 +202,10 @@ function a(t, e) {
|
|
|
199
202
|
const r = t[e];
|
|
200
203
|
return r != null;
|
|
201
204
|
}
|
|
202
|
-
function
|
|
203
|
-
return Object.keys(t).map((r) =>
|
|
205
|
+
function O(t, e = "") {
|
|
206
|
+
return Object.keys(t).map((r) => T(r, t[r], e)).filter((r) => r.length > 0).join("&");
|
|
204
207
|
}
|
|
205
|
-
function
|
|
208
|
+
function T(t, e, r = "") {
|
|
206
209
|
const n = r + (r.length ? `[${t}]` : t);
|
|
207
210
|
if (e instanceof Array) {
|
|
208
211
|
const i = e.map((o) => encodeURIComponent(String(o))).join(`&${encodeURIComponent(n)}=`);
|
|
@@ -210,21 +213,21 @@ function A(t, e, r = "") {
|
|
|
210
213
|
}
|
|
211
214
|
if (e instanceof Set) {
|
|
212
215
|
const i = Array.from(e);
|
|
213
|
-
return
|
|
216
|
+
return T(t, i, r);
|
|
214
217
|
}
|
|
215
218
|
return e instanceof Date ? `${encodeURIComponent(n)}=${encodeURIComponent(
|
|
216
219
|
e.toISOString()
|
|
217
|
-
)}` : e instanceof Object ?
|
|
220
|
+
)}` : e instanceof Object ? O(e, n) : `${encodeURIComponent(n)}=${encodeURIComponent(
|
|
218
221
|
String(e)
|
|
219
222
|
)}`;
|
|
220
223
|
}
|
|
221
|
-
function
|
|
224
|
+
function qe(t, e) {
|
|
222
225
|
return Object.keys(t).reduce(
|
|
223
226
|
(r, n) => ({ ...r, [n]: e(t[n]) }),
|
|
224
227
|
{}
|
|
225
228
|
);
|
|
226
229
|
}
|
|
227
|
-
function
|
|
230
|
+
function Fe(t) {
|
|
228
231
|
for (const e of t)
|
|
229
232
|
if (e.contentType === "multipart/form-data")
|
|
230
233
|
return !0;
|
|
@@ -238,14 +241,14 @@ class c {
|
|
|
238
241
|
return this.transformer(await this.raw.json());
|
|
239
242
|
}
|
|
240
243
|
}
|
|
241
|
-
class
|
|
244
|
+
class _ {
|
|
242
245
|
constructor(e) {
|
|
243
246
|
this.raw = e;
|
|
244
247
|
}
|
|
245
248
|
async value() {
|
|
246
249
|
}
|
|
247
250
|
}
|
|
248
|
-
class
|
|
251
|
+
class Ee {
|
|
249
252
|
constructor(e) {
|
|
250
253
|
this.raw = e;
|
|
251
254
|
}
|
|
@@ -253,7 +256,7 @@ class sr {
|
|
|
253
256
|
return await this.raw.blob();
|
|
254
257
|
}
|
|
255
258
|
}
|
|
256
|
-
class
|
|
259
|
+
class Q {
|
|
257
260
|
constructor(e) {
|
|
258
261
|
this.raw = e;
|
|
259
262
|
}
|
|
@@ -261,36 +264,14 @@ class z {
|
|
|
261
264
|
return await this.raw.text();
|
|
262
265
|
}
|
|
263
266
|
}
|
|
264
|
-
function
|
|
265
|
-
let e = !0;
|
|
266
|
-
return e = e && "assetRequestId" in t, e = e && "dataAddressProperties" in t, e;
|
|
267
|
-
}
|
|
268
|
-
function X(t) {
|
|
269
|
-
return Y(t);
|
|
270
|
-
}
|
|
271
|
-
function Y(t, e) {
|
|
272
|
-
return t == null ? t : {
|
|
273
|
-
assetRequestId: t.assetRequestId,
|
|
274
|
-
assetRequestProperties: a(t, "assetRequestProperties") ? t.assetRequestProperties : void 0,
|
|
275
|
-
dataAddressProperties: t.dataAddressProperties
|
|
276
|
-
};
|
|
277
|
-
}
|
|
278
|
-
function W(t) {
|
|
279
|
-
if (t !== void 0)
|
|
280
|
-
return t === null ? null : {
|
|
281
|
-
assetRequestId: t.assetRequestId,
|
|
282
|
-
assetRequestProperties: t.assetRequestProperties,
|
|
283
|
-
dataAddressProperties: t.dataAddressProperties
|
|
284
|
-
};
|
|
285
|
-
}
|
|
286
|
-
function dr(t) {
|
|
267
|
+
function be(t) {
|
|
287
268
|
let e = !0;
|
|
288
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;
|
|
289
270
|
}
|
|
290
|
-
function
|
|
291
|
-
return
|
|
271
|
+
function l(t) {
|
|
272
|
+
return V(t);
|
|
292
273
|
}
|
|
293
|
-
function
|
|
274
|
+
function V(t, e) {
|
|
294
275
|
return t == null ? t : {
|
|
295
276
|
assetId: t.assetId,
|
|
296
277
|
connectorEndpoint: t.connectorEndpoint,
|
|
@@ -333,7 +314,7 @@ function Z(t, e) {
|
|
|
333
314
|
assetJsonLd: a(t, "assetJsonLd") ? t.assetJsonLd : void 0
|
|
334
315
|
};
|
|
335
316
|
}
|
|
336
|
-
function
|
|
317
|
+
function m(t) {
|
|
337
318
|
if (t !== void 0)
|
|
338
319
|
return t === null ? null : {
|
|
339
320
|
assetId: t.assetId,
|
|
@@ -365,77 +346,32 @@ function P(t) {
|
|
|
365
346
|
assetJsonLd: t.assetJsonLd
|
|
366
347
|
};
|
|
367
348
|
}
|
|
368
|
-
function
|
|
349
|
+
function Le(t) {
|
|
369
350
|
let e = !0;
|
|
370
351
|
return e = e && "assets" in t, e;
|
|
371
352
|
}
|
|
372
|
-
function
|
|
373
|
-
return
|
|
374
|
-
}
|
|
375
|
-
function j(t, e) {
|
|
376
|
-
return t == null ? t : {
|
|
377
|
-
assets: t.assets.map(y)
|
|
378
|
-
};
|
|
379
|
-
}
|
|
380
|
-
function fr(t) {
|
|
381
|
-
if (t !== void 0)
|
|
382
|
-
return t === null ? null : {
|
|
383
|
-
assets: t.assets.map(P)
|
|
384
|
-
};
|
|
385
|
-
}
|
|
386
|
-
const pr = {
|
|
387
|
-
Eq: "EQ",
|
|
388
|
-
Neq: "NEQ",
|
|
389
|
-
Gt: "GT",
|
|
390
|
-
Geq: "GEQ",
|
|
391
|
-
Lt: "LT",
|
|
392
|
-
Leq: "LEQ",
|
|
393
|
-
In: "IN",
|
|
394
|
-
HasPart: "HAS_PART",
|
|
395
|
-
IsA: "IS_A",
|
|
396
|
-
IsAllOf: "IS_ALL_OF",
|
|
397
|
-
IsAnyOf: "IS_ANY_OF",
|
|
398
|
-
IsNoneOf: "IS_NONE_OF"
|
|
399
|
-
};
|
|
400
|
-
function J(t) {
|
|
401
|
-
return tt(t);
|
|
402
|
-
}
|
|
403
|
-
function tt(t, e) {
|
|
404
|
-
return t;
|
|
405
|
-
}
|
|
406
|
-
function lr(t) {
|
|
407
|
-
return t;
|
|
408
|
-
}
|
|
409
|
-
function mr(t) {
|
|
410
|
-
let e = !0;
|
|
411
|
-
return e = e && "leftExpression" in t, e = e && "operator" in t, e = e && "rightExpression" in t, e;
|
|
353
|
+
function B(t) {
|
|
354
|
+
return z(t);
|
|
412
355
|
}
|
|
413
|
-
function
|
|
414
|
-
return rt(t);
|
|
415
|
-
}
|
|
416
|
-
function rt(t, e) {
|
|
356
|
+
function z(t, e) {
|
|
417
357
|
return t == null ? t : {
|
|
418
|
-
|
|
419
|
-
operator: J(t.operator),
|
|
420
|
-
rightExpression: t.rightExpression
|
|
358
|
+
assets: t.assets.map(l)
|
|
421
359
|
};
|
|
422
360
|
}
|
|
423
|
-
function
|
|
361
|
+
function Me(t) {
|
|
424
362
|
if (t !== void 0)
|
|
425
363
|
return t === null ? null : {
|
|
426
|
-
|
|
427
|
-
operator: t.operator,
|
|
428
|
-
rightExpression: t.rightExpression
|
|
364
|
+
assets: t.assets.map(m)
|
|
429
365
|
};
|
|
430
366
|
}
|
|
431
|
-
function
|
|
367
|
+
function He(t) {
|
|
432
368
|
let e = !0;
|
|
433
369
|
return e = e && "numActiveConsumingContractAgreements" in t, e;
|
|
434
370
|
}
|
|
435
|
-
function
|
|
436
|
-
return
|
|
371
|
+
function X(t) {
|
|
372
|
+
return Y(t);
|
|
437
373
|
}
|
|
438
|
-
function
|
|
374
|
+
function Y(t, e) {
|
|
439
375
|
return t == null ? t : {
|
|
440
376
|
numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
|
|
441
377
|
maxActiveConsumingContractAgreements: a(
|
|
@@ -444,57 +380,57 @@ function ot(t, e) {
|
|
|
444
380
|
) ? t.maxActiveConsumingContractAgreements : void 0
|
|
445
381
|
};
|
|
446
382
|
}
|
|
447
|
-
function
|
|
383
|
+
function ke(t) {
|
|
448
384
|
if (t !== void 0)
|
|
449
385
|
return t === null ? null : {
|
|
450
386
|
numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
|
|
451
387
|
maxActiveConsumingContractAgreements: t.maxActiveConsumingContractAgreements
|
|
452
388
|
};
|
|
453
389
|
}
|
|
454
|
-
const
|
|
390
|
+
const xe = {
|
|
455
391
|
Consuming: "CONSUMING",
|
|
456
392
|
Providing: "PROVIDING"
|
|
457
393
|
};
|
|
458
|
-
function
|
|
459
|
-
return
|
|
394
|
+
function N(t) {
|
|
395
|
+
return W(t);
|
|
460
396
|
}
|
|
461
|
-
function
|
|
397
|
+
function W(t, e) {
|
|
462
398
|
return t;
|
|
463
399
|
}
|
|
464
|
-
function
|
|
400
|
+
function Ge(t) {
|
|
465
401
|
return t;
|
|
466
402
|
}
|
|
467
|
-
const
|
|
403
|
+
const Ke = {
|
|
468
404
|
Running: "RUNNING",
|
|
469
405
|
Ok: "OK",
|
|
470
406
|
Error: "ERROR"
|
|
471
407
|
};
|
|
472
|
-
function
|
|
473
|
-
return
|
|
408
|
+
function Z(t) {
|
|
409
|
+
return v(t);
|
|
474
410
|
}
|
|
475
|
-
function
|
|
411
|
+
function v(t, e) {
|
|
476
412
|
return t;
|
|
477
413
|
}
|
|
478
|
-
function
|
|
414
|
+
function $e(t) {
|
|
479
415
|
return t;
|
|
480
416
|
}
|
|
481
|
-
function
|
|
417
|
+
function _e(t) {
|
|
482
418
|
let e = !0;
|
|
483
419
|
return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
|
|
484
420
|
}
|
|
485
|
-
function
|
|
486
|
-
return
|
|
421
|
+
function A(t) {
|
|
422
|
+
return j(t);
|
|
487
423
|
}
|
|
488
|
-
function
|
|
424
|
+
function j(t, e) {
|
|
489
425
|
return t == null ? t : {
|
|
490
426
|
name: t.name,
|
|
491
427
|
code: t.code,
|
|
492
|
-
simplifiedState:
|
|
428
|
+
simplifiedState: Z(
|
|
493
429
|
t.simplifiedState
|
|
494
430
|
)
|
|
495
431
|
};
|
|
496
432
|
}
|
|
497
|
-
function
|
|
433
|
+
function J(t) {
|
|
498
434
|
if (t !== void 0)
|
|
499
435
|
return t === null ? null : {
|
|
500
436
|
name: t.name,
|
|
@@ -502,59 +438,82 @@ function E(t) {
|
|
|
502
438
|
simplifiedState: t.simplifiedState
|
|
503
439
|
};
|
|
504
440
|
}
|
|
505
|
-
function
|
|
441
|
+
function Qe(t) {
|
|
506
442
|
let e = !0;
|
|
507
443
|
return e = e && "transferProcessId" in t, e = e && "lastUpdatedDate" in t, e = e && "state" in t, e;
|
|
508
444
|
}
|
|
509
|
-
function
|
|
510
|
-
return
|
|
445
|
+
function tt(t) {
|
|
446
|
+
return et(t);
|
|
511
447
|
}
|
|
512
|
-
function
|
|
448
|
+
function et(t, e) {
|
|
513
449
|
return t == null ? t : {
|
|
514
450
|
transferProcessId: t.transferProcessId,
|
|
515
451
|
lastUpdatedDate: new Date(t.lastUpdatedDate),
|
|
516
|
-
state:
|
|
452
|
+
state: A(t.state),
|
|
517
453
|
errorMessage: a(t, "errorMessage") ? t.errorMessage : void 0
|
|
518
454
|
};
|
|
519
455
|
}
|
|
520
|
-
function
|
|
456
|
+
function rt(t) {
|
|
521
457
|
if (t !== void 0)
|
|
522
458
|
return t === null ? null : {
|
|
523
459
|
transferProcessId: t.transferProcessId,
|
|
524
460
|
lastUpdatedDate: t.lastUpdatedDate.toISOString(),
|
|
525
|
-
state:
|
|
461
|
+
state: J(t.state),
|
|
526
462
|
errorMessage: t.errorMessage
|
|
527
463
|
};
|
|
528
464
|
}
|
|
529
|
-
const
|
|
465
|
+
const Ve = {
|
|
466
|
+
Eq: "EQ",
|
|
467
|
+
Neq: "NEQ",
|
|
468
|
+
Gt: "GT",
|
|
469
|
+
Geq: "GEQ",
|
|
470
|
+
Lt: "LT",
|
|
471
|
+
Leq: "LEQ",
|
|
472
|
+
In: "IN",
|
|
473
|
+
HasPart: "HAS_PART",
|
|
474
|
+
IsA: "IS_A",
|
|
475
|
+
IsAllOf: "IS_ALL_OF",
|
|
476
|
+
IsAnyOf: "IS_ANY_OF",
|
|
477
|
+
IsNoneOf: "IS_NONE_OF"
|
|
478
|
+
};
|
|
479
|
+
function nt(t) {
|
|
480
|
+
return it(t);
|
|
481
|
+
}
|
|
482
|
+
function it(t, e) {
|
|
483
|
+
return t;
|
|
484
|
+
}
|
|
485
|
+
function Be(t) {
|
|
486
|
+
return t;
|
|
487
|
+
}
|
|
488
|
+
const ze = {
|
|
530
489
|
String: "STRING",
|
|
531
490
|
StringList: "STRING_LIST",
|
|
532
491
|
Json: "JSON"
|
|
533
492
|
};
|
|
534
|
-
function
|
|
535
|
-
return
|
|
493
|
+
function ot(t) {
|
|
494
|
+
return at(t);
|
|
536
495
|
}
|
|
537
|
-
function
|
|
496
|
+
function at(t, e) {
|
|
538
497
|
return t;
|
|
539
498
|
}
|
|
540
|
-
function
|
|
499
|
+
function Xe(t) {
|
|
541
500
|
return t;
|
|
542
501
|
}
|
|
543
|
-
function
|
|
502
|
+
function Ye(t) {
|
|
544
503
|
let e = !0;
|
|
545
504
|
return e = e && "type" in t, e;
|
|
546
505
|
}
|
|
547
|
-
function
|
|
548
|
-
return
|
|
506
|
+
function st(t) {
|
|
507
|
+
return ct(t);
|
|
549
508
|
}
|
|
550
|
-
function
|
|
509
|
+
function ct(t, e) {
|
|
551
510
|
return t == null ? t : {
|
|
552
|
-
type:
|
|
511
|
+
type: ot(t.type),
|
|
553
512
|
value: a(t, "value") ? t.value : void 0,
|
|
554
513
|
valueList: a(t, "valueList") ? t.valueList : void 0
|
|
555
514
|
};
|
|
556
515
|
}
|
|
557
|
-
function
|
|
516
|
+
function dt(t) {
|
|
558
517
|
if (t !== void 0)
|
|
559
518
|
return t === null ? null : {
|
|
560
519
|
type: t.type,
|
|
@@ -562,77 +521,77 @@ function Pt(t) {
|
|
|
562
521
|
valueList: t.valueList
|
|
563
522
|
};
|
|
564
523
|
}
|
|
565
|
-
function
|
|
524
|
+
function We(t) {
|
|
566
525
|
let e = !0;
|
|
567
526
|
return e = e && "left" in t, e = e && "operator" in t, e = e && "right" in t, e;
|
|
568
527
|
}
|
|
569
|
-
function
|
|
570
|
-
return
|
|
528
|
+
function R(t) {
|
|
529
|
+
return ut(t);
|
|
571
530
|
}
|
|
572
|
-
function
|
|
531
|
+
function ut(t, e) {
|
|
573
532
|
return t == null ? t : {
|
|
574
533
|
left: t.left,
|
|
575
|
-
operator:
|
|
576
|
-
right:
|
|
534
|
+
operator: nt(t.operator),
|
|
535
|
+
right: st(t.right)
|
|
577
536
|
};
|
|
578
537
|
}
|
|
579
|
-
function
|
|
538
|
+
function U(t) {
|
|
580
539
|
if (t !== void 0)
|
|
581
540
|
return t === null ? null : {
|
|
582
541
|
left: t.left,
|
|
583
542
|
operator: t.operator,
|
|
584
|
-
right:
|
|
543
|
+
right: dt(t.right)
|
|
585
544
|
};
|
|
586
545
|
}
|
|
587
|
-
function
|
|
546
|
+
function Ze(t) {
|
|
588
547
|
let e = !0;
|
|
589
548
|
return e = e && "policyJsonLd" in t, e = e && "errors" in t, e;
|
|
590
549
|
}
|
|
591
|
-
function
|
|
592
|
-
return
|
|
550
|
+
function y(t) {
|
|
551
|
+
return ft(t);
|
|
593
552
|
}
|
|
594
|
-
function
|
|
553
|
+
function ft(t, e) {
|
|
595
554
|
return t == null ? t : {
|
|
596
555
|
policyJsonLd: t.policyJsonLd,
|
|
597
556
|
constraints: a(t, "constraints") ? t.constraints.map(
|
|
598
|
-
|
|
557
|
+
R
|
|
599
558
|
) : void 0,
|
|
600
559
|
errors: t.errors
|
|
601
560
|
};
|
|
602
561
|
}
|
|
603
|
-
function
|
|
562
|
+
function P(t) {
|
|
604
563
|
if (t !== void 0)
|
|
605
564
|
return t === null ? null : {
|
|
606
565
|
policyJsonLd: t.policyJsonLd,
|
|
607
566
|
constraints: t.constraints === void 0 ? void 0 : t.constraints.map(
|
|
608
|
-
|
|
567
|
+
U
|
|
609
568
|
),
|
|
610
569
|
errors: t.errors
|
|
611
570
|
};
|
|
612
571
|
}
|
|
613
|
-
function
|
|
572
|
+
function ve(t) {
|
|
614
573
|
let e = !0;
|
|
615
574
|
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;
|
|
616
575
|
}
|
|
617
|
-
function
|
|
618
|
-
return
|
|
576
|
+
function pt(t) {
|
|
577
|
+
return gt(t);
|
|
619
578
|
}
|
|
620
|
-
function
|
|
579
|
+
function gt(t, e) {
|
|
621
580
|
return t == null ? t : {
|
|
622
581
|
contractAgreementId: t.contractAgreementId,
|
|
623
582
|
contractNegotiationId: t.contractNegotiationId,
|
|
624
|
-
direction:
|
|
583
|
+
direction: N(t.direction),
|
|
625
584
|
counterPartyAddress: t.counterPartyAddress,
|
|
626
585
|
counterPartyId: t.counterPartyId,
|
|
627
586
|
contractSigningDate: new Date(t.contractSigningDate),
|
|
628
|
-
asset:
|
|
629
|
-
contractPolicy:
|
|
587
|
+
asset: l(t.asset),
|
|
588
|
+
contractPolicy: y(t.contractPolicy),
|
|
630
589
|
transferProcesses: t.transferProcesses.map(
|
|
631
|
-
|
|
590
|
+
tt
|
|
632
591
|
)
|
|
633
592
|
};
|
|
634
593
|
}
|
|
635
|
-
function
|
|
594
|
+
function lt(t) {
|
|
636
595
|
if (t !== void 0)
|
|
637
596
|
return t === null ? null : {
|
|
638
597
|
contractAgreementId: t.contractAgreementId,
|
|
@@ -641,62 +600,62 @@ function Ot(t) {
|
|
|
641
600
|
counterPartyAddress: t.counterPartyAddress,
|
|
642
601
|
counterPartyId: t.counterPartyId,
|
|
643
602
|
contractSigningDate: t.contractSigningDate.toISOString(),
|
|
644
|
-
asset:
|
|
645
|
-
contractPolicy:
|
|
603
|
+
asset: m(t.asset),
|
|
604
|
+
contractPolicy: P(t.contractPolicy),
|
|
646
605
|
transferProcesses: t.transferProcesses.map(
|
|
647
|
-
|
|
606
|
+
rt
|
|
648
607
|
)
|
|
649
608
|
};
|
|
650
609
|
}
|
|
651
|
-
function
|
|
610
|
+
function je(t) {
|
|
652
611
|
let e = !0;
|
|
653
612
|
return e = e && "contractAgreements" in t, e;
|
|
654
613
|
}
|
|
655
|
-
function
|
|
656
|
-
return
|
|
614
|
+
function mt(t) {
|
|
615
|
+
return yt(t);
|
|
657
616
|
}
|
|
658
|
-
function
|
|
617
|
+
function yt(t, e) {
|
|
659
618
|
return t == null ? t : {
|
|
660
619
|
contractAgreements: t.contractAgreements.map(
|
|
661
|
-
|
|
620
|
+
pt
|
|
662
621
|
)
|
|
663
622
|
};
|
|
664
623
|
}
|
|
665
|
-
function
|
|
624
|
+
function tr(t) {
|
|
666
625
|
if (t !== void 0)
|
|
667
626
|
return t === null ? null : {
|
|
668
627
|
contractAgreements: t.contractAgreements.map(
|
|
669
|
-
|
|
628
|
+
lt
|
|
670
629
|
)
|
|
671
630
|
};
|
|
672
631
|
}
|
|
673
|
-
const
|
|
632
|
+
const er = {
|
|
674
633
|
Value: "VALUE",
|
|
675
634
|
ValueList: "VALUE_LIST"
|
|
676
635
|
};
|
|
677
|
-
function
|
|
678
|
-
return
|
|
636
|
+
function Pt(t) {
|
|
637
|
+
return ht(t);
|
|
679
638
|
}
|
|
680
|
-
function
|
|
639
|
+
function ht(t, e) {
|
|
681
640
|
return t;
|
|
682
641
|
}
|
|
683
|
-
function
|
|
642
|
+
function rr(t) {
|
|
684
643
|
return t;
|
|
685
644
|
}
|
|
686
|
-
function
|
|
645
|
+
function nr(t) {
|
|
687
646
|
return !0;
|
|
688
647
|
}
|
|
689
|
-
function
|
|
690
|
-
return
|
|
648
|
+
function It(t) {
|
|
649
|
+
return Ct(t);
|
|
691
650
|
}
|
|
692
|
-
function
|
|
651
|
+
function Ct(t, e) {
|
|
693
652
|
return t == null ? t : {
|
|
694
|
-
type: a(t, "type") ?
|
|
653
|
+
type: a(t, "type") ? Pt(t.type) : void 0,
|
|
695
654
|
value: a(t, "value") ? t.value : void 0,
|
|
696
655
|
valueList: a(t, "valueList") ? t.valueList : void 0
|
|
697
656
|
};
|
|
698
657
|
}
|
|
699
|
-
function
|
|
658
|
+
function wt(t) {
|
|
700
659
|
if (t !== void 0)
|
|
701
660
|
return t === null ? null : {
|
|
702
661
|
type: t.type,
|
|
@@ -704,178 +663,128 @@ function Jt(t) {
|
|
|
704
663
|
valueList: t.valueList
|
|
705
664
|
};
|
|
706
665
|
}
|
|
707
|
-
const
|
|
666
|
+
const ir = {
|
|
708
667
|
Eq: "EQ",
|
|
709
668
|
In: "IN",
|
|
710
669
|
Like: "LIKE"
|
|
711
670
|
};
|
|
712
|
-
function
|
|
713
|
-
return
|
|
671
|
+
function Dt(t) {
|
|
672
|
+
return St(t);
|
|
714
673
|
}
|
|
715
|
-
function
|
|
674
|
+
function St(t, e) {
|
|
716
675
|
return t;
|
|
717
676
|
}
|
|
718
|
-
function
|
|
677
|
+
function or(t) {
|
|
719
678
|
return t;
|
|
720
679
|
}
|
|
721
|
-
function
|
|
680
|
+
function ar(t) {
|
|
722
681
|
let e = !0;
|
|
723
682
|
return e = e && "operandLeft" in t, e = e && "operator" in t, e = e && "operandRight" in t, e;
|
|
724
683
|
}
|
|
725
|
-
function
|
|
726
|
-
return
|
|
684
|
+
function q(t) {
|
|
685
|
+
return Ot(t);
|
|
727
686
|
}
|
|
728
|
-
function
|
|
687
|
+
function Ot(t, e) {
|
|
729
688
|
return t == null ? t : {
|
|
730
689
|
operandLeft: t.operandLeft,
|
|
731
|
-
operator:
|
|
732
|
-
operandRight:
|
|
690
|
+
operator: Dt(t.operator),
|
|
691
|
+
operandRight: It(t.operandRight)
|
|
733
692
|
};
|
|
734
693
|
}
|
|
735
|
-
function
|
|
694
|
+
function F(t) {
|
|
736
695
|
if (t !== void 0)
|
|
737
696
|
return t === null ? null : {
|
|
738
697
|
operandLeft: t.operandLeft,
|
|
739
698
|
operator: t.operator,
|
|
740
|
-
operandRight:
|
|
699
|
+
operandRight: wt(t.operandRight)
|
|
741
700
|
};
|
|
742
701
|
}
|
|
743
|
-
function
|
|
702
|
+
function sr(t) {
|
|
744
703
|
let e = !0;
|
|
745
704
|
return e = e && "contractDefinitionId" in t, e = e && "accessPolicyId" in t, e = e && "contractPolicyId" in t, e = e && "assetSelector" in t, e;
|
|
746
705
|
}
|
|
747
|
-
function
|
|
748
|
-
return
|
|
706
|
+
function Tt(t) {
|
|
707
|
+
return Nt(t);
|
|
749
708
|
}
|
|
750
|
-
function
|
|
709
|
+
function Nt(t, e) {
|
|
751
710
|
return t == null ? t : {
|
|
752
711
|
contractDefinitionId: t.contractDefinitionId,
|
|
753
712
|
accessPolicyId: t.accessPolicyId,
|
|
754
713
|
contractPolicyId: t.contractPolicyId,
|
|
755
714
|
assetSelector: t.assetSelector.map(
|
|
756
|
-
|
|
715
|
+
q
|
|
757
716
|
)
|
|
758
717
|
};
|
|
759
718
|
}
|
|
760
|
-
function
|
|
719
|
+
function At(t) {
|
|
761
720
|
if (t !== void 0)
|
|
762
721
|
return t === null ? null : {
|
|
763
722
|
contractDefinitionId: t.contractDefinitionId,
|
|
764
723
|
accessPolicyId: t.accessPolicyId,
|
|
765
724
|
contractPolicyId: t.contractPolicyId,
|
|
766
725
|
assetSelector: t.assetSelector.map(
|
|
767
|
-
|
|
726
|
+
F
|
|
768
727
|
)
|
|
769
728
|
};
|
|
770
729
|
}
|
|
771
|
-
function
|
|
730
|
+
function cr(t) {
|
|
772
731
|
let e = !0;
|
|
773
732
|
return e = e && "contractDefinitions" in t, e;
|
|
774
733
|
}
|
|
775
|
-
function
|
|
776
|
-
return
|
|
734
|
+
function Jt(t) {
|
|
735
|
+
return Rt(t);
|
|
777
736
|
}
|
|
778
|
-
function
|
|
737
|
+
function Rt(t, e) {
|
|
779
738
|
return t == null ? t : {
|
|
780
739
|
contractDefinitions: t.contractDefinitions.map(
|
|
781
|
-
|
|
740
|
+
Tt
|
|
782
741
|
)
|
|
783
742
|
};
|
|
784
743
|
}
|
|
785
|
-
function
|
|
744
|
+
function dr(t) {
|
|
786
745
|
if (t !== void 0)
|
|
787
746
|
return t === null ? null : {
|
|
788
747
|
contractDefinitions: t.contractDefinitions.map(
|
|
789
|
-
|
|
748
|
+
At
|
|
790
749
|
)
|
|
791
750
|
};
|
|
792
751
|
}
|
|
793
|
-
function
|
|
752
|
+
function ur(t) {
|
|
794
753
|
let e = !0;
|
|
795
754
|
return e = e && "contractDefinitionId" in t, e = e && "contractPolicyId" in t, e = e && "accessPolicyId" in t, e = e && "assetSelector" in t, e;
|
|
796
755
|
}
|
|
797
|
-
function
|
|
798
|
-
return
|
|
756
|
+
function fr(t) {
|
|
757
|
+
return Ut(t);
|
|
799
758
|
}
|
|
800
|
-
function
|
|
759
|
+
function Ut(t, e) {
|
|
801
760
|
return t == null ? t : {
|
|
802
761
|
contractDefinitionId: t.contractDefinitionId,
|
|
803
762
|
contractPolicyId: t.contractPolicyId,
|
|
804
763
|
accessPolicyId: t.accessPolicyId,
|
|
805
764
|
assetSelector: t.assetSelector.map(
|
|
806
|
-
|
|
765
|
+
q
|
|
807
766
|
)
|
|
808
767
|
};
|
|
809
768
|
}
|
|
810
|
-
function
|
|
769
|
+
function qt(t) {
|
|
811
770
|
if (t !== void 0)
|
|
812
771
|
return t === null ? null : {
|
|
813
772
|
contractDefinitionId: t.contractDefinitionId,
|
|
814
773
|
contractPolicyId: t.contractPolicyId,
|
|
815
774
|
accessPolicyId: t.accessPolicyId,
|
|
816
775
|
assetSelector: t.assetSelector.map(
|
|
817
|
-
|
|
776
|
+
F
|
|
818
777
|
)
|
|
819
778
|
};
|
|
820
779
|
}
|
|
821
|
-
function
|
|
822
|
-
let e = !0;
|
|
823
|
-
return e = e && "operandLeft" in t, e = e && "operator" in t, e;
|
|
824
|
-
}
|
|
825
|
-
function Gt(t) {
|
|
826
|
-
return Kt(t);
|
|
827
|
-
}
|
|
828
|
-
function Kt(t, e) {
|
|
829
|
-
return t == null ? t : {
|
|
830
|
-
operandLeft: t.operandLeft,
|
|
831
|
-
operator: t.operator,
|
|
832
|
-
operandRight: a(t, "operandRight") ? t.operandRight : void 0
|
|
833
|
-
};
|
|
834
|
-
}
|
|
835
|
-
function $t(t) {
|
|
836
|
-
if (t !== void 0)
|
|
837
|
-
return t === null ? null : {
|
|
838
|
-
operandLeft: t.operandLeft,
|
|
839
|
-
operator: t.operator,
|
|
840
|
-
operandRight: t.operandRight
|
|
841
|
-
};
|
|
842
|
-
}
|
|
843
|
-
function _r(t) {
|
|
844
|
-
let e = !0;
|
|
845
|
-
return e = e && "accessPolicyId" in t, e = e && "contractPolicyId" in t, e = e && "assetsSelector" in t, e;
|
|
846
|
-
}
|
|
847
|
-
function _t(t) {
|
|
848
|
-
return Qt(t);
|
|
849
|
-
}
|
|
850
|
-
function Qt(t, e) {
|
|
851
|
-
return t == null ? t : {
|
|
852
|
-
id: a(t, "id") ? t.id : void 0,
|
|
853
|
-
accessPolicyId: t.accessPolicyId,
|
|
854
|
-
contractPolicyId: t.contractPolicyId,
|
|
855
|
-
assetsSelector: t.assetsSelector.map(
|
|
856
|
-
Gt
|
|
857
|
-
)
|
|
858
|
-
};
|
|
859
|
-
}
|
|
860
|
-
function Vt(t) {
|
|
861
|
-
if (t !== void 0)
|
|
862
|
-
return t === null ? null : {
|
|
863
|
-
id: t.id,
|
|
864
|
-
accessPolicyId: t.accessPolicyId,
|
|
865
|
-
contractPolicyId: t.contractPolicyId,
|
|
866
|
-
assetsSelector: t.assetsSelector.map(
|
|
867
|
-
$t
|
|
868
|
-
)
|
|
869
|
-
};
|
|
870
|
-
}
|
|
871
|
-
function Qr(t) {
|
|
780
|
+
function pr(t) {
|
|
872
781
|
let e = !0;
|
|
873
782
|
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;
|
|
874
783
|
}
|
|
875
|
-
function
|
|
876
|
-
return
|
|
784
|
+
function gr(t) {
|
|
785
|
+
return Ft(t);
|
|
877
786
|
}
|
|
878
|
-
function
|
|
787
|
+
function Ft(t, e) {
|
|
879
788
|
return t == null ? t : {
|
|
880
789
|
counterPartyAddress: t.counterPartyAddress,
|
|
881
790
|
counterPartyParticipantId: t.counterPartyParticipantId,
|
|
@@ -884,7 +793,7 @@ function Bt(t, e) {
|
|
|
884
793
|
assetId: t.assetId
|
|
885
794
|
};
|
|
886
795
|
}
|
|
887
|
-
function
|
|
796
|
+
function Et(t) {
|
|
888
797
|
if (t !== void 0)
|
|
889
798
|
return t === null ? null : {
|
|
890
799
|
counterPartyAddress: t.counterPartyAddress,
|
|
@@ -894,37 +803,37 @@ function zt(t) {
|
|
|
894
803
|
assetId: t.assetId
|
|
895
804
|
};
|
|
896
805
|
}
|
|
897
|
-
const
|
|
806
|
+
const lr = {
|
|
898
807
|
InProgress: "IN_PROGRESS",
|
|
899
808
|
Agreed: "AGREED",
|
|
900
809
|
Terminated: "TERMINATED"
|
|
901
810
|
};
|
|
902
|
-
function
|
|
903
|
-
return
|
|
811
|
+
function bt(t) {
|
|
812
|
+
return Lt(t);
|
|
904
813
|
}
|
|
905
|
-
function
|
|
814
|
+
function Lt(t, e) {
|
|
906
815
|
return t;
|
|
907
816
|
}
|
|
908
|
-
function
|
|
817
|
+
function mr(t) {
|
|
909
818
|
return t;
|
|
910
819
|
}
|
|
911
|
-
function
|
|
820
|
+
function yr(t) {
|
|
912
821
|
let e = !0;
|
|
913
822
|
return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
|
|
914
823
|
}
|
|
915
|
-
function
|
|
916
|
-
return
|
|
824
|
+
function Mt(t) {
|
|
825
|
+
return Ht(t);
|
|
917
826
|
}
|
|
918
|
-
function
|
|
827
|
+
function Ht(t, e) {
|
|
919
828
|
return t == null ? t : {
|
|
920
829
|
name: t.name,
|
|
921
830
|
code: t.code,
|
|
922
|
-
simplifiedState:
|
|
831
|
+
simplifiedState: bt(
|
|
923
832
|
t.simplifiedState
|
|
924
833
|
)
|
|
925
834
|
};
|
|
926
835
|
}
|
|
927
|
-
function
|
|
836
|
+
function kt(t) {
|
|
928
837
|
if (t !== void 0)
|
|
929
838
|
return t === null ? null : {
|
|
930
839
|
name: t.name,
|
|
@@ -932,169 +841,41 @@ function vt(t) {
|
|
|
932
841
|
simplifiedState: t.simplifiedState
|
|
933
842
|
};
|
|
934
843
|
}
|
|
935
|
-
|
|
936
|
-
Empty: "EMPTY",
|
|
937
|
-
AtomicConstraint: "ATOMIC_CONSTRAINT",
|
|
938
|
-
And: "AND",
|
|
939
|
-
Or: "OR",
|
|
940
|
-
Xor: "XOR"
|
|
941
|
-
};
|
|
942
|
-
function jt(t) {
|
|
943
|
-
return te(t);
|
|
944
|
-
}
|
|
945
|
-
function te(t, e) {
|
|
946
|
-
return t;
|
|
947
|
-
}
|
|
948
|
-
function Wr(t) {
|
|
949
|
-
return t;
|
|
950
|
-
}
|
|
951
|
-
function Zr(t) {
|
|
952
|
-
return !0;
|
|
953
|
-
}
|
|
954
|
-
function m(t) {
|
|
955
|
-
return ee(t);
|
|
956
|
-
}
|
|
957
|
-
function ee(t, e) {
|
|
958
|
-
return t == null ? t : {
|
|
959
|
-
type: a(t, "type") ? jt(t.type) : void 0,
|
|
960
|
-
atomicConstraint: a(t, "atomicConstraint") ? et(t.atomicConstraint) : void 0,
|
|
961
|
-
and: a(t, "and") ? t.and.map(m) : void 0,
|
|
962
|
-
or: a(t, "or") ? t.or.map(m) : void 0,
|
|
963
|
-
xor: a(t, "xor") ? t.xor.map(m) : void 0
|
|
964
|
-
};
|
|
965
|
-
}
|
|
966
|
-
function g(t) {
|
|
967
|
-
if (t !== void 0)
|
|
968
|
-
return t === null ? null : {
|
|
969
|
-
type: t.type,
|
|
970
|
-
atomicConstraint: nt(t.atomicConstraint),
|
|
971
|
-
and: t.and === void 0 ? void 0 : t.and.map(g),
|
|
972
|
-
or: t.or === void 0 ? void 0 : t.or.map(g),
|
|
973
|
-
xor: t.xor === void 0 ? void 0 : t.xor.map(g)
|
|
974
|
-
};
|
|
975
|
-
}
|
|
976
|
-
function vr(t) {
|
|
977
|
-
let e = !0;
|
|
978
|
-
return e = e && "constraints" in t, e;
|
|
979
|
-
}
|
|
980
|
-
function re(t) {
|
|
981
|
-
return ne(t);
|
|
982
|
-
}
|
|
983
|
-
function ne(t, e) {
|
|
984
|
-
return t == null ? t : {
|
|
985
|
-
constraints: m(t.constraints)
|
|
986
|
-
};
|
|
987
|
-
}
|
|
988
|
-
function ie(t) {
|
|
989
|
-
if (t !== void 0)
|
|
990
|
-
return t === null ? null : {
|
|
991
|
-
constraints: g(t.constraints)
|
|
992
|
-
};
|
|
993
|
-
}
|
|
994
|
-
function jr(t) {
|
|
995
|
-
let e = !0;
|
|
996
|
-
return e = e && "legacyPolicy" in t, e = e && "permission" in t, e;
|
|
997
|
-
}
|
|
998
|
-
function oe(t) {
|
|
999
|
-
return ae(t);
|
|
1000
|
-
}
|
|
1001
|
-
function ae(t, e) {
|
|
1002
|
-
return t == null ? t : {
|
|
1003
|
-
legacyPolicy: t.legacyPolicy,
|
|
1004
|
-
permission: re(t.permission)
|
|
1005
|
-
};
|
|
1006
|
-
}
|
|
1007
|
-
function se(t) {
|
|
1008
|
-
if (t !== void 0)
|
|
1009
|
-
return t === null ? null : {
|
|
1010
|
-
legacyPolicy: t.legacyPolicy,
|
|
1011
|
-
permission: ie(t.permission)
|
|
1012
|
-
};
|
|
1013
|
-
}
|
|
1014
|
-
function tn(t) {
|
|
1015
|
-
let e = !0;
|
|
1016
|
-
return e = e && "id" in t, e = e && "policy" in t, e;
|
|
1017
|
-
}
|
|
1018
|
-
function ce(t) {
|
|
1019
|
-
return de(t);
|
|
1020
|
-
}
|
|
1021
|
-
function de(t, e) {
|
|
1022
|
-
return t == null ? t : {
|
|
1023
|
-
id: t.id,
|
|
1024
|
-
policy: oe(t.policy)
|
|
1025
|
-
};
|
|
1026
|
-
}
|
|
1027
|
-
function ue(t) {
|
|
1028
|
-
if (t !== void 0)
|
|
1029
|
-
return t === null ? null : {
|
|
1030
|
-
id: t.id,
|
|
1031
|
-
policy: se(t.policy)
|
|
1032
|
-
};
|
|
1033
|
-
}
|
|
1034
|
-
function en(t) {
|
|
1035
|
-
return !0;
|
|
1036
|
-
}
|
|
1037
|
-
function rn(t) {
|
|
1038
|
-
return fe(t);
|
|
1039
|
-
}
|
|
1040
|
-
function fe(t, e) {
|
|
1041
|
-
return t == null ? t : {
|
|
1042
|
-
assetEntry: a(t, "assetEntry") ? X(t.assetEntry) : void 0,
|
|
1043
|
-
policyDefinitionRequest: a(t, "policyDefinitionRequest") ? ce(
|
|
1044
|
-
t.policyDefinitionRequest
|
|
1045
|
-
) : void 0,
|
|
1046
|
-
contractDefinitionRequest: a(t, "contractDefinitionRequest") ? _t(
|
|
1047
|
-
t.contractDefinitionRequest
|
|
1048
|
-
) : void 0
|
|
1049
|
-
};
|
|
1050
|
-
}
|
|
1051
|
-
function pe(t) {
|
|
1052
|
-
if (t !== void 0)
|
|
1053
|
-
return t === null ? null : {
|
|
1054
|
-
assetEntry: W(t.assetEntry),
|
|
1055
|
-
policyDefinitionRequest: ue(
|
|
1056
|
-
t.policyDefinitionRequest
|
|
1057
|
-
),
|
|
1058
|
-
contractDefinitionRequest: Vt(
|
|
1059
|
-
t.contractDefinitionRequest
|
|
1060
|
-
)
|
|
1061
|
-
};
|
|
1062
|
-
}
|
|
1063
|
-
function nn(t) {
|
|
844
|
+
function Pr(t) {
|
|
1064
845
|
let e = !0;
|
|
1065
846
|
return e = e && "tokenUrl" in t, e = e && "jwksUrl" in t, e;
|
|
1066
847
|
}
|
|
1067
|
-
function
|
|
1068
|
-
return
|
|
848
|
+
function xt(t) {
|
|
849
|
+
return Gt(t);
|
|
1069
850
|
}
|
|
1070
|
-
function
|
|
851
|
+
function Gt(t, e) {
|
|
1071
852
|
return t == null ? t : {
|
|
1072
853
|
tokenUrl: t.tokenUrl,
|
|
1073
854
|
jwksUrl: t.jwksUrl
|
|
1074
855
|
};
|
|
1075
856
|
}
|
|
1076
|
-
function
|
|
857
|
+
function Kt(t) {
|
|
1077
858
|
if (t !== void 0)
|
|
1078
859
|
return t === null ? null : {
|
|
1079
860
|
tokenUrl: t.tokenUrl,
|
|
1080
861
|
jwksUrl: t.jwksUrl
|
|
1081
862
|
};
|
|
1082
863
|
}
|
|
1083
|
-
function
|
|
864
|
+
function hr(t) {
|
|
1084
865
|
let e = !0;
|
|
1085
866
|
return e = e && "url" in t, e = e && "tokenUrl" in t, e = e && "authorityId" in t, e;
|
|
1086
867
|
}
|
|
1087
|
-
function
|
|
1088
|
-
return
|
|
868
|
+
function $t(t) {
|
|
869
|
+
return _t(t);
|
|
1089
870
|
}
|
|
1090
|
-
function
|
|
871
|
+
function _t(t, e) {
|
|
1091
872
|
return t == null ? t : {
|
|
1092
873
|
url: t.url,
|
|
1093
874
|
tokenUrl: t.tokenUrl,
|
|
1094
875
|
authorityId: t.authorityId
|
|
1095
876
|
};
|
|
1096
877
|
}
|
|
1097
|
-
function
|
|
878
|
+
function Qt(t) {
|
|
1098
879
|
if (t !== void 0)
|
|
1099
880
|
return t === null ? null : {
|
|
1100
881
|
url: t.url,
|
|
@@ -1102,14 +883,14 @@ function he(t) {
|
|
|
1102
883
|
authorityId: t.authorityId
|
|
1103
884
|
};
|
|
1104
885
|
}
|
|
1105
|
-
function
|
|
886
|
+
function Ir(t) {
|
|
1106
887
|
let e = !0;
|
|
1107
888
|
return e = e && "numTotal" in t, e = e && "numRunning" in t, e = e && "numOk" in t, e = e && "numError" in t, e;
|
|
1108
889
|
}
|
|
1109
|
-
function
|
|
1110
|
-
return
|
|
890
|
+
function C(t) {
|
|
891
|
+
return Vt(t);
|
|
1111
892
|
}
|
|
1112
|
-
function
|
|
893
|
+
function Vt(t, e) {
|
|
1113
894
|
return t == null ? t : {
|
|
1114
895
|
numTotal: t.numTotal,
|
|
1115
896
|
numRunning: t.numRunning,
|
|
@@ -1117,7 +898,7 @@ function De(t, e) {
|
|
|
1117
898
|
numError: t.numError
|
|
1118
899
|
};
|
|
1119
900
|
}
|
|
1120
|
-
function
|
|
901
|
+
function w(t) {
|
|
1121
902
|
if (t !== void 0)
|
|
1122
903
|
return t === null ? null : {
|
|
1123
904
|
numTotal: t.numTotal,
|
|
@@ -1126,24 +907,24 @@ function S(t) {
|
|
|
1126
907
|
numError: t.numError
|
|
1127
908
|
};
|
|
1128
909
|
}
|
|
1129
|
-
function
|
|
910
|
+
function Cr(t) {
|
|
1130
911
|
let e = !0;
|
|
1131
912
|
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;
|
|
1132
913
|
}
|
|
1133
|
-
function
|
|
1134
|
-
return
|
|
914
|
+
function Bt(t) {
|
|
915
|
+
return zt(t);
|
|
1135
916
|
}
|
|
1136
|
-
function
|
|
917
|
+
function zt(t, e) {
|
|
1137
918
|
return t == null ? t : {
|
|
1138
919
|
numAssets: t.numAssets,
|
|
1139
920
|
numPolicies: t.numPolicies,
|
|
1140
921
|
numContractDefinitions: t.numContractDefinitions,
|
|
1141
922
|
numContractAgreementsConsuming: t.numContractAgreementsConsuming,
|
|
1142
923
|
numContractAgreementsProviding: t.numContractAgreementsProviding,
|
|
1143
|
-
transferProcessesConsuming:
|
|
924
|
+
transferProcessesConsuming: C(
|
|
1144
925
|
t.transferProcessesConsuming
|
|
1145
926
|
),
|
|
1146
|
-
transferProcessesProviding:
|
|
927
|
+
transferProcessesProviding: C(
|
|
1147
928
|
t.transferProcessesProviding
|
|
1148
929
|
),
|
|
1149
930
|
connectorEndpoint: t.connectorEndpoint,
|
|
@@ -1154,11 +935,11 @@ function Ce(t, e) {
|
|
|
1154
935
|
connectorCuratorName: t.connectorCuratorName,
|
|
1155
936
|
connectorMaintainerUrl: t.connectorMaintainerUrl,
|
|
1156
937
|
connectorMaintainerName: t.connectorMaintainerName,
|
|
1157
|
-
connectorDapsConfig: a(t, "connectorDapsConfig") ?
|
|
1158
|
-
connectorMiwConfig: a(t, "connectorMiwConfig") ?
|
|
938
|
+
connectorDapsConfig: a(t, "connectorDapsConfig") ? xt(t.connectorDapsConfig) : void 0,
|
|
939
|
+
connectorMiwConfig: a(t, "connectorMiwConfig") ? $t(t.connectorMiwConfig) : void 0
|
|
1159
940
|
};
|
|
1160
941
|
}
|
|
1161
|
-
function
|
|
942
|
+
function wr(t) {
|
|
1162
943
|
if (t !== void 0)
|
|
1163
944
|
return t === null ? null : {
|
|
1164
945
|
numAssets: t.numAssets,
|
|
@@ -1166,10 +947,10 @@ function cn(t) {
|
|
|
1166
947
|
numContractDefinitions: t.numContractDefinitions,
|
|
1167
948
|
numContractAgreementsConsuming: t.numContractAgreementsConsuming,
|
|
1168
949
|
numContractAgreementsProviding: t.numContractAgreementsProviding,
|
|
1169
|
-
transferProcessesConsuming:
|
|
950
|
+
transferProcessesConsuming: w(
|
|
1170
951
|
t.transferProcessesConsuming
|
|
1171
952
|
),
|
|
1172
|
-
transferProcessesProviding:
|
|
953
|
+
transferProcessesProviding: w(
|
|
1173
954
|
t.transferProcessesProviding
|
|
1174
955
|
),
|
|
1175
956
|
connectorEndpoint: t.connectorEndpoint,
|
|
@@ -1180,67 +961,67 @@ function cn(t) {
|
|
|
1180
961
|
connectorCuratorName: t.connectorCuratorName,
|
|
1181
962
|
connectorMaintainerUrl: t.connectorMaintainerUrl,
|
|
1182
963
|
connectorMaintainerName: t.connectorMaintainerName,
|
|
1183
|
-
connectorDapsConfig:
|
|
964
|
+
connectorDapsConfig: Kt(
|
|
1184
965
|
t.connectorDapsConfig
|
|
1185
966
|
),
|
|
1186
|
-
connectorMiwConfig:
|
|
967
|
+
connectorMiwConfig: Qt(t.connectorMiwConfig)
|
|
1187
968
|
};
|
|
1188
969
|
}
|
|
1189
|
-
function
|
|
970
|
+
function Dr(t) {
|
|
1190
971
|
let e = !0;
|
|
1191
972
|
return e = e && "id" in t, e = e && "lastUpdatedDate" in t, e;
|
|
1192
973
|
}
|
|
1193
974
|
function d(t) {
|
|
1194
|
-
return
|
|
975
|
+
return Xt(t);
|
|
1195
976
|
}
|
|
1196
|
-
function
|
|
977
|
+
function Xt(t, e) {
|
|
1197
978
|
return t == null ? t : {
|
|
1198
979
|
id: t.id,
|
|
1199
980
|
lastUpdatedDate: new Date(t.lastUpdatedDate)
|
|
1200
981
|
};
|
|
1201
982
|
}
|
|
1202
|
-
function
|
|
983
|
+
function Sr(t) {
|
|
1203
984
|
if (t !== void 0)
|
|
1204
985
|
return t === null ? null : {
|
|
1205
986
|
id: t.id,
|
|
1206
987
|
lastUpdatedDate: t.lastUpdatedDate.toISOString()
|
|
1207
988
|
};
|
|
1208
989
|
}
|
|
1209
|
-
function
|
|
990
|
+
function Or(t) {
|
|
1210
991
|
let e = !0;
|
|
1211
992
|
return e = e && "contractAgreementId" in t, e = e && "transferProcessRequestJsonLd" in t, e;
|
|
1212
993
|
}
|
|
1213
|
-
function
|
|
1214
|
-
return
|
|
994
|
+
function Tr(t) {
|
|
995
|
+
return Yt(t);
|
|
1215
996
|
}
|
|
1216
|
-
function
|
|
997
|
+
function Yt(t, e) {
|
|
1217
998
|
return t == null ? t : {
|
|
1218
999
|
contractAgreementId: t.contractAgreementId,
|
|
1219
1000
|
transferProcessRequestJsonLd: t.transferProcessRequestJsonLd
|
|
1220
1001
|
};
|
|
1221
1002
|
}
|
|
1222
|
-
function
|
|
1003
|
+
function Wt(t) {
|
|
1223
1004
|
if (t !== void 0)
|
|
1224
1005
|
return t === null ? null : {
|
|
1225
1006
|
contractAgreementId: t.contractAgreementId,
|
|
1226
1007
|
transferProcessRequestJsonLd: t.transferProcessRequestJsonLd
|
|
1227
1008
|
};
|
|
1228
1009
|
}
|
|
1229
|
-
function
|
|
1010
|
+
function Nr(t) {
|
|
1230
1011
|
let e = !0;
|
|
1231
1012
|
return e = e && "contractAgreementId" in t, e = e && "dataSinkProperties" in t, e = e && "transferProcessProperties" in t, e;
|
|
1232
1013
|
}
|
|
1233
|
-
function
|
|
1234
|
-
return
|
|
1014
|
+
function Ar(t) {
|
|
1015
|
+
return Zt(t);
|
|
1235
1016
|
}
|
|
1236
|
-
function
|
|
1017
|
+
function Zt(t, e) {
|
|
1237
1018
|
return t == null ? t : {
|
|
1238
1019
|
contractAgreementId: t.contractAgreementId,
|
|
1239
1020
|
dataSinkProperties: t.dataSinkProperties,
|
|
1240
1021
|
transferProcessProperties: t.transferProcessProperties
|
|
1241
1022
|
};
|
|
1242
1023
|
}
|
|
1243
|
-
function
|
|
1024
|
+
function vt(t) {
|
|
1244
1025
|
if (t !== void 0)
|
|
1245
1026
|
return t === null ? null : {
|
|
1246
1027
|
contractAgreementId: t.contractAgreementId,
|
|
@@ -1248,203 +1029,205 @@ function Ne(t) {
|
|
|
1248
1029
|
transferProcessProperties: t.transferProcessProperties
|
|
1249
1030
|
};
|
|
1250
1031
|
}
|
|
1251
|
-
function
|
|
1032
|
+
function Jr(t) {
|
|
1252
1033
|
let e = !0;
|
|
1253
1034
|
return e = e && "incomingTransferProcessCounts" in t, e = e && "outgoingTransferProcessCounts" in t, e;
|
|
1254
1035
|
}
|
|
1255
|
-
function
|
|
1256
|
-
return
|
|
1036
|
+
function jt(t) {
|
|
1037
|
+
return te(t);
|
|
1257
1038
|
}
|
|
1258
|
-
function
|
|
1039
|
+
function te(t, e) {
|
|
1259
1040
|
return t == null ? t : {
|
|
1260
1041
|
incomingTransferProcessCounts: t.incomingTransferProcessCounts,
|
|
1261
1042
|
outgoingTransferProcessCounts: t.outgoingTransferProcessCounts
|
|
1262
1043
|
};
|
|
1263
1044
|
}
|
|
1264
|
-
function
|
|
1045
|
+
function ee(t) {
|
|
1265
1046
|
if (t !== void 0)
|
|
1266
1047
|
return t === null ? null : {
|
|
1267
1048
|
incomingTransferProcessCounts: t.incomingTransferProcessCounts,
|
|
1268
1049
|
outgoingTransferProcessCounts: t.outgoingTransferProcessCounts
|
|
1269
1050
|
};
|
|
1270
1051
|
}
|
|
1271
|
-
function
|
|
1052
|
+
function Rr(t) {
|
|
1272
1053
|
let e = !0;
|
|
1273
1054
|
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;
|
|
1274
1055
|
}
|
|
1275
|
-
function
|
|
1276
|
-
return
|
|
1056
|
+
function re(t) {
|
|
1057
|
+
return ne(t);
|
|
1277
1058
|
}
|
|
1278
|
-
function
|
|
1059
|
+
function ne(t, e) {
|
|
1279
1060
|
return t == null ? t : {
|
|
1280
1061
|
assetsCount: t.assetsCount,
|
|
1281
1062
|
policiesCount: t.policiesCount,
|
|
1282
1063
|
contractDefinitionsCount: t.contractDefinitionsCount,
|
|
1283
1064
|
contractAgreementsCount: t.contractAgreementsCount,
|
|
1284
|
-
transferProcessDto:
|
|
1065
|
+
transferProcessDto: jt(
|
|
1285
1066
|
t.transferProcessDto
|
|
1286
1067
|
)
|
|
1287
1068
|
};
|
|
1288
1069
|
}
|
|
1289
|
-
function
|
|
1070
|
+
function Ur(t) {
|
|
1290
1071
|
if (t !== void 0)
|
|
1291
1072
|
return t === null ? null : {
|
|
1292
1073
|
assetsCount: t.assetsCount,
|
|
1293
1074
|
policiesCount: t.policiesCount,
|
|
1294
1075
|
contractDefinitionsCount: t.contractDefinitionsCount,
|
|
1295
1076
|
contractAgreementsCount: t.contractAgreementsCount,
|
|
1296
|
-
transferProcessDto:
|
|
1077
|
+
transferProcessDto: ee(
|
|
1297
1078
|
t.transferProcessDto
|
|
1298
1079
|
)
|
|
1299
1080
|
};
|
|
1300
1081
|
}
|
|
1301
|
-
function
|
|
1082
|
+
function qr(t) {
|
|
1302
1083
|
return !0;
|
|
1303
1084
|
}
|
|
1304
|
-
function
|
|
1305
|
-
return
|
|
1085
|
+
function ie(t) {
|
|
1086
|
+
return oe(t);
|
|
1306
1087
|
}
|
|
1307
|
-
function
|
|
1088
|
+
function oe(t, e) {
|
|
1308
1089
|
return t == null ? t : {
|
|
1309
1090
|
constraints: a(t, "constraints") ? t.constraints.map(
|
|
1310
|
-
|
|
1091
|
+
R
|
|
1311
1092
|
) : void 0
|
|
1312
1093
|
};
|
|
1313
1094
|
}
|
|
1314
|
-
function
|
|
1095
|
+
function ae(t) {
|
|
1315
1096
|
if (t !== void 0)
|
|
1316
1097
|
return t === null ? null : {
|
|
1317
1098
|
constraints: t.constraints === void 0 ? void 0 : t.constraints.map(
|
|
1318
|
-
|
|
1099
|
+
U
|
|
1319
1100
|
)
|
|
1320
1101
|
};
|
|
1321
1102
|
}
|
|
1322
|
-
function
|
|
1103
|
+
function Fr(t) {
|
|
1323
1104
|
let e = !0;
|
|
1324
1105
|
return e = e && "policyDefinitionId" in t, e = e && "policy" in t, e;
|
|
1325
1106
|
}
|
|
1326
|
-
function
|
|
1327
|
-
return
|
|
1107
|
+
function Er(t) {
|
|
1108
|
+
return se(t);
|
|
1328
1109
|
}
|
|
1329
|
-
function
|
|
1110
|
+
function se(t, e) {
|
|
1330
1111
|
return t == null ? t : {
|
|
1331
1112
|
policyDefinitionId: t.policyDefinitionId,
|
|
1332
|
-
policy:
|
|
1113
|
+
policy: ie(t.policy)
|
|
1333
1114
|
};
|
|
1334
1115
|
}
|
|
1335
|
-
function
|
|
1116
|
+
function ce(t) {
|
|
1336
1117
|
if (t !== void 0)
|
|
1337
1118
|
return t === null ? null : {
|
|
1338
1119
|
policyDefinitionId: t.policyDefinitionId,
|
|
1339
|
-
policy:
|
|
1120
|
+
policy: ae(t.policy)
|
|
1340
1121
|
};
|
|
1341
1122
|
}
|
|
1342
|
-
function
|
|
1123
|
+
function br(t) {
|
|
1343
1124
|
let e = !0;
|
|
1344
1125
|
return e = e && "policyDefinitionId" in t, e = e && "policy" in t, e;
|
|
1345
1126
|
}
|
|
1346
|
-
function
|
|
1347
|
-
return
|
|
1127
|
+
function de(t) {
|
|
1128
|
+
return ue(t);
|
|
1348
1129
|
}
|
|
1349
|
-
function
|
|
1130
|
+
function ue(t, e) {
|
|
1350
1131
|
return t == null ? t : {
|
|
1351
1132
|
policyDefinitionId: t.policyDefinitionId,
|
|
1352
|
-
policy:
|
|
1133
|
+
policy: y(t.policy)
|
|
1353
1134
|
};
|
|
1354
1135
|
}
|
|
1355
|
-
function
|
|
1136
|
+
function fe(t) {
|
|
1356
1137
|
if (t !== void 0)
|
|
1357
1138
|
return t === null ? null : {
|
|
1358
1139
|
policyDefinitionId: t.policyDefinitionId,
|
|
1359
|
-
policy:
|
|
1140
|
+
policy: P(t.policy)
|
|
1360
1141
|
};
|
|
1361
1142
|
}
|
|
1362
|
-
function
|
|
1143
|
+
function Lr(t) {
|
|
1363
1144
|
let e = !0;
|
|
1364
1145
|
return e = e && "policies" in t, e;
|
|
1365
1146
|
}
|
|
1366
|
-
function
|
|
1367
|
-
return
|
|
1147
|
+
function pe(t) {
|
|
1148
|
+
return ge(t);
|
|
1368
1149
|
}
|
|
1369
|
-
function
|
|
1150
|
+
function ge(t, e) {
|
|
1370
1151
|
return t == null ? t : {
|
|
1371
1152
|
policies: t.policies.map(
|
|
1372
|
-
|
|
1153
|
+
de
|
|
1373
1154
|
)
|
|
1374
1155
|
};
|
|
1375
1156
|
}
|
|
1376
|
-
function
|
|
1157
|
+
function Mr(t) {
|
|
1377
1158
|
if (t !== void 0)
|
|
1378
1159
|
return t === null ? null : {
|
|
1379
|
-
policies: t.policies.map(
|
|
1160
|
+
policies: t.policies.map(fe)
|
|
1380
1161
|
};
|
|
1381
1162
|
}
|
|
1382
|
-
function
|
|
1163
|
+
function Hr(t) {
|
|
1383
1164
|
let e = !0;
|
|
1384
|
-
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;
|
|
1165
|
+
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;
|
|
1385
1166
|
}
|
|
1386
|
-
function
|
|
1387
|
-
return
|
|
1167
|
+
function le(t) {
|
|
1168
|
+
return me(t);
|
|
1388
1169
|
}
|
|
1389
|
-
function
|
|
1170
|
+
function me(t, e) {
|
|
1390
1171
|
return t == null ? t : {
|
|
1391
1172
|
transferProcessId: t.transferProcessId,
|
|
1392
1173
|
createdDate: new Date(t.createdDate),
|
|
1393
1174
|
lastUpdatedDate: new Date(t.lastUpdatedDate),
|
|
1394
|
-
state:
|
|
1175
|
+
state: A(t.state),
|
|
1395
1176
|
contractAgreementId: t.contractAgreementId,
|
|
1396
|
-
direction:
|
|
1177
|
+
direction: N(t.direction),
|
|
1397
1178
|
counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
|
|
1179
|
+
counterPartyParticipantId: t.counterPartyParticipantId,
|
|
1398
1180
|
assetName: t.assetName,
|
|
1399
1181
|
assetId: t.assetId,
|
|
1400
1182
|
errorMessage: a(t, "errorMessage") ? t.errorMessage : void 0
|
|
1401
1183
|
};
|
|
1402
1184
|
}
|
|
1403
|
-
function
|
|
1185
|
+
function ye(t) {
|
|
1404
1186
|
if (t !== void 0)
|
|
1405
1187
|
return t === null ? null : {
|
|
1406
1188
|
transferProcessId: t.transferProcessId,
|
|
1407
1189
|
createdDate: t.createdDate.toISOString(),
|
|
1408
1190
|
lastUpdatedDate: t.lastUpdatedDate.toISOString(),
|
|
1409
|
-
state:
|
|
1191
|
+
state: J(t.state),
|
|
1410
1192
|
contractAgreementId: t.contractAgreementId,
|
|
1411
1193
|
direction: t.direction,
|
|
1412
1194
|
counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
|
|
1195
|
+
counterPartyParticipantId: t.counterPartyParticipantId,
|
|
1413
1196
|
assetName: t.assetName,
|
|
1414
1197
|
assetId: t.assetId,
|
|
1415
1198
|
errorMessage: t.errorMessage
|
|
1416
1199
|
};
|
|
1417
1200
|
}
|
|
1418
|
-
function
|
|
1201
|
+
function kr(t) {
|
|
1419
1202
|
let e = !0;
|
|
1420
1203
|
return e = e && "transferEntries" in t, e;
|
|
1421
1204
|
}
|
|
1422
|
-
function
|
|
1423
|
-
return
|
|
1205
|
+
function Pe(t) {
|
|
1206
|
+
return he(t);
|
|
1424
1207
|
}
|
|
1425
|
-
function
|
|
1208
|
+
function he(t, e) {
|
|
1426
1209
|
return t == null ? t : {
|
|
1427
1210
|
transferEntries: t.transferEntries.map(
|
|
1428
|
-
|
|
1211
|
+
le
|
|
1429
1212
|
)
|
|
1430
1213
|
};
|
|
1431
1214
|
}
|
|
1432
|
-
function
|
|
1215
|
+
function xr(t) {
|
|
1433
1216
|
if (t !== void 0)
|
|
1434
1217
|
return t === null ? null : {
|
|
1435
1218
|
transferEntries: t.transferEntries.map(
|
|
1436
|
-
|
|
1219
|
+
ye
|
|
1437
1220
|
)
|
|
1438
1221
|
};
|
|
1439
1222
|
}
|
|
1440
|
-
function
|
|
1223
|
+
function Gr(t) {
|
|
1441
1224
|
let e = !0;
|
|
1442
1225
|
return e = e && "id" in t, e = e && "dataAddressProperties" in t, e;
|
|
1443
1226
|
}
|
|
1444
|
-
function
|
|
1445
|
-
return
|
|
1227
|
+
function Kr(t) {
|
|
1228
|
+
return Ie(t);
|
|
1446
1229
|
}
|
|
1447
|
-
function
|
|
1230
|
+
function Ie(t, e) {
|
|
1448
1231
|
return t == null ? t : {
|
|
1449
1232
|
id: t.id,
|
|
1450
1233
|
title: a(t, "title") ? t.title : void 0,
|
|
@@ -1468,7 +1251,7 @@ function ze(t, e) {
|
|
|
1468
1251
|
privateJsonProperties: a(t, "privateJsonProperties") ? t.privateJsonProperties : void 0
|
|
1469
1252
|
};
|
|
1470
1253
|
}
|
|
1471
|
-
function
|
|
1254
|
+
function E(t) {
|
|
1472
1255
|
if (t !== void 0)
|
|
1473
1256
|
return t === null ? null : {
|
|
1474
1257
|
id: t.id,
|
|
@@ -1493,79 +1276,79 @@ function x(t) {
|
|
|
1493
1276
|
privateJsonProperties: t.privateJsonProperties
|
|
1494
1277
|
};
|
|
1495
1278
|
}
|
|
1496
|
-
function
|
|
1279
|
+
function $r(t) {
|
|
1497
1280
|
let e = !0;
|
|
1498
1281
|
return e = e && "contractNegotiationId" in t, e = e && "createdAt" in t, e = e && "state" in t, e;
|
|
1499
1282
|
}
|
|
1500
|
-
function
|
|
1501
|
-
return
|
|
1283
|
+
function D(t) {
|
|
1284
|
+
return Ce(t);
|
|
1502
1285
|
}
|
|
1503
|
-
function
|
|
1286
|
+
function Ce(t, e) {
|
|
1504
1287
|
return t == null ? t : {
|
|
1505
1288
|
contractNegotiationId: t.contractNegotiationId,
|
|
1506
1289
|
createdAt: new Date(t.createdAt),
|
|
1507
1290
|
contractAgreementId: a(t, "contractAgreementId") ? t.contractAgreementId : void 0,
|
|
1508
|
-
state:
|
|
1291
|
+
state: Mt(t.state)
|
|
1509
1292
|
};
|
|
1510
1293
|
}
|
|
1511
|
-
function
|
|
1294
|
+
function _r(t) {
|
|
1512
1295
|
if (t !== void 0)
|
|
1513
1296
|
return t === null ? null : {
|
|
1514
1297
|
contractNegotiationId: t.contractNegotiationId,
|
|
1515
1298
|
createdAt: t.createdAt.toISOString(),
|
|
1516
1299
|
contractAgreementId: t.contractAgreementId,
|
|
1517
|
-
state:
|
|
1300
|
+
state: kt(t.state)
|
|
1518
1301
|
};
|
|
1519
1302
|
}
|
|
1520
|
-
function
|
|
1303
|
+
function Qr(t) {
|
|
1521
1304
|
let e = !0;
|
|
1522
1305
|
return e = e && "contractOfferId" in t, e = e && "policy" in t, e;
|
|
1523
1306
|
}
|
|
1524
|
-
function
|
|
1525
|
-
return
|
|
1307
|
+
function we(t) {
|
|
1308
|
+
return De(t);
|
|
1526
1309
|
}
|
|
1527
|
-
function
|
|
1310
|
+
function De(t, e) {
|
|
1528
1311
|
return t == null ? t : {
|
|
1529
1312
|
contractOfferId: t.contractOfferId,
|
|
1530
|
-
policy:
|
|
1313
|
+
policy: y(t.policy)
|
|
1531
1314
|
};
|
|
1532
1315
|
}
|
|
1533
|
-
function
|
|
1316
|
+
function Se(t) {
|
|
1534
1317
|
if (t !== void 0)
|
|
1535
1318
|
return t === null ? null : {
|
|
1536
1319
|
contractOfferId: t.contractOfferId,
|
|
1537
|
-
policy:
|
|
1320
|
+
policy: P(t.policy)
|
|
1538
1321
|
};
|
|
1539
1322
|
}
|
|
1540
|
-
function
|
|
1323
|
+
function Vr(t) {
|
|
1541
1324
|
let e = !0;
|
|
1542
1325
|
return e = e && "endpoint" in t, e = e && "participantId" in t, e = e && "asset" in t, e = e && "contractOffers" in t, e;
|
|
1543
1326
|
}
|
|
1544
|
-
function
|
|
1545
|
-
return
|
|
1327
|
+
function Oe(t) {
|
|
1328
|
+
return Te(t);
|
|
1546
1329
|
}
|
|
1547
|
-
function
|
|
1330
|
+
function Te(t, e) {
|
|
1548
1331
|
return t == null ? t : {
|
|
1549
1332
|
endpoint: t.endpoint,
|
|
1550
1333
|
participantId: t.participantId,
|
|
1551
|
-
asset:
|
|
1334
|
+
asset: l(t.asset),
|
|
1552
1335
|
contractOffers: t.contractOffers.map(
|
|
1553
|
-
|
|
1336
|
+
we
|
|
1554
1337
|
)
|
|
1555
1338
|
};
|
|
1556
1339
|
}
|
|
1557
|
-
function
|
|
1340
|
+
function Br(t) {
|
|
1558
1341
|
if (t !== void 0)
|
|
1559
1342
|
return t === null ? null : {
|
|
1560
1343
|
endpoint: t.endpoint,
|
|
1561
1344
|
participantId: t.participantId,
|
|
1562
|
-
asset:
|
|
1345
|
+
asset: m(t.asset),
|
|
1563
1346
|
contractOffers: t.contractOffers.map(
|
|
1564
|
-
|
|
1347
|
+
Se
|
|
1565
1348
|
)
|
|
1566
1349
|
};
|
|
1567
1350
|
}
|
|
1568
|
-
class
|
|
1351
|
+
class Ne extends g {
|
|
1569
1352
|
/**
|
|
1570
1353
|
* Available and used resources of a connector.
|
|
1571
1354
|
*/
|
|
@@ -1581,7 +1364,7 @@ class tr extends l {
|
|
|
1581
1364
|
);
|
|
1582
1365
|
return new c(
|
|
1583
1366
|
i,
|
|
1584
|
-
(o) =>
|
|
1367
|
+
(o) => X(o)
|
|
1585
1368
|
);
|
|
1586
1369
|
}
|
|
1587
1370
|
/**
|
|
@@ -1616,13 +1399,13 @@ class tr extends l {
|
|
|
1616
1399
|
method: "POST",
|
|
1617
1400
|
headers: i,
|
|
1618
1401
|
query: n,
|
|
1619
|
-
body:
|
|
1402
|
+
body: E(
|
|
1620
1403
|
e.uiAssetCreateRequest
|
|
1621
1404
|
)
|
|
1622
1405
|
},
|
|
1623
1406
|
r
|
|
1624
1407
|
);
|
|
1625
|
-
return new
|
|
1408
|
+
return new _(o);
|
|
1626
1409
|
}
|
|
1627
1410
|
/**
|
|
1628
1411
|
* Creates an asset using the uploaded file as data source.
|
|
@@ -1645,7 +1428,7 @@ class tr extends l {
|
|
|
1645
1428
|
},
|
|
1646
1429
|
e
|
|
1647
1430
|
);
|
|
1648
|
-
return this.isJsonMime(i.headers.get("content-type")) ? new c(i) : new
|
|
1431
|
+
return this.isJsonMime(i.headers.get("content-type")) ? new c(i) : new Q(i);
|
|
1649
1432
|
}
|
|
1650
1433
|
/**
|
|
1651
1434
|
* 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.
|
|
@@ -1655,7 +1438,7 @@ class tr extends l {
|
|
|
1655
1438
|
return await (await this.fileUploadRequestSasTokenRaw(e)).value();
|
|
1656
1439
|
}
|
|
1657
1440
|
}
|
|
1658
|
-
class
|
|
1441
|
+
class Ae extends g {
|
|
1659
1442
|
/**
|
|
1660
1443
|
* Create a new Asset
|
|
1661
1444
|
*/
|
|
@@ -1668,7 +1451,7 @@ class er extends l {
|
|
|
1668
1451
|
method: "POST",
|
|
1669
1452
|
headers: i,
|
|
1670
1453
|
query: n,
|
|
1671
|
-
body:
|
|
1454
|
+
body: E(
|
|
1672
1455
|
e.uiAssetCreateRequest
|
|
1673
1456
|
)
|
|
1674
1457
|
},
|
|
@@ -1700,7 +1483,7 @@ class er extends l {
|
|
|
1700
1483
|
method: "POST",
|
|
1701
1484
|
headers: i,
|
|
1702
1485
|
query: n,
|
|
1703
|
-
body:
|
|
1486
|
+
body: qt(
|
|
1704
1487
|
e.contractDefinitionRequest
|
|
1705
1488
|
)
|
|
1706
1489
|
},
|
|
@@ -1732,7 +1515,7 @@ class er extends l {
|
|
|
1732
1515
|
method: "POST",
|
|
1733
1516
|
headers: i,
|
|
1734
1517
|
query: n,
|
|
1735
|
-
body:
|
|
1518
|
+
body: ce(
|
|
1736
1519
|
e.policyDefinitionCreateRequest
|
|
1737
1520
|
)
|
|
1738
1521
|
},
|
|
@@ -1874,7 +1657,7 @@ class er extends l {
|
|
|
1874
1657
|
);
|
|
1875
1658
|
return new c(
|
|
1876
1659
|
i,
|
|
1877
|
-
(o) =>
|
|
1660
|
+
(o) => B(o)
|
|
1878
1661
|
);
|
|
1879
1662
|
}
|
|
1880
1663
|
/**
|
|
@@ -1900,7 +1683,7 @@ class er extends l {
|
|
|
1900
1683
|
);
|
|
1901
1684
|
return new c(
|
|
1902
1685
|
o,
|
|
1903
|
-
(s) => s.map(
|
|
1686
|
+
(s) => s.map(Oe)
|
|
1904
1687
|
);
|
|
1905
1688
|
}
|
|
1906
1689
|
/**
|
|
@@ -1927,7 +1710,7 @@ class er extends l {
|
|
|
1927
1710
|
);
|
|
1928
1711
|
return new c(
|
|
1929
1712
|
i,
|
|
1930
|
-
(o) =>
|
|
1713
|
+
(o) => mt(o)
|
|
1931
1714
|
);
|
|
1932
1715
|
}
|
|
1933
1716
|
/**
|
|
@@ -1951,7 +1734,7 @@ class er extends l {
|
|
|
1951
1734
|
);
|
|
1952
1735
|
return new c(
|
|
1953
1736
|
i,
|
|
1954
|
-
(o) =>
|
|
1737
|
+
(o) => Jt(o)
|
|
1955
1738
|
);
|
|
1956
1739
|
}
|
|
1957
1740
|
/**
|
|
@@ -1985,7 +1768,7 @@ class er extends l {
|
|
|
1985
1768
|
);
|
|
1986
1769
|
return new c(
|
|
1987
1770
|
o,
|
|
1988
|
-
(s) =>
|
|
1771
|
+
(s) => D(s)
|
|
1989
1772
|
);
|
|
1990
1773
|
}
|
|
1991
1774
|
/**
|
|
@@ -2012,7 +1795,7 @@ class er extends l {
|
|
|
2012
1795
|
);
|
|
2013
1796
|
return new c(
|
|
2014
1797
|
i,
|
|
2015
|
-
(o) =>
|
|
1798
|
+
(o) => Bt(o)
|
|
2016
1799
|
);
|
|
2017
1800
|
}
|
|
2018
1801
|
/**
|
|
@@ -2036,7 +1819,7 @@ class er extends l {
|
|
|
2036
1819
|
);
|
|
2037
1820
|
return new c(
|
|
2038
1821
|
i,
|
|
2039
|
-
(o) =>
|
|
1822
|
+
(o) => pe(o)
|
|
2040
1823
|
);
|
|
2041
1824
|
}
|
|
2042
1825
|
/**
|
|
@@ -2060,7 +1843,7 @@ class er extends l {
|
|
|
2060
1843
|
);
|
|
2061
1844
|
return new c(
|
|
2062
1845
|
i,
|
|
2063
|
-
(o) =>
|
|
1846
|
+
(o) => Pe(o)
|
|
2064
1847
|
);
|
|
2065
1848
|
}
|
|
2066
1849
|
/**
|
|
@@ -2094,7 +1877,7 @@ class er extends l {
|
|
|
2094
1877
|
);
|
|
2095
1878
|
return new c(
|
|
2096
1879
|
o,
|
|
2097
|
-
(s) =>
|
|
1880
|
+
(s) => l(s)
|
|
2098
1881
|
);
|
|
2099
1882
|
}
|
|
2100
1883
|
/**
|
|
@@ -2118,7 +1901,7 @@ class er extends l {
|
|
|
2118
1901
|
method: "POST",
|
|
2119
1902
|
headers: i,
|
|
2120
1903
|
query: n,
|
|
2121
|
-
body:
|
|
1904
|
+
body: Et(
|
|
2122
1905
|
e.contractNegotiationRequest
|
|
2123
1906
|
)
|
|
2124
1907
|
},
|
|
@@ -2126,7 +1909,7 @@ class er extends l {
|
|
|
2126
1909
|
);
|
|
2127
1910
|
return new c(
|
|
2128
1911
|
o,
|
|
2129
|
-
(s) =>
|
|
1912
|
+
(s) => D(s)
|
|
2130
1913
|
);
|
|
2131
1914
|
}
|
|
2132
1915
|
/**
|
|
@@ -2150,7 +1933,7 @@ class er extends l {
|
|
|
2150
1933
|
method: "POST",
|
|
2151
1934
|
headers: i,
|
|
2152
1935
|
query: n,
|
|
2153
|
-
body:
|
|
1936
|
+
body: Wt(
|
|
2154
1937
|
e.initiateCustomTransferRequest
|
|
2155
1938
|
)
|
|
2156
1939
|
},
|
|
@@ -2182,7 +1965,7 @@ class er extends l {
|
|
|
2182
1965
|
method: "POST",
|
|
2183
1966
|
headers: i,
|
|
2184
1967
|
query: n,
|
|
2185
|
-
body:
|
|
1968
|
+
body: vt(
|
|
2186
1969
|
e.initiateTransferRequest
|
|
2187
1970
|
)
|
|
2188
1971
|
},
|
|
@@ -2203,33 +1986,7 @@ class er extends l {
|
|
|
2203
1986
|
)).value();
|
|
2204
1987
|
}
|
|
2205
1988
|
}
|
|
2206
|
-
class
|
|
2207
|
-
/**
|
|
2208
|
-
* Creates a new data offer, consisting of an asset, a policy definition and a contract definition.
|
|
2209
|
-
*/
|
|
2210
|
-
async createOfferRaw(e, r) {
|
|
2211
|
-
const n = {}, i = {};
|
|
2212
|
-
i["Content-Type"] = "application/json";
|
|
2213
|
-
const o = await this.request(
|
|
2214
|
-
{
|
|
2215
|
-
path: "/wrapper/use-case-api/data-offer",
|
|
2216
|
-
method: "POST",
|
|
2217
|
-
headers: i,
|
|
2218
|
-
query: n,
|
|
2219
|
-
body: pe(
|
|
2220
|
-
e.createOfferingDto
|
|
2221
|
-
)
|
|
2222
|
-
},
|
|
2223
|
-
r
|
|
2224
|
-
);
|
|
2225
|
-
return new R(o);
|
|
2226
|
-
}
|
|
2227
|
-
/**
|
|
2228
|
-
* Creates a new data offer, consisting of an asset, a policy definition and a contract definition.
|
|
2229
|
-
*/
|
|
2230
|
-
async createOffer(e = {}, r) {
|
|
2231
|
-
await this.createOfferRaw(e, r);
|
|
2232
|
-
}
|
|
1989
|
+
class Je extends g {
|
|
2233
1990
|
/**
|
|
2234
1991
|
* Basic KPIs about the running EDC Connector.
|
|
2235
1992
|
*/
|
|
@@ -2245,7 +2002,7 @@ class rr extends l {
|
|
|
2245
2002
|
);
|
|
2246
2003
|
return new c(
|
|
2247
2004
|
i,
|
|
2248
|
-
(o) =>
|
|
2005
|
+
(o) => re(o)
|
|
2249
2006
|
);
|
|
2250
2007
|
}
|
|
2251
2008
|
/**
|
|
@@ -2276,8 +2033,8 @@ class rr extends l {
|
|
|
2276
2033
|
return await (await this.getSupportedFunctionsRaw(e)).value();
|
|
2277
2034
|
}
|
|
2278
2035
|
}
|
|
2279
|
-
function
|
|
2280
|
-
const e = new
|
|
2036
|
+
function zr(t) {
|
|
2037
|
+
const e = new S({
|
|
2281
2038
|
basePath: t.managementApiUrl,
|
|
2282
2039
|
headers: {
|
|
2283
2040
|
"X-Api-Key": t.managementApiKey ?? "ApiKeyDefaultValue"
|
|
@@ -2286,243 +2043,203 @@ function bn(t) {
|
|
|
2286
2043
|
...t.configOverrides
|
|
2287
2044
|
});
|
|
2288
2045
|
return {
|
|
2289
|
-
uiApi: new
|
|
2290
|
-
useCaseApi: new
|
|
2291
|
-
enterpriseEditionApi: new
|
|
2046
|
+
uiApi: new Ae(e),
|
|
2047
|
+
useCaseApi: new Je(e),
|
|
2048
|
+
enterpriseEditionApi: new Ne(e)
|
|
2292
2049
|
};
|
|
2293
2050
|
}
|
|
2294
2051
|
export {
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
$
|
|
2353
|
-
le as DashboardDapsConfigFromJSON,
|
|
2354
|
-
me as DashboardDapsConfigFromJSONTyped,
|
|
2355
|
-
ge as DashboardDapsConfigToJSON,
|
|
2356
|
-
ye as DashboardMiwConfigFromJSON,
|
|
2357
|
-
Pe as DashboardMiwConfigFromJSONTyped,
|
|
2358
|
-
he as DashboardMiwConfigToJSON,
|
|
2359
|
-
Ie as DashboardPageFromJSON,
|
|
2360
|
-
Ce as DashboardPageFromJSONTyped,
|
|
2361
|
-
cn as DashboardPageToJSON,
|
|
2362
|
-
O as DashboardTransferAmountsFromJSON,
|
|
2363
|
-
De as DashboardTransferAmountsFromJSONTyped,
|
|
2364
|
-
S as DashboardTransferAmountsToJSON,
|
|
2365
|
-
$ as DefaultConfig,
|
|
2366
|
-
tr as EnterpriseEditionApi,
|
|
2367
|
-
m as ExpressionDtoFromJSON,
|
|
2368
|
-
ee as ExpressionDtoFromJSONTyped,
|
|
2369
|
-
g as ExpressionDtoToJSON,
|
|
2370
|
-
Yr as ExpressionType,
|
|
2371
|
-
jt as ExpressionTypeFromJSON,
|
|
2372
|
-
te as ExpressionTypeFromJSONTyped,
|
|
2373
|
-
Wr as ExpressionTypeToJSON,
|
|
2374
|
-
B as FetchError,
|
|
2052
|
+
B as AssetPageFromJSON,
|
|
2053
|
+
z as AssetPageFromJSONTyped,
|
|
2054
|
+
Me as AssetPageToJSON,
|
|
2055
|
+
H as BASE_PATH,
|
|
2056
|
+
g as BaseAPI,
|
|
2057
|
+
Ee as BlobApiResponse,
|
|
2058
|
+
Ue as COLLECTION_FORMATS,
|
|
2059
|
+
S as Configuration,
|
|
2060
|
+
X as ConnectorLimitsFromJSON,
|
|
2061
|
+
Y as ConnectorLimitsFromJSONTyped,
|
|
2062
|
+
ke as ConnectorLimitsToJSON,
|
|
2063
|
+
pt as ContractAgreementCardFromJSON,
|
|
2064
|
+
gt as ContractAgreementCardFromJSONTyped,
|
|
2065
|
+
lt as ContractAgreementCardToJSON,
|
|
2066
|
+
xe as ContractAgreementDirection,
|
|
2067
|
+
N as ContractAgreementDirectionFromJSON,
|
|
2068
|
+
W as ContractAgreementDirectionFromJSONTyped,
|
|
2069
|
+
Ge as ContractAgreementDirectionToJSON,
|
|
2070
|
+
mt as ContractAgreementPageFromJSON,
|
|
2071
|
+
yt as ContractAgreementPageFromJSONTyped,
|
|
2072
|
+
tr as ContractAgreementPageToJSON,
|
|
2073
|
+
tt as ContractAgreementTransferProcessFromJSON,
|
|
2074
|
+
et as ContractAgreementTransferProcessFromJSONTyped,
|
|
2075
|
+
rt as ContractAgreementTransferProcessToJSON,
|
|
2076
|
+
Tt as ContractDefinitionEntryFromJSON,
|
|
2077
|
+
Nt as ContractDefinitionEntryFromJSONTyped,
|
|
2078
|
+
At as ContractDefinitionEntryToJSON,
|
|
2079
|
+
Jt as ContractDefinitionPageFromJSON,
|
|
2080
|
+
Rt as ContractDefinitionPageFromJSONTyped,
|
|
2081
|
+
dr as ContractDefinitionPageToJSON,
|
|
2082
|
+
fr as ContractDefinitionRequestFromJSON,
|
|
2083
|
+
Ut as ContractDefinitionRequestFromJSONTyped,
|
|
2084
|
+
qt as ContractDefinitionRequestToJSON,
|
|
2085
|
+
gr as ContractNegotiationRequestFromJSON,
|
|
2086
|
+
Ft as ContractNegotiationRequestFromJSONTyped,
|
|
2087
|
+
Et as ContractNegotiationRequestToJSON,
|
|
2088
|
+
lr as ContractNegotiationSimplifiedState,
|
|
2089
|
+
bt as ContractNegotiationSimplifiedStateFromJSON,
|
|
2090
|
+
Lt as ContractNegotiationSimplifiedStateFromJSONTyped,
|
|
2091
|
+
mr as ContractNegotiationSimplifiedStateToJSON,
|
|
2092
|
+
Mt as ContractNegotiationStateFromJSON,
|
|
2093
|
+
Ht as ContractNegotiationStateFromJSONTyped,
|
|
2094
|
+
kt as ContractNegotiationStateToJSON,
|
|
2095
|
+
xt as DashboardDapsConfigFromJSON,
|
|
2096
|
+
Gt as DashboardDapsConfigFromJSONTyped,
|
|
2097
|
+
Kt as DashboardDapsConfigToJSON,
|
|
2098
|
+
$t as DashboardMiwConfigFromJSON,
|
|
2099
|
+
_t as DashboardMiwConfigFromJSONTyped,
|
|
2100
|
+
Qt as DashboardMiwConfigToJSON,
|
|
2101
|
+
Bt as DashboardPageFromJSON,
|
|
2102
|
+
zt as DashboardPageFromJSONTyped,
|
|
2103
|
+
wr as DashboardPageToJSON,
|
|
2104
|
+
C as DashboardTransferAmountsFromJSON,
|
|
2105
|
+
Vt as DashboardTransferAmountsFromJSONTyped,
|
|
2106
|
+
w as DashboardTransferAmountsToJSON,
|
|
2107
|
+
k as DefaultConfig,
|
|
2108
|
+
Ne as EnterpriseEditionApi,
|
|
2109
|
+
$ as FetchError,
|
|
2375
2110
|
d as IdResponseDtoFromJSON,
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2111
|
+
Xt as IdResponseDtoFromJSONTyped,
|
|
2112
|
+
Sr as IdResponseDtoToJSON,
|
|
2113
|
+
Tr as InitiateCustomTransferRequestFromJSON,
|
|
2114
|
+
Yt as InitiateCustomTransferRequestFromJSONTyped,
|
|
2115
|
+
Wt as InitiateCustomTransferRequestToJSON,
|
|
2116
|
+
Ar as InitiateTransferRequestFromJSON,
|
|
2117
|
+
Zt as InitiateTransferRequestFromJSONTyped,
|
|
2118
|
+
vt as InitiateTransferRequestToJSON,
|
|
2384
2119
|
c as JSONApiResponse,
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
Ge as PolicyDefinitionPageFromJSON,
|
|
2402
|
-
Ke as PolicyDefinitionPageFromJSONTyped,
|
|
2403
|
-
Sn as PolicyDefinitionPageToJSON,
|
|
2404
|
-
ce as PolicyDefinitionRequestDtoFromJSON,
|
|
2405
|
-
de as PolicyDefinitionRequestDtoFromJSONTyped,
|
|
2406
|
-
ue as PolicyDefinitionRequestDtoToJSON,
|
|
2407
|
-
oe as PolicyDtoFromJSON,
|
|
2408
|
-
ae as PolicyDtoFromJSONTyped,
|
|
2409
|
-
se as PolicyDtoToJSON,
|
|
2120
|
+
re as KpiResultFromJSON,
|
|
2121
|
+
ne as KpiResultFromJSONTyped,
|
|
2122
|
+
Ur as KpiResultToJSON,
|
|
2123
|
+
Ve as OperatorDto,
|
|
2124
|
+
nt as OperatorDtoFromJSON,
|
|
2125
|
+
it as OperatorDtoFromJSONTyped,
|
|
2126
|
+
Be as OperatorDtoToJSON,
|
|
2127
|
+
Er as PolicyDefinitionCreateRequestFromJSON,
|
|
2128
|
+
se as PolicyDefinitionCreateRequestFromJSONTyped,
|
|
2129
|
+
ce as PolicyDefinitionCreateRequestToJSON,
|
|
2130
|
+
de as PolicyDefinitionDtoFromJSON,
|
|
2131
|
+
ue as PolicyDefinitionDtoFromJSONTyped,
|
|
2132
|
+
fe as PolicyDefinitionDtoToJSON,
|
|
2133
|
+
pe as PolicyDefinitionPageFromJSON,
|
|
2134
|
+
ge as PolicyDefinitionPageFromJSONTyped,
|
|
2135
|
+
Mr as PolicyDefinitionPageToJSON,
|
|
2410
2136
|
f as RequiredError,
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2137
|
+
K as ResponseError,
|
|
2138
|
+
Q as TextApiResponse,
|
|
2139
|
+
le as TransferHistoryEntryFromJSON,
|
|
2140
|
+
me as TransferHistoryEntryFromJSONTyped,
|
|
2141
|
+
ye as TransferHistoryEntryToJSON,
|
|
2142
|
+
Pe as TransferHistoryPageFromJSON,
|
|
2143
|
+
he as TransferHistoryPageFromJSONTyped,
|
|
2144
|
+
xr as TransferHistoryPageToJSON,
|
|
2145
|
+
Ke as TransferProcessSimplifiedState,
|
|
2146
|
+
Z as TransferProcessSimplifiedStateFromJSON,
|
|
2147
|
+
v as TransferProcessSimplifiedStateFromJSONTyped,
|
|
2148
|
+
$e as TransferProcessSimplifiedStateToJSON,
|
|
2149
|
+
A as TransferProcessStateFromJSON,
|
|
2150
|
+
j as TransferProcessStateFromJSONTyped,
|
|
2151
|
+
J as TransferProcessStateToJSON,
|
|
2152
|
+
jt as TransferProcessStatesDtoFromJSON,
|
|
2153
|
+
te as TransferProcessStatesDtoFromJSONTyped,
|
|
2154
|
+
ee as TransferProcessStatesDtoToJSON,
|
|
2155
|
+
Ae as UIApi,
|
|
2156
|
+
Kr as UiAssetCreateRequestFromJSON,
|
|
2157
|
+
Ie as UiAssetCreateRequestFromJSONTyped,
|
|
2158
|
+
E as UiAssetCreateRequestToJSON,
|
|
2159
|
+
l as UiAssetFromJSON,
|
|
2160
|
+
V as UiAssetFromJSONTyped,
|
|
2161
|
+
m as UiAssetToJSON,
|
|
2162
|
+
D as UiContractNegotiationFromJSON,
|
|
2163
|
+
Ce as UiContractNegotiationFromJSONTyped,
|
|
2164
|
+
_r as UiContractNegotiationToJSON,
|
|
2165
|
+
we as UiContractOfferFromJSON,
|
|
2166
|
+
De as UiContractOfferFromJSONTyped,
|
|
2167
|
+
Se as UiContractOfferToJSON,
|
|
2168
|
+
q as UiCriterionFromJSON,
|
|
2169
|
+
Ot as UiCriterionFromJSONTyped,
|
|
2170
|
+
It as UiCriterionLiteralFromJSON,
|
|
2171
|
+
Ct as UiCriterionLiteralFromJSONTyped,
|
|
2172
|
+
wt as UiCriterionLiteralToJSON,
|
|
2173
|
+
er as UiCriterionLiteralType,
|
|
2174
|
+
Pt as UiCriterionLiteralTypeFromJSON,
|
|
2175
|
+
ht as UiCriterionLiteralTypeFromJSONTyped,
|
|
2176
|
+
rr as UiCriterionLiteralTypeToJSON,
|
|
2177
|
+
ir as UiCriterionOperator,
|
|
2178
|
+
Dt as UiCriterionOperatorFromJSON,
|
|
2179
|
+
St as UiCriterionOperatorFromJSONTyped,
|
|
2180
|
+
or as UiCriterionOperatorToJSON,
|
|
2181
|
+
F as UiCriterionToJSON,
|
|
2182
|
+
Oe as UiDataOfferFromJSON,
|
|
2183
|
+
Te as UiDataOfferFromJSONTyped,
|
|
2184
|
+
Br as UiDataOfferToJSON,
|
|
2185
|
+
R as UiPolicyConstraintFromJSON,
|
|
2186
|
+
ut as UiPolicyConstraintFromJSONTyped,
|
|
2187
|
+
U as UiPolicyConstraintToJSON,
|
|
2188
|
+
ie as UiPolicyCreateRequestFromJSON,
|
|
2189
|
+
oe as UiPolicyCreateRequestFromJSONTyped,
|
|
2190
|
+
ae as UiPolicyCreateRequestToJSON,
|
|
2191
|
+
y as UiPolicyFromJSON,
|
|
2192
|
+
ft as UiPolicyFromJSONTyped,
|
|
2193
|
+
st as UiPolicyLiteralFromJSON,
|
|
2194
|
+
ct as UiPolicyLiteralFromJSONTyped,
|
|
2195
|
+
dt as UiPolicyLiteralToJSON,
|
|
2196
|
+
ze as UiPolicyLiteralType,
|
|
2197
|
+
ot as UiPolicyLiteralTypeFromJSON,
|
|
2198
|
+
at as UiPolicyLiteralTypeFromJSONTyped,
|
|
2199
|
+
Xe as UiPolicyLiteralTypeToJSON,
|
|
2200
|
+
P as UiPolicyToJSON,
|
|
2201
|
+
Je as UseCaseApi,
|
|
2202
|
+
_ as VoidApiResponse,
|
|
2203
|
+
zr as buildEdcClient,
|
|
2204
|
+
Fe as canConsumeForm,
|
|
2479
2205
|
a as exists,
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
Mr as instanceOfUiCriterion,
|
|
2519
|
-
Fr as instanceOfUiCriterionLiteral,
|
|
2520
|
-
En as instanceOfUiDataOffer,
|
|
2521
|
-
Ar as instanceOfUiPolicy,
|
|
2522
|
-
Nr as instanceOfUiPolicyConstraint,
|
|
2523
|
-
hn as instanceOfUiPolicyCreateRequest,
|
|
2524
|
-
Tr as instanceOfUiPolicyLiteral,
|
|
2525
|
-
or as mapValues,
|
|
2526
|
-
N as querystring
|
|
2206
|
+
Le as instanceOfAssetPage,
|
|
2207
|
+
He as instanceOfConnectorLimits,
|
|
2208
|
+
ve as instanceOfContractAgreementCard,
|
|
2209
|
+
je as instanceOfContractAgreementPage,
|
|
2210
|
+
Qe as instanceOfContractAgreementTransferProcess,
|
|
2211
|
+
sr as instanceOfContractDefinitionEntry,
|
|
2212
|
+
cr as instanceOfContractDefinitionPage,
|
|
2213
|
+
ur as instanceOfContractDefinitionRequest,
|
|
2214
|
+
pr as instanceOfContractNegotiationRequest,
|
|
2215
|
+
yr as instanceOfContractNegotiationState,
|
|
2216
|
+
Pr as instanceOfDashboardDapsConfig,
|
|
2217
|
+
hr as instanceOfDashboardMiwConfig,
|
|
2218
|
+
Cr as instanceOfDashboardPage,
|
|
2219
|
+
Ir as instanceOfDashboardTransferAmounts,
|
|
2220
|
+
Dr as instanceOfIdResponseDto,
|
|
2221
|
+
Or as instanceOfInitiateCustomTransferRequest,
|
|
2222
|
+
Nr as instanceOfInitiateTransferRequest,
|
|
2223
|
+
Rr as instanceOfKpiResult,
|
|
2224
|
+
Fr as instanceOfPolicyDefinitionCreateRequest,
|
|
2225
|
+
br as instanceOfPolicyDefinitionDto,
|
|
2226
|
+
Lr as instanceOfPolicyDefinitionPage,
|
|
2227
|
+
Hr as instanceOfTransferHistoryEntry,
|
|
2228
|
+
kr as instanceOfTransferHistoryPage,
|
|
2229
|
+
_e as instanceOfTransferProcessState,
|
|
2230
|
+
Jr as instanceOfTransferProcessStatesDto,
|
|
2231
|
+
be as instanceOfUiAsset,
|
|
2232
|
+
Gr as instanceOfUiAssetCreateRequest,
|
|
2233
|
+
$r as instanceOfUiContractNegotiation,
|
|
2234
|
+
Qr as instanceOfUiContractOffer,
|
|
2235
|
+
ar as instanceOfUiCriterion,
|
|
2236
|
+
nr as instanceOfUiCriterionLiteral,
|
|
2237
|
+
Vr as instanceOfUiDataOffer,
|
|
2238
|
+
Ze as instanceOfUiPolicy,
|
|
2239
|
+
We as instanceOfUiPolicyConstraint,
|
|
2240
|
+
qr as instanceOfUiPolicyCreateRequest,
|
|
2241
|
+
Ye as instanceOfUiPolicyLiteral,
|
|
2242
|
+
qe as mapValues,
|
|
2243
|
+
O as querystring
|
|
2527
2244
|
};
|
|
2528
2245
|
//# sourceMappingURL=sovity-edc-client.js.map
|