@sovity.de/edc-client 7.5.0 → 8.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,7 +1,7 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var b = (e, t, r) => (
|
|
4
|
-
const
|
|
1
|
+
var ot = Object.defineProperty;
|
|
2
|
+
var ct = (e, t, r) => t in e ? ot(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
|
|
3
|
+
var b = (e, t, r) => (ct(e, typeof t != "symbol" ? t + "" : t, r), r);
|
|
4
|
+
const dt = "https://my-connector/api/management".replace(
|
|
5
5
|
/\/+$/,
|
|
6
6
|
""
|
|
7
7
|
);
|
|
@@ -13,7 +13,7 @@ class Fe {
|
|
|
13
13
|
this.configuration = t;
|
|
14
14
|
}
|
|
15
15
|
get basePath() {
|
|
16
|
-
return this.configuration.basePath != null ? this.configuration.basePath :
|
|
16
|
+
return this.configuration.basePath != null ? this.configuration.basePath : dt;
|
|
17
17
|
}
|
|
18
18
|
get fetchApi() {
|
|
19
19
|
return this.configuration.fetchApi;
|
|
@@ -47,8 +47,8 @@ class Fe {
|
|
|
47
47
|
return this.configuration.credentials;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
const
|
|
51
|
-
constructor(t =
|
|
50
|
+
const ut = new Fe(), we = class we {
|
|
51
|
+
constructor(t = ut) {
|
|
52
52
|
b(this, "middleware");
|
|
53
53
|
b(this, "fetchApi", async (t, r) => {
|
|
54
54
|
let n = { url: t, init: r };
|
|
@@ -73,7 +73,7 @@ const ot = new Fe(), we = class we {
|
|
|
73
73
|
response: i ? i.clone() : void 0
|
|
74
74
|
}) || i);
|
|
75
75
|
if (i === void 0)
|
|
76
|
-
throw s instanceof Error ? new
|
|
76
|
+
throw s instanceof Error ? new mt(
|
|
77
77
|
s,
|
|
78
78
|
"The request failed and the interceptors did not return an alternative response"
|
|
79
79
|
) : s;
|
|
@@ -121,7 +121,7 @@ const ot = new Fe(), we = class we {
|
|
|
121
121
|
), s = await this.fetchApi(n, i);
|
|
122
122
|
if (s && s.status >= 200 && s.status < 300)
|
|
123
123
|
return s;
|
|
124
|
-
throw new
|
|
124
|
+
throw new pt(s, "Response returned an error code");
|
|
125
125
|
}
|
|
126
126
|
async createFetchParams(t, r) {
|
|
127
127
|
let n = this.configuration.basePath + t.path;
|
|
@@ -147,7 +147,7 @@ const ot = new Fe(), we = class we {
|
|
|
147
147
|
})
|
|
148
148
|
}, p = {
|
|
149
149
|
...o,
|
|
150
|
-
body:
|
|
150
|
+
body: ft(o.body) || o.body instanceof URLSearchParams || lt(o.body) ? o.body : JSON.stringify(o.body)
|
|
151
151
|
};
|
|
152
152
|
return { url: n, init: p };
|
|
153
153
|
}
|
|
@@ -165,20 +165,20 @@ b(we, "jsonRegex", new RegExp(
|
|
|
165
165
|
"i"
|
|
166
166
|
));
|
|
167
167
|
let W = we;
|
|
168
|
-
function
|
|
168
|
+
function lt(e) {
|
|
169
169
|
return typeof Blob < "u" && e instanceof Blob;
|
|
170
170
|
}
|
|
171
|
-
function
|
|
171
|
+
function ft(e) {
|
|
172
172
|
return typeof FormData < "u" && e instanceof FormData;
|
|
173
173
|
}
|
|
174
|
-
class
|
|
174
|
+
class pt extends Error {
|
|
175
175
|
constructor(r, n) {
|
|
176
176
|
super(n);
|
|
177
177
|
b(this, "name", "ResponseError");
|
|
178
178
|
this.response = r;
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
|
-
class
|
|
181
|
+
class mt extends Error {
|
|
182
182
|
constructor(r, n) {
|
|
183
183
|
super(n);
|
|
184
184
|
b(this, "name", "FetchError");
|
|
@@ -192,7 +192,7 @@ class U extends Error {
|
|
|
192
192
|
this.field = r;
|
|
193
193
|
}
|
|
194
194
|
}
|
|
195
|
-
const
|
|
195
|
+
const Ei = {
|
|
196
196
|
csv: ",",
|
|
197
197
|
ssv: " ",
|
|
198
198
|
tsv: " ",
|
|
@@ -221,13 +221,13 @@ function Me(e, t, r = "") {
|
|
|
221
221
|
String(t)
|
|
222
222
|
)}`;
|
|
223
223
|
}
|
|
224
|
-
function
|
|
224
|
+
function Ji(e, t) {
|
|
225
225
|
return Object.keys(e).reduce(
|
|
226
226
|
(r, n) => ({ ...r, [n]: t(e[n]) }),
|
|
227
227
|
{}
|
|
228
228
|
);
|
|
229
229
|
}
|
|
230
|
-
function
|
|
230
|
+
function Li(e) {
|
|
231
231
|
for (const t of e)
|
|
232
232
|
if (t.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 ht {
|
|
245
245
|
constructor(t) {
|
|
246
246
|
this.raw = t;
|
|
247
247
|
}
|
|
248
248
|
async value() {
|
|
249
249
|
}
|
|
250
250
|
}
|
|
251
|
-
class
|
|
251
|
+
class Fi {
|
|
252
252
|
constructor(t) {
|
|
253
253
|
this.raw = t;
|
|
254
254
|
}
|
|
@@ -256,7 +256,7 @@ class Ii {
|
|
|
256
256
|
return await this.raw.blob();
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
|
-
class
|
|
259
|
+
class gt {
|
|
260
260
|
constructor(t) {
|
|
261
261
|
this.raw = t;
|
|
262
262
|
}
|
|
@@ -264,14 +264,14 @@ class pt {
|
|
|
264
264
|
return await this.raw.text();
|
|
265
265
|
}
|
|
266
266
|
}
|
|
267
|
-
function
|
|
267
|
+
function qi(e) {
|
|
268
268
|
let t = !0;
|
|
269
269
|
return t = t && "assetId" in e, t = t && "connectorEndpoint" in e, t = t && "participantId" in e, t = t && "title" in e, t = t && "creatorOrganizationName" in e, t = t && "isOwnConnector" in e, t;
|
|
270
270
|
}
|
|
271
271
|
function Ce(e) {
|
|
272
|
-
return
|
|
272
|
+
return yt(e);
|
|
273
273
|
}
|
|
274
|
-
function
|
|
274
|
+
function yt(e, t) {
|
|
275
275
|
return e == null ? e : {
|
|
276
276
|
assetId: e.assetId,
|
|
277
277
|
connectorEndpoint: e.connectorEndpoint,
|
|
@@ -376,51 +376,96 @@ function Ae(e) {
|
|
|
376
376
|
privateCustomJsonLdAsString: e.privateCustomJsonLdAsString
|
|
377
377
|
};
|
|
378
378
|
}
|
|
379
|
-
function
|
|
379
|
+
function Mi(e) {
|
|
380
380
|
let t = !0;
|
|
381
381
|
return t = t && "assets" in e, t;
|
|
382
382
|
}
|
|
383
|
-
function
|
|
384
|
-
return
|
|
383
|
+
function vt(e) {
|
|
384
|
+
return _t(e);
|
|
385
385
|
}
|
|
386
|
-
function
|
|
386
|
+
function _t(e, t) {
|
|
387
387
|
return e == null ? e : {
|
|
388
388
|
assets: e.assets.map(Ce)
|
|
389
389
|
};
|
|
390
390
|
}
|
|
391
|
-
function
|
|
391
|
+
function Zi(e) {
|
|
392
392
|
if (e !== void 0)
|
|
393
393
|
return e === null ? null : {
|
|
394
394
|
assets: e.assets.map(Ae)
|
|
395
395
|
};
|
|
396
396
|
}
|
|
397
|
-
const
|
|
397
|
+
const $i = {
|
|
398
|
+
Eq: "EQ",
|
|
399
|
+
Neq: "NEQ",
|
|
400
|
+
Gt: "GT",
|
|
401
|
+
Geq: "GEQ",
|
|
402
|
+
Lt: "LT",
|
|
403
|
+
Leq: "LEQ",
|
|
404
|
+
In: "IN",
|
|
405
|
+
HasPart: "HAS_PART",
|
|
406
|
+
IsA: "IS_A",
|
|
407
|
+
IsAllOf: "IS_ALL_OF",
|
|
408
|
+
IsAnyOf: "IS_ANY_OF",
|
|
409
|
+
IsNoneOf: "IS_NONE_OF"
|
|
410
|
+
};
|
|
411
|
+
function Ze(e) {
|
|
412
|
+
return wt(e);
|
|
413
|
+
}
|
|
414
|
+
function wt(e, t) {
|
|
415
|
+
return e;
|
|
416
|
+
}
|
|
417
|
+
function Vi(e) {
|
|
418
|
+
return e;
|
|
419
|
+
}
|
|
420
|
+
function Hi(e) {
|
|
421
|
+
let t = !0;
|
|
422
|
+
return t = t && "leftExpression" in e, t = t && "operator" in e, t = t && "rightExpression" in e, t;
|
|
423
|
+
}
|
|
424
|
+
function Ct(e) {
|
|
425
|
+
return St(e);
|
|
426
|
+
}
|
|
427
|
+
function St(e, t) {
|
|
428
|
+
return e == null ? e : {
|
|
429
|
+
leftExpression: e.leftExpression,
|
|
430
|
+
operator: Ze(e.operator),
|
|
431
|
+
rightExpression: e.rightExpression
|
|
432
|
+
};
|
|
433
|
+
}
|
|
434
|
+
function Tt(e) {
|
|
435
|
+
if (e !== void 0)
|
|
436
|
+
return e === null ? null : {
|
|
437
|
+
leftExpression: e.leftExpression,
|
|
438
|
+
operator: e.operator,
|
|
439
|
+
rightExpression: e.rightExpression
|
|
440
|
+
};
|
|
441
|
+
}
|
|
442
|
+
const zi = {
|
|
398
443
|
Value: "VALUE",
|
|
399
444
|
ValueList: "VALUE_LIST"
|
|
400
445
|
};
|
|
401
|
-
function
|
|
402
|
-
return
|
|
446
|
+
function Pt(e) {
|
|
447
|
+
return It(e);
|
|
403
448
|
}
|
|
404
|
-
function
|
|
449
|
+
function It(e, t) {
|
|
405
450
|
return e;
|
|
406
451
|
}
|
|
407
|
-
function
|
|
452
|
+
function Bi(e) {
|
|
408
453
|
return e;
|
|
409
454
|
}
|
|
410
|
-
function
|
|
455
|
+
function Gi(e) {
|
|
411
456
|
return !0;
|
|
412
457
|
}
|
|
413
|
-
function
|
|
414
|
-
return
|
|
458
|
+
function Ot(e) {
|
|
459
|
+
return xt(e);
|
|
415
460
|
}
|
|
416
|
-
function
|
|
461
|
+
function xt(e, t) {
|
|
417
462
|
return e == null ? e : {
|
|
418
|
-
type: c(e, "type") ?
|
|
463
|
+
type: c(e, "type") ? Pt(e.type) : void 0,
|
|
419
464
|
value: c(e, "value") ? e.value : void 0,
|
|
420
465
|
valueList: c(e, "valueList") ? e.valueList : void 0
|
|
421
466
|
};
|
|
422
467
|
}
|
|
423
|
-
function
|
|
468
|
+
function Nt(e) {
|
|
424
469
|
if (e !== void 0)
|
|
425
470
|
return e === null ? null : {
|
|
426
471
|
type: e.type,
|
|
@@ -428,80 +473,80 @@ function Ct(e) {
|
|
|
428
473
|
valueList: e.valueList
|
|
429
474
|
};
|
|
430
475
|
}
|
|
431
|
-
const
|
|
476
|
+
const Qi = {
|
|
432
477
|
Like: "LIKE",
|
|
433
478
|
Eq: "EQ",
|
|
434
479
|
In: "IN"
|
|
435
480
|
};
|
|
436
|
-
function
|
|
437
|
-
return
|
|
481
|
+
function At(e) {
|
|
482
|
+
return bt(e);
|
|
438
483
|
}
|
|
439
|
-
function
|
|
484
|
+
function bt(e, t) {
|
|
440
485
|
return e;
|
|
441
486
|
}
|
|
442
|
-
function
|
|
487
|
+
function Ki(e) {
|
|
443
488
|
return e;
|
|
444
489
|
}
|
|
445
|
-
function
|
|
490
|
+
function Wi(e) {
|
|
446
491
|
let t = !0;
|
|
447
492
|
return t = t && "operandLeft" in e, t = t && "operator" in e, t = t && "operandRight" in e, t;
|
|
448
493
|
}
|
|
449
|
-
function
|
|
450
|
-
return
|
|
494
|
+
function Dt(e) {
|
|
495
|
+
return kt(e);
|
|
451
496
|
}
|
|
452
|
-
function
|
|
497
|
+
function kt(e, t) {
|
|
453
498
|
return e == null ? e : {
|
|
454
499
|
operandLeft: e.operandLeft,
|
|
455
|
-
operator:
|
|
456
|
-
operandRight:
|
|
500
|
+
operator: At(e.operator),
|
|
501
|
+
operandRight: Ot(
|
|
457
502
|
e.operandRight
|
|
458
503
|
)
|
|
459
504
|
};
|
|
460
505
|
}
|
|
461
|
-
function
|
|
506
|
+
function Rt(e) {
|
|
462
507
|
if (e !== void 0)
|
|
463
508
|
return e === null ? null : {
|
|
464
509
|
operandLeft: e.operandLeft,
|
|
465
510
|
operator: e.operator,
|
|
466
|
-
operandRight:
|
|
511
|
+
operandRight: Nt(e.operandRight)
|
|
467
512
|
};
|
|
468
513
|
}
|
|
469
|
-
function
|
|
514
|
+
function Yi(e) {
|
|
470
515
|
let t = !0;
|
|
471
516
|
return t = t && "connectorEndpoint" in e, t;
|
|
472
517
|
}
|
|
473
|
-
function
|
|
474
|
-
return
|
|
518
|
+
function Xi(e) {
|
|
519
|
+
return Ut(e);
|
|
475
520
|
}
|
|
476
|
-
function
|
|
521
|
+
function Ut(e, t) {
|
|
477
522
|
return e == null ? e : {
|
|
478
523
|
connectorEndpoint: e.connectorEndpoint,
|
|
479
524
|
limit: c(e, "limit") ? e.limit : void 0,
|
|
480
525
|
offset: c(e, "offset") ? e.offset : void 0,
|
|
481
526
|
filterExpressions: c(e, "filterExpressions") ? e.filterExpressions.map(
|
|
482
|
-
|
|
527
|
+
Dt
|
|
483
528
|
) : void 0
|
|
484
529
|
};
|
|
485
530
|
}
|
|
486
|
-
function
|
|
531
|
+
function Et(e) {
|
|
487
532
|
if (e !== void 0)
|
|
488
533
|
return e === null ? null : {
|
|
489
534
|
connectorEndpoint: e.connectorEndpoint,
|
|
490
535
|
limit: e.limit,
|
|
491
536
|
offset: e.offset,
|
|
492
537
|
filterExpressions: e.filterExpressions === void 0 ? void 0 : e.filterExpressions.map(
|
|
493
|
-
|
|
538
|
+
Rt
|
|
494
539
|
)
|
|
495
540
|
};
|
|
496
541
|
}
|
|
497
|
-
function
|
|
542
|
+
function ji(e) {
|
|
498
543
|
let t = !0;
|
|
499
544
|
return t = t && "numActiveConsumingContractAgreements" in e, t;
|
|
500
545
|
}
|
|
501
|
-
function
|
|
502
|
-
return
|
|
546
|
+
function Jt(e) {
|
|
547
|
+
return Lt(e);
|
|
503
548
|
}
|
|
504
|
-
function
|
|
549
|
+
function Lt(e, t) {
|
|
505
550
|
return e == null ? e : {
|
|
506
551
|
numActiveConsumingContractAgreements: e.numActiveConsumingContractAgreements,
|
|
507
552
|
maxActiveConsumingContractAgreements: c(
|
|
@@ -510,57 +555,57 @@ function bt(e, t) {
|
|
|
510
555
|
) ? e.maxActiveConsumingContractAgreements : void 0
|
|
511
556
|
};
|
|
512
557
|
}
|
|
513
|
-
function
|
|
558
|
+
function es(e) {
|
|
514
559
|
if (e !== void 0)
|
|
515
560
|
return e === null ? null : {
|
|
516
561
|
numActiveConsumingContractAgreements: e.numActiveConsumingContractAgreements,
|
|
517
562
|
maxActiveConsumingContractAgreements: e.maxActiveConsumingContractAgreements
|
|
518
563
|
};
|
|
519
564
|
}
|
|
520
|
-
const
|
|
565
|
+
const ts = {
|
|
521
566
|
Consuming: "CONSUMING",
|
|
522
567
|
Providing: "PROVIDING"
|
|
523
568
|
};
|
|
524
|
-
function
|
|
525
|
-
return
|
|
569
|
+
function $e(e) {
|
|
570
|
+
return Ft(e);
|
|
526
571
|
}
|
|
527
|
-
function
|
|
572
|
+
function Ft(e, t) {
|
|
528
573
|
return e;
|
|
529
574
|
}
|
|
530
|
-
function
|
|
575
|
+
function rs(e) {
|
|
531
576
|
return e;
|
|
532
577
|
}
|
|
533
|
-
const
|
|
578
|
+
const ns = {
|
|
534
579
|
Running: "RUNNING",
|
|
535
580
|
Ok: "OK",
|
|
536
581
|
Error: "ERROR"
|
|
537
582
|
};
|
|
538
|
-
function
|
|
539
|
-
return
|
|
583
|
+
function qt(e) {
|
|
584
|
+
return Mt(e);
|
|
540
585
|
}
|
|
541
|
-
function
|
|
586
|
+
function Mt(e, t) {
|
|
542
587
|
return e;
|
|
543
588
|
}
|
|
544
|
-
function
|
|
589
|
+
function is(e) {
|
|
545
590
|
return e;
|
|
546
591
|
}
|
|
547
|
-
function
|
|
592
|
+
function ss(e) {
|
|
548
593
|
let t = !0;
|
|
549
594
|
return t = t && "name" in e, t = t && "code" in e, t = t && "simplifiedState" in e, t;
|
|
550
595
|
}
|
|
551
|
-
function
|
|
552
|
-
return
|
|
596
|
+
function Ve(e) {
|
|
597
|
+
return Zt(e);
|
|
553
598
|
}
|
|
554
|
-
function
|
|
599
|
+
function Zt(e, t) {
|
|
555
600
|
return e == null ? e : {
|
|
556
601
|
name: e.name,
|
|
557
602
|
code: e.code,
|
|
558
|
-
simplifiedState:
|
|
603
|
+
simplifiedState: qt(
|
|
559
604
|
e.simplifiedState
|
|
560
605
|
)
|
|
561
606
|
};
|
|
562
607
|
}
|
|
563
|
-
function
|
|
608
|
+
function He(e) {
|
|
564
609
|
if (e !== void 0)
|
|
565
610
|
return e === null ? null : {
|
|
566
611
|
name: e.name,
|
|
@@ -568,82 +613,59 @@ function Ve(e) {
|
|
|
568
613
|
simplifiedState: e.simplifiedState
|
|
569
614
|
};
|
|
570
615
|
}
|
|
571
|
-
function
|
|
616
|
+
function as(e) {
|
|
572
617
|
let t = !0;
|
|
573
618
|
return t = t && "transferProcessId" in e, t = t && "lastUpdatedDate" in e, t = t && "state" in e, t;
|
|
574
619
|
}
|
|
575
|
-
function
|
|
576
|
-
return
|
|
620
|
+
function $t(e) {
|
|
621
|
+
return Vt(e);
|
|
577
622
|
}
|
|
578
|
-
function
|
|
623
|
+
function Vt(e, t) {
|
|
579
624
|
return e == null ? e : {
|
|
580
625
|
transferProcessId: e.transferProcessId,
|
|
581
626
|
lastUpdatedDate: new Date(e.lastUpdatedDate),
|
|
582
|
-
state:
|
|
627
|
+
state: Ve(e.state),
|
|
583
628
|
errorMessage: c(e, "errorMessage") ? e.errorMessage : void 0
|
|
584
629
|
};
|
|
585
630
|
}
|
|
586
|
-
function
|
|
631
|
+
function Ht(e) {
|
|
587
632
|
if (e !== void 0)
|
|
588
633
|
return e === null ? null : {
|
|
589
634
|
transferProcessId: e.transferProcessId,
|
|
590
635
|
lastUpdatedDate: e.lastUpdatedDate.toISOString(),
|
|
591
|
-
state:
|
|
636
|
+
state: He(e.state),
|
|
592
637
|
errorMessage: e.errorMessage
|
|
593
638
|
};
|
|
594
639
|
}
|
|
595
|
-
const
|
|
596
|
-
Eq: "EQ",
|
|
597
|
-
Neq: "NEQ",
|
|
598
|
-
Gt: "GT",
|
|
599
|
-
Geq: "GEQ",
|
|
600
|
-
Lt: "LT",
|
|
601
|
-
Leq: "LEQ",
|
|
602
|
-
In: "IN",
|
|
603
|
-
HasPart: "HAS_PART",
|
|
604
|
-
IsA: "IS_A",
|
|
605
|
-
IsAllOf: "IS_ALL_OF",
|
|
606
|
-
IsAnyOf: "IS_ANY_OF",
|
|
607
|
-
IsNoneOf: "IS_NONE_OF"
|
|
608
|
-
};
|
|
609
|
-
function Ft(e) {
|
|
610
|
-
return qt(e);
|
|
611
|
-
}
|
|
612
|
-
function qt(e, t) {
|
|
613
|
-
return e;
|
|
614
|
-
}
|
|
615
|
-
function Bi(e) {
|
|
616
|
-
return e;
|
|
617
|
-
}
|
|
618
|
-
const Gi = {
|
|
640
|
+
const os = {
|
|
619
641
|
String: "STRING",
|
|
620
642
|
StringList: "STRING_LIST",
|
|
621
643
|
Json: "JSON"
|
|
622
644
|
};
|
|
623
|
-
function
|
|
624
|
-
return
|
|
645
|
+
function zt(e) {
|
|
646
|
+
return Bt(e);
|
|
625
647
|
}
|
|
626
|
-
function
|
|
648
|
+
function Bt(e, t) {
|
|
627
649
|
return e;
|
|
628
650
|
}
|
|
629
|
-
function
|
|
651
|
+
function cs(e) {
|
|
630
652
|
return e;
|
|
631
653
|
}
|
|
632
|
-
function
|
|
654
|
+
function ds(e) {
|
|
633
655
|
let t = !0;
|
|
634
656
|
return t = t && "type" in e, t;
|
|
635
657
|
}
|
|
636
|
-
function
|
|
637
|
-
return
|
|
658
|
+
function Gt(e) {
|
|
659
|
+
return Qt(e);
|
|
638
660
|
}
|
|
639
|
-
function
|
|
661
|
+
function Qt(e, t) {
|
|
640
662
|
return e == null ? e : {
|
|
641
|
-
type:
|
|
663
|
+
type: zt(e.type),
|
|
642
664
|
value: c(e, "value") ? e.value : void 0,
|
|
643
665
|
valueList: c(e, "valueList") ? e.valueList : void 0
|
|
644
666
|
};
|
|
645
667
|
}
|
|
646
|
-
function
|
|
668
|
+
function Kt(e) {
|
|
647
669
|
if (e !== void 0)
|
|
648
670
|
return e === null ? null : {
|
|
649
671
|
type: e.type,
|
|
@@ -651,40 +673,40 @@ function Ht(e) {
|
|
|
651
673
|
valueList: e.valueList
|
|
652
674
|
};
|
|
653
675
|
}
|
|
654
|
-
function
|
|
676
|
+
function us(e) {
|
|
655
677
|
let t = !0;
|
|
656
678
|
return t = t && "left" in e, t = t && "operator" in e, t = t && "right" in e, t;
|
|
657
679
|
}
|
|
658
|
-
function
|
|
659
|
-
return
|
|
680
|
+
function ze(e) {
|
|
681
|
+
return Wt(e);
|
|
660
682
|
}
|
|
661
|
-
function
|
|
683
|
+
function Wt(e, t) {
|
|
662
684
|
return e == null ? e : {
|
|
663
685
|
left: e.left,
|
|
664
|
-
operator:
|
|
665
|
-
right:
|
|
686
|
+
operator: Ze(e.operator),
|
|
687
|
+
right: Gt(e.right)
|
|
666
688
|
};
|
|
667
689
|
}
|
|
668
|
-
function
|
|
690
|
+
function Be(e) {
|
|
669
691
|
if (e !== void 0)
|
|
670
692
|
return e === null ? null : {
|
|
671
693
|
left: e.left,
|
|
672
694
|
operator: e.operator,
|
|
673
|
-
right:
|
|
695
|
+
right: Kt(e.right)
|
|
674
696
|
};
|
|
675
697
|
}
|
|
676
|
-
function
|
|
698
|
+
function ls(e) {
|
|
677
699
|
let t = !0;
|
|
678
700
|
return t = t && "policyJsonLd" in e, t = t && "errors" in e, t;
|
|
679
701
|
}
|
|
680
702
|
function be(e) {
|
|
681
|
-
return
|
|
703
|
+
return Yt(e);
|
|
682
704
|
}
|
|
683
|
-
function
|
|
705
|
+
function Yt(e, t) {
|
|
684
706
|
return e == null ? e : {
|
|
685
707
|
policyJsonLd: e.policyJsonLd,
|
|
686
708
|
constraints: c(e, "constraints") ? e.constraints.map(
|
|
687
|
-
|
|
709
|
+
ze
|
|
688
710
|
) : void 0,
|
|
689
711
|
errors: e.errors
|
|
690
712
|
};
|
|
@@ -694,34 +716,34 @@ function De(e) {
|
|
|
694
716
|
return e === null ? null : {
|
|
695
717
|
policyJsonLd: e.policyJsonLd,
|
|
696
718
|
constraints: e.constraints === void 0 ? void 0 : e.constraints.map(
|
|
697
|
-
|
|
719
|
+
Be
|
|
698
720
|
),
|
|
699
721
|
errors: e.errors
|
|
700
722
|
};
|
|
701
723
|
}
|
|
702
|
-
function
|
|
724
|
+
function fs(e) {
|
|
703
725
|
let t = !0;
|
|
704
726
|
return t = t && "contractAgreementId" in e, t = t && "contractNegotiationId" in e, t = t && "direction" in e, t = t && "counterPartyAddress" in e, t = t && "counterPartyId" in e, t = t && "contractSigningDate" in e, t = t && "asset" in e, t = t && "contractPolicy" in e, t = t && "transferProcesses" in e, t;
|
|
705
727
|
}
|
|
706
|
-
function
|
|
707
|
-
return
|
|
728
|
+
function Xt(e) {
|
|
729
|
+
return jt(e);
|
|
708
730
|
}
|
|
709
|
-
function
|
|
731
|
+
function jt(e, t) {
|
|
710
732
|
return e == null ? e : {
|
|
711
733
|
contractAgreementId: e.contractAgreementId,
|
|
712
734
|
contractNegotiationId: e.contractNegotiationId,
|
|
713
|
-
direction:
|
|
735
|
+
direction: $e(e.direction),
|
|
714
736
|
counterPartyAddress: e.counterPartyAddress,
|
|
715
737
|
counterPartyId: e.counterPartyId,
|
|
716
738
|
contractSigningDate: new Date(e.contractSigningDate),
|
|
717
739
|
asset: Ce(e.asset),
|
|
718
740
|
contractPolicy: be(e.contractPolicy),
|
|
719
741
|
transferProcesses: e.transferProcesses.map(
|
|
720
|
-
|
|
742
|
+
$t
|
|
721
743
|
)
|
|
722
744
|
};
|
|
723
745
|
}
|
|
724
|
-
function
|
|
746
|
+
function er(e) {
|
|
725
747
|
if (e !== void 0)
|
|
726
748
|
return e === null ? null : {
|
|
727
749
|
contractAgreementId: e.contractAgreementId,
|
|
@@ -733,59 +755,59 @@ function Kt(e) {
|
|
|
733
755
|
asset: Ae(e.asset),
|
|
734
756
|
contractPolicy: De(e.contractPolicy),
|
|
735
757
|
transferProcesses: e.transferProcesses.map(
|
|
736
|
-
|
|
758
|
+
Ht
|
|
737
759
|
)
|
|
738
760
|
};
|
|
739
761
|
}
|
|
740
|
-
function
|
|
762
|
+
function ps(e) {
|
|
741
763
|
let t = !0;
|
|
742
764
|
return t = t && "contractAgreements" in e, t;
|
|
743
765
|
}
|
|
744
|
-
function
|
|
745
|
-
return
|
|
766
|
+
function tr(e) {
|
|
767
|
+
return rr(e);
|
|
746
768
|
}
|
|
747
|
-
function
|
|
769
|
+
function rr(e, t) {
|
|
748
770
|
return e == null ? e : {
|
|
749
771
|
contractAgreements: e.contractAgreements.map(
|
|
750
|
-
|
|
772
|
+
Xt
|
|
751
773
|
)
|
|
752
774
|
};
|
|
753
775
|
}
|
|
754
|
-
function
|
|
776
|
+
function ms(e) {
|
|
755
777
|
if (e !== void 0)
|
|
756
778
|
return e === null ? null : {
|
|
757
779
|
contractAgreements: e.contractAgreements.map(
|
|
758
|
-
|
|
780
|
+
er
|
|
759
781
|
)
|
|
760
782
|
};
|
|
761
783
|
}
|
|
762
|
-
const
|
|
784
|
+
const hs = {
|
|
763
785
|
Value: "VALUE",
|
|
764
786
|
ValueList: "VALUE_LIST"
|
|
765
787
|
};
|
|
766
|
-
function
|
|
767
|
-
return
|
|
788
|
+
function nr(e) {
|
|
789
|
+
return ir(e);
|
|
768
790
|
}
|
|
769
|
-
function
|
|
791
|
+
function ir(e, t) {
|
|
770
792
|
return e;
|
|
771
793
|
}
|
|
772
|
-
function
|
|
794
|
+
function gs(e) {
|
|
773
795
|
return e;
|
|
774
796
|
}
|
|
775
|
-
function
|
|
797
|
+
function ys(e) {
|
|
776
798
|
return !0;
|
|
777
799
|
}
|
|
778
|
-
function
|
|
779
|
-
return
|
|
800
|
+
function sr(e) {
|
|
801
|
+
return ar(e);
|
|
780
802
|
}
|
|
781
|
-
function
|
|
803
|
+
function ar(e, t) {
|
|
782
804
|
return e == null ? e : {
|
|
783
|
-
type: c(e, "type") ?
|
|
805
|
+
type: c(e, "type") ? nr(e.type) : void 0,
|
|
784
806
|
value: c(e, "value") ? e.value : void 0,
|
|
785
807
|
valueList: c(e, "valueList") ? e.valueList : void 0
|
|
786
808
|
};
|
|
787
809
|
}
|
|
788
|
-
function
|
|
810
|
+
function or(e) {
|
|
789
811
|
if (e !== void 0)
|
|
790
812
|
return e === null ? null : {
|
|
791
813
|
type: e.type,
|
|
@@ -793,128 +815,128 @@ function rr(e) {
|
|
|
793
815
|
valueList: e.valueList
|
|
794
816
|
};
|
|
795
817
|
}
|
|
796
|
-
const
|
|
818
|
+
const vs = {
|
|
797
819
|
Eq: "EQ",
|
|
798
820
|
In: "IN",
|
|
799
821
|
Like: "LIKE"
|
|
800
822
|
};
|
|
801
|
-
function
|
|
802
|
-
return
|
|
823
|
+
function cr(e) {
|
|
824
|
+
return dr(e);
|
|
803
825
|
}
|
|
804
|
-
function
|
|
826
|
+
function dr(e, t) {
|
|
805
827
|
return e;
|
|
806
828
|
}
|
|
807
|
-
function
|
|
829
|
+
function _s(e) {
|
|
808
830
|
return e;
|
|
809
831
|
}
|
|
810
|
-
function
|
|
832
|
+
function ws(e) {
|
|
811
833
|
let t = !0;
|
|
812
834
|
return t = t && "operandLeft" in e, t = t && "operator" in e, t = t && "operandRight" in e, t;
|
|
813
835
|
}
|
|
814
|
-
function
|
|
815
|
-
return
|
|
836
|
+
function Ge(e) {
|
|
837
|
+
return ur(e);
|
|
816
838
|
}
|
|
817
|
-
function
|
|
839
|
+
function ur(e, t) {
|
|
818
840
|
return e == null ? e : {
|
|
819
841
|
operandLeft: e.operandLeft,
|
|
820
|
-
operator:
|
|
821
|
-
operandRight:
|
|
842
|
+
operator: cr(e.operator),
|
|
843
|
+
operandRight: sr(e.operandRight)
|
|
822
844
|
};
|
|
823
845
|
}
|
|
824
|
-
function
|
|
846
|
+
function Qe(e) {
|
|
825
847
|
if (e !== void 0)
|
|
826
848
|
return e === null ? null : {
|
|
827
849
|
operandLeft: e.operandLeft,
|
|
828
850
|
operator: e.operator,
|
|
829
|
-
operandRight:
|
|
851
|
+
operandRight: or(e.operandRight)
|
|
830
852
|
};
|
|
831
853
|
}
|
|
832
|
-
function
|
|
854
|
+
function Cs(e) {
|
|
833
855
|
let t = !0;
|
|
834
856
|
return t = t && "contractDefinitionId" in e, t = t && "accessPolicyId" in e, t = t && "contractPolicyId" in e, t = t && "assetSelector" in e, t;
|
|
835
857
|
}
|
|
836
|
-
function
|
|
837
|
-
return
|
|
858
|
+
function lr(e) {
|
|
859
|
+
return fr(e);
|
|
838
860
|
}
|
|
839
|
-
function
|
|
861
|
+
function fr(e, t) {
|
|
840
862
|
return e == null ? e : {
|
|
841
863
|
contractDefinitionId: e.contractDefinitionId,
|
|
842
864
|
accessPolicyId: e.accessPolicyId,
|
|
843
865
|
contractPolicyId: e.contractPolicyId,
|
|
844
866
|
assetSelector: e.assetSelector.map(
|
|
845
|
-
|
|
867
|
+
Ge
|
|
846
868
|
)
|
|
847
869
|
};
|
|
848
870
|
}
|
|
849
|
-
function
|
|
871
|
+
function pr(e) {
|
|
850
872
|
if (e !== void 0)
|
|
851
873
|
return e === null ? null : {
|
|
852
874
|
contractDefinitionId: e.contractDefinitionId,
|
|
853
875
|
accessPolicyId: e.accessPolicyId,
|
|
854
876
|
contractPolicyId: e.contractPolicyId,
|
|
855
877
|
assetSelector: e.assetSelector.map(
|
|
856
|
-
|
|
878
|
+
Qe
|
|
857
879
|
)
|
|
858
880
|
};
|
|
859
881
|
}
|
|
860
|
-
function
|
|
882
|
+
function Ss(e) {
|
|
861
883
|
let t = !0;
|
|
862
884
|
return t = t && "contractDefinitions" in e, t;
|
|
863
885
|
}
|
|
864
|
-
function
|
|
865
|
-
return
|
|
886
|
+
function mr(e) {
|
|
887
|
+
return hr(e);
|
|
866
888
|
}
|
|
867
|
-
function
|
|
889
|
+
function hr(e, t) {
|
|
868
890
|
return e == null ? e : {
|
|
869
891
|
contractDefinitions: e.contractDefinitions.map(
|
|
870
|
-
|
|
892
|
+
lr
|
|
871
893
|
)
|
|
872
894
|
};
|
|
873
895
|
}
|
|
874
|
-
function
|
|
896
|
+
function Ts(e) {
|
|
875
897
|
if (e !== void 0)
|
|
876
898
|
return e === null ? null : {
|
|
877
899
|
contractDefinitions: e.contractDefinitions.map(
|
|
878
|
-
|
|
900
|
+
pr
|
|
879
901
|
)
|
|
880
902
|
};
|
|
881
903
|
}
|
|
882
|
-
function
|
|
904
|
+
function Ps(e) {
|
|
883
905
|
let t = !0;
|
|
884
906
|
return t = t && "contractDefinitionId" in e, t = t && "contractPolicyId" in e, t = t && "accessPolicyId" in e, t = t && "assetSelector" in e, t;
|
|
885
907
|
}
|
|
886
|
-
function
|
|
887
|
-
return
|
|
908
|
+
function Is(e) {
|
|
909
|
+
return gr(e);
|
|
888
910
|
}
|
|
889
|
-
function
|
|
911
|
+
function gr(e, t) {
|
|
890
912
|
return e == null ? e : {
|
|
891
913
|
contractDefinitionId: e.contractDefinitionId,
|
|
892
914
|
contractPolicyId: e.contractPolicyId,
|
|
893
915
|
accessPolicyId: e.accessPolicyId,
|
|
894
916
|
assetSelector: e.assetSelector.map(
|
|
895
|
-
|
|
917
|
+
Ge
|
|
896
918
|
)
|
|
897
919
|
};
|
|
898
920
|
}
|
|
899
|
-
function
|
|
921
|
+
function yr(e) {
|
|
900
922
|
if (e !== void 0)
|
|
901
923
|
return e === null ? null : {
|
|
902
924
|
contractDefinitionId: e.contractDefinitionId,
|
|
903
925
|
contractPolicyId: e.contractPolicyId,
|
|
904
926
|
accessPolicyId: e.accessPolicyId,
|
|
905
927
|
assetSelector: e.assetSelector.map(
|
|
906
|
-
|
|
928
|
+
Qe
|
|
907
929
|
)
|
|
908
930
|
};
|
|
909
931
|
}
|
|
910
|
-
function
|
|
932
|
+
function Os(e) {
|
|
911
933
|
let t = !0;
|
|
912
934
|
return t = t && "counterPartyAddress" in e, t = t && "counterPartyParticipantId" in e, t = t && "contractOfferId" in e, t = t && "policyJsonLd" in e, t = t && "assetId" in e, t;
|
|
913
935
|
}
|
|
914
|
-
function
|
|
915
|
-
return
|
|
936
|
+
function xs(e) {
|
|
937
|
+
return vr(e);
|
|
916
938
|
}
|
|
917
|
-
function
|
|
939
|
+
function vr(e, t) {
|
|
918
940
|
return e == null ? e : {
|
|
919
941
|
counterPartyAddress: e.counterPartyAddress,
|
|
920
942
|
counterPartyParticipantId: e.counterPartyParticipantId,
|
|
@@ -923,7 +945,7 @@ function pr(e, t) {
|
|
|
923
945
|
assetId: e.assetId
|
|
924
946
|
};
|
|
925
947
|
}
|
|
926
|
-
function
|
|
948
|
+
function _r(e) {
|
|
927
949
|
if (e !== void 0)
|
|
928
950
|
return e === null ? null : {
|
|
929
951
|
counterPartyAddress: e.counterPartyAddress,
|
|
@@ -933,37 +955,37 @@ function mr(e) {
|
|
|
933
955
|
assetId: e.assetId
|
|
934
956
|
};
|
|
935
957
|
}
|
|
936
|
-
const
|
|
958
|
+
const Ns = {
|
|
937
959
|
InProgress: "IN_PROGRESS",
|
|
938
960
|
Agreed: "AGREED",
|
|
939
961
|
Terminated: "TERMINATED"
|
|
940
962
|
};
|
|
941
|
-
function
|
|
942
|
-
return
|
|
963
|
+
function wr(e) {
|
|
964
|
+
return Cr(e);
|
|
943
965
|
}
|
|
944
|
-
function
|
|
966
|
+
function Cr(e, t) {
|
|
945
967
|
return e;
|
|
946
968
|
}
|
|
947
|
-
function
|
|
969
|
+
function As(e) {
|
|
948
970
|
return e;
|
|
949
971
|
}
|
|
950
|
-
function
|
|
972
|
+
function bs(e) {
|
|
951
973
|
let t = !0;
|
|
952
974
|
return t = t && "name" in e, t = t && "code" in e, t = t && "simplifiedState" in e, t;
|
|
953
975
|
}
|
|
954
|
-
function
|
|
955
|
-
return
|
|
976
|
+
function Sr(e) {
|
|
977
|
+
return Tr(e);
|
|
956
978
|
}
|
|
957
|
-
function
|
|
979
|
+
function Tr(e, t) {
|
|
958
980
|
return e == null ? e : {
|
|
959
981
|
name: e.name,
|
|
960
982
|
code: e.code,
|
|
961
|
-
simplifiedState:
|
|
983
|
+
simplifiedState: wr(
|
|
962
984
|
e.simplifiedState
|
|
963
985
|
)
|
|
964
986
|
};
|
|
965
987
|
}
|
|
966
|
-
function
|
|
988
|
+
function Pr(e) {
|
|
967
989
|
if (e !== void 0)
|
|
968
990
|
return e === null ? null : {
|
|
969
991
|
name: e.name,
|
|
@@ -971,41 +993,41 @@ function _r(e) {
|
|
|
971
993
|
simplifiedState: e.simplifiedState
|
|
972
994
|
};
|
|
973
995
|
}
|
|
974
|
-
function
|
|
996
|
+
function Ds(e) {
|
|
975
997
|
let t = !0;
|
|
976
998
|
return t = t && "tokenUrl" in e, t = t && "jwksUrl" in e, t;
|
|
977
999
|
}
|
|
978
|
-
function
|
|
979
|
-
return
|
|
1000
|
+
function Ir(e) {
|
|
1001
|
+
return Or(e);
|
|
980
1002
|
}
|
|
981
|
-
function
|
|
1003
|
+
function Or(e, t) {
|
|
982
1004
|
return e == null ? e : {
|
|
983
1005
|
tokenUrl: e.tokenUrl,
|
|
984
1006
|
jwksUrl: e.jwksUrl
|
|
985
1007
|
};
|
|
986
1008
|
}
|
|
987
|
-
function
|
|
1009
|
+
function xr(e) {
|
|
988
1010
|
if (e !== void 0)
|
|
989
1011
|
return e === null ? null : {
|
|
990
1012
|
tokenUrl: e.tokenUrl,
|
|
991
1013
|
jwksUrl: e.jwksUrl
|
|
992
1014
|
};
|
|
993
1015
|
}
|
|
994
|
-
function
|
|
1016
|
+
function ks(e) {
|
|
995
1017
|
let t = !0;
|
|
996
1018
|
return t = t && "url" in e, t = t && "tokenUrl" in e, t = t && "authorityId" in e, t;
|
|
997
1019
|
}
|
|
998
|
-
function
|
|
999
|
-
return
|
|
1020
|
+
function Nr(e) {
|
|
1021
|
+
return Ar(e);
|
|
1000
1022
|
}
|
|
1001
|
-
function
|
|
1023
|
+
function Ar(e, t) {
|
|
1002
1024
|
return e == null ? e : {
|
|
1003
1025
|
url: e.url,
|
|
1004
1026
|
tokenUrl: e.tokenUrl,
|
|
1005
1027
|
authorityId: e.authorityId
|
|
1006
1028
|
};
|
|
1007
1029
|
}
|
|
1008
|
-
function
|
|
1030
|
+
function br(e) {
|
|
1009
1031
|
if (e !== void 0)
|
|
1010
1032
|
return e === null ? null : {
|
|
1011
1033
|
url: e.url,
|
|
@@ -1013,14 +1035,14 @@ function Ir(e) {
|
|
|
1013
1035
|
authorityId: e.authorityId
|
|
1014
1036
|
};
|
|
1015
1037
|
}
|
|
1016
|
-
function
|
|
1038
|
+
function Rs(e) {
|
|
1017
1039
|
let t = !0;
|
|
1018
1040
|
return t = t && "numTotal" in e, t = t && "numRunning" in e, t = t && "numOk" in e, t = t && "numError" in e, t;
|
|
1019
1041
|
}
|
|
1020
1042
|
function ke(e) {
|
|
1021
|
-
return
|
|
1043
|
+
return Dr(e);
|
|
1022
1044
|
}
|
|
1023
|
-
function
|
|
1045
|
+
function Dr(e, t) {
|
|
1024
1046
|
return e == null ? e : {
|
|
1025
1047
|
numTotal: e.numTotal,
|
|
1026
1048
|
numRunning: e.numRunning,
|
|
@@ -1037,14 +1059,14 @@ function Re(e) {
|
|
|
1037
1059
|
numError: e.numError
|
|
1038
1060
|
};
|
|
1039
1061
|
}
|
|
1040
|
-
function
|
|
1062
|
+
function Us(e) {
|
|
1041
1063
|
let t = !0;
|
|
1042
1064
|
return t = t && "numAssets" in e, t = t && "numPolicies" in e, t = t && "numContractDefinitions" in e, t = t && "numContractAgreementsConsuming" in e, t = t && "numContractAgreementsProviding" in e, t = t && "transferProcessesConsuming" in e, t = t && "transferProcessesProviding" in e, t = t && "connectorEndpoint" in e, t = t && "connectorParticipantId" in e, t = t && "connectorTitle" in e, t = t && "connectorDescription" in e, t = t && "connectorCuratorUrl" in e, t = t && "connectorCuratorName" in e, t = t && "connectorMaintainerUrl" in e, t = t && "connectorMaintainerName" in e, t;
|
|
1043
1065
|
}
|
|
1044
|
-
function
|
|
1045
|
-
return
|
|
1066
|
+
function kr(e) {
|
|
1067
|
+
return Rr(e);
|
|
1046
1068
|
}
|
|
1047
|
-
function
|
|
1069
|
+
function Rr(e, t) {
|
|
1048
1070
|
return e == null ? e : {
|
|
1049
1071
|
numAssets: e.numAssets,
|
|
1050
1072
|
numPolicies: e.numPolicies,
|
|
@@ -1065,11 +1087,11 @@ function Nr(e, t) {
|
|
|
1065
1087
|
connectorCuratorName: e.connectorCuratorName,
|
|
1066
1088
|
connectorMaintainerUrl: e.connectorMaintainerUrl,
|
|
1067
1089
|
connectorMaintainerName: e.connectorMaintainerName,
|
|
1068
|
-
connectorDapsConfig: c(e, "connectorDapsConfig") ?
|
|
1069
|
-
connectorMiwConfig: c(e, "connectorMiwConfig") ?
|
|
1090
|
+
connectorDapsConfig: c(e, "connectorDapsConfig") ? Ir(e.connectorDapsConfig) : void 0,
|
|
1091
|
+
connectorMiwConfig: c(e, "connectorMiwConfig") ? Nr(e.connectorMiwConfig) : void 0
|
|
1070
1092
|
};
|
|
1071
1093
|
}
|
|
1072
|
-
function
|
|
1094
|
+
function Es(e) {
|
|
1073
1095
|
if (e !== void 0)
|
|
1074
1096
|
return e === null ? null : {
|
|
1075
1097
|
numAssets: e.numAssets,
|
|
@@ -1091,67 +1113,103 @@ function Cs(e) {
|
|
|
1091
1113
|
connectorCuratorName: e.connectorCuratorName,
|
|
1092
1114
|
connectorMaintainerUrl: e.connectorMaintainerUrl,
|
|
1093
1115
|
connectorMaintainerName: e.connectorMaintainerName,
|
|
1094
|
-
connectorDapsConfig:
|
|
1116
|
+
connectorDapsConfig: xr(
|
|
1095
1117
|
e.connectorDapsConfig
|
|
1096
1118
|
),
|
|
1097
|
-
connectorMiwConfig:
|
|
1119
|
+
connectorMiwConfig: br(e.connectorMiwConfig)
|
|
1098
1120
|
};
|
|
1099
1121
|
}
|
|
1100
|
-
|
|
1122
|
+
const Js = {
|
|
1123
|
+
AtomicConstraint: "ATOMIC_CONSTRAINT",
|
|
1124
|
+
And: "AND",
|
|
1125
|
+
Or: "OR",
|
|
1126
|
+
Xor: "XOR"
|
|
1127
|
+
};
|
|
1128
|
+
function Ur(e) {
|
|
1129
|
+
return Er(e);
|
|
1130
|
+
}
|
|
1131
|
+
function Er(e, t) {
|
|
1132
|
+
return e;
|
|
1133
|
+
}
|
|
1134
|
+
function Ls(e) {
|
|
1135
|
+
return e;
|
|
1136
|
+
}
|
|
1137
|
+
function Fs(e) {
|
|
1138
|
+
return !0;
|
|
1139
|
+
}
|
|
1140
|
+
function Ke(e) {
|
|
1141
|
+
return Jr(e);
|
|
1142
|
+
}
|
|
1143
|
+
function Jr(e, t) {
|
|
1144
|
+
return e == null ? e : {
|
|
1145
|
+
expressionType: c(e, "expressionType") ? Ur(e.expressionType) : void 0,
|
|
1146
|
+
expressions: c(e, "expressions") ? e.expressions.map(Ke) : void 0,
|
|
1147
|
+
atomicConstraint: c(e, "atomicConstraint") ? Ct(e.atomicConstraint) : void 0
|
|
1148
|
+
};
|
|
1149
|
+
}
|
|
1150
|
+
function We(e) {
|
|
1151
|
+
if (e !== void 0)
|
|
1152
|
+
return e === null ? null : {
|
|
1153
|
+
expressionType: e.expressionType,
|
|
1154
|
+
expressions: e.expressions === void 0 ? void 0 : e.expressions.map(We),
|
|
1155
|
+
atomicConstraint: Tt(e.atomicConstraint)
|
|
1156
|
+
};
|
|
1157
|
+
}
|
|
1158
|
+
function qs(e) {
|
|
1101
1159
|
let t = !0;
|
|
1102
1160
|
return t = t && "id" in e, t = t && "lastUpdatedDate" in e, t;
|
|
1103
1161
|
}
|
|
1104
|
-
function
|
|
1105
|
-
return
|
|
1162
|
+
function D(e) {
|
|
1163
|
+
return Lr(e);
|
|
1106
1164
|
}
|
|
1107
|
-
function
|
|
1165
|
+
function Lr(e, t) {
|
|
1108
1166
|
return e == null ? e : {
|
|
1109
1167
|
id: e.id,
|
|
1110
1168
|
lastUpdatedDate: new Date(e.lastUpdatedDate)
|
|
1111
1169
|
};
|
|
1112
1170
|
}
|
|
1113
|
-
function
|
|
1171
|
+
function Ms(e) {
|
|
1114
1172
|
if (e !== void 0)
|
|
1115
1173
|
return e === null ? null : {
|
|
1116
1174
|
id: e.id,
|
|
1117
1175
|
lastUpdatedDate: e.lastUpdatedDate.toISOString()
|
|
1118
1176
|
};
|
|
1119
1177
|
}
|
|
1120
|
-
function
|
|
1178
|
+
function Zs(e) {
|
|
1121
1179
|
let t = !0;
|
|
1122
1180
|
return t = t && "contractAgreementId" in e, t = t && "transferProcessRequestJsonLd" in e, t;
|
|
1123
1181
|
}
|
|
1124
|
-
function
|
|
1125
|
-
return
|
|
1182
|
+
function $s(e) {
|
|
1183
|
+
return Fr(e);
|
|
1126
1184
|
}
|
|
1127
|
-
function
|
|
1185
|
+
function Fr(e, t) {
|
|
1128
1186
|
return e == null ? e : {
|
|
1129
1187
|
contractAgreementId: e.contractAgreementId,
|
|
1130
1188
|
transferProcessRequestJsonLd: e.transferProcessRequestJsonLd
|
|
1131
1189
|
};
|
|
1132
1190
|
}
|
|
1133
|
-
function
|
|
1191
|
+
function qr(e) {
|
|
1134
1192
|
if (e !== void 0)
|
|
1135
1193
|
return e === null ? null : {
|
|
1136
1194
|
contractAgreementId: e.contractAgreementId,
|
|
1137
1195
|
transferProcessRequestJsonLd: e.transferProcessRequestJsonLd
|
|
1138
1196
|
};
|
|
1139
1197
|
}
|
|
1140
|
-
function
|
|
1198
|
+
function Vs(e) {
|
|
1141
1199
|
let t = !0;
|
|
1142
1200
|
return t = t && "contractAgreementId" in e, t = t && "dataSinkProperties" in e, t = t && "transferProcessProperties" in e, t;
|
|
1143
1201
|
}
|
|
1144
|
-
function
|
|
1145
|
-
return
|
|
1202
|
+
function Hs(e) {
|
|
1203
|
+
return Mr(e);
|
|
1146
1204
|
}
|
|
1147
|
-
function
|
|
1205
|
+
function Mr(e, t) {
|
|
1148
1206
|
return e == null ? e : {
|
|
1149
1207
|
contractAgreementId: e.contractAgreementId,
|
|
1150
1208
|
dataSinkProperties: e.dataSinkProperties,
|
|
1151
1209
|
transferProcessProperties: e.transferProcessProperties
|
|
1152
1210
|
};
|
|
1153
1211
|
}
|
|
1154
|
-
function
|
|
1212
|
+
function Zr(e) {
|
|
1155
1213
|
if (e !== void 0)
|
|
1156
1214
|
return e === null ? null : {
|
|
1157
1215
|
contractAgreementId: e.contractAgreementId,
|
|
@@ -1159,152 +1217,190 @@ function Rr(e) {
|
|
|
1159
1217
|
transferProcessProperties: e.transferProcessProperties
|
|
1160
1218
|
};
|
|
1161
1219
|
}
|
|
1162
|
-
function
|
|
1220
|
+
function zs(e) {
|
|
1163
1221
|
let t = !0;
|
|
1164
1222
|
return t = t && "incomingTransferProcessCounts" in e, t = t && "outgoingTransferProcessCounts" in e, t;
|
|
1165
1223
|
}
|
|
1166
|
-
function
|
|
1167
|
-
return
|
|
1224
|
+
function $r(e) {
|
|
1225
|
+
return Vr(e);
|
|
1168
1226
|
}
|
|
1169
|
-
function
|
|
1227
|
+
function Vr(e, t) {
|
|
1170
1228
|
return e == null ? e : {
|
|
1171
1229
|
incomingTransferProcessCounts: e.incomingTransferProcessCounts,
|
|
1172
1230
|
outgoingTransferProcessCounts: e.outgoingTransferProcessCounts
|
|
1173
1231
|
};
|
|
1174
1232
|
}
|
|
1175
|
-
function
|
|
1233
|
+
function Hr(e) {
|
|
1176
1234
|
if (e !== void 0)
|
|
1177
1235
|
return e === null ? null : {
|
|
1178
1236
|
incomingTransferProcessCounts: e.incomingTransferProcessCounts,
|
|
1179
1237
|
outgoingTransferProcessCounts: e.outgoingTransferProcessCounts
|
|
1180
1238
|
};
|
|
1181
1239
|
}
|
|
1182
|
-
function
|
|
1240
|
+
function Bs(e) {
|
|
1183
1241
|
let t = !0;
|
|
1184
1242
|
return t = t && "assetsCount" in e, t = t && "policiesCount" in e, t = t && "contractDefinitionsCount" in e, t = t && "contractAgreementsCount" in e, t = t && "transferProcessDto" in e, t;
|
|
1185
1243
|
}
|
|
1186
|
-
function
|
|
1187
|
-
return
|
|
1244
|
+
function zr(e) {
|
|
1245
|
+
return Br(e);
|
|
1188
1246
|
}
|
|
1189
|
-
function
|
|
1247
|
+
function Br(e, t) {
|
|
1190
1248
|
return e == null ? e : {
|
|
1191
1249
|
assetsCount: e.assetsCount,
|
|
1192
1250
|
policiesCount: e.policiesCount,
|
|
1193
1251
|
contractDefinitionsCount: e.contractDefinitionsCount,
|
|
1194
1252
|
contractAgreementsCount: e.contractAgreementsCount,
|
|
1195
|
-
transferProcessDto:
|
|
1253
|
+
transferProcessDto: $r(
|
|
1196
1254
|
e.transferProcessDto
|
|
1197
1255
|
)
|
|
1198
1256
|
};
|
|
1199
1257
|
}
|
|
1200
|
-
function
|
|
1258
|
+
function Gs(e) {
|
|
1201
1259
|
if (e !== void 0)
|
|
1202
1260
|
return e === null ? null : {
|
|
1203
1261
|
assetsCount: e.assetsCount,
|
|
1204
1262
|
policiesCount: e.policiesCount,
|
|
1205
1263
|
contractDefinitionsCount: e.contractDefinitionsCount,
|
|
1206
1264
|
contractAgreementsCount: e.contractAgreementsCount,
|
|
1207
|
-
transferProcessDto:
|
|
1265
|
+
transferProcessDto: Hr(
|
|
1208
1266
|
e.transferProcessDto
|
|
1209
1267
|
)
|
|
1210
1268
|
};
|
|
1211
1269
|
}
|
|
1212
|
-
function
|
|
1270
|
+
function Qs(e) {
|
|
1271
|
+
let t = !0;
|
|
1272
|
+
return t = t && "expression" in e, t;
|
|
1273
|
+
}
|
|
1274
|
+
function Gr(e) {
|
|
1275
|
+
return Qr(e);
|
|
1276
|
+
}
|
|
1277
|
+
function Qr(e, t) {
|
|
1278
|
+
return e == null ? e : {
|
|
1279
|
+
expression: Ke(e.expression)
|
|
1280
|
+
};
|
|
1281
|
+
}
|
|
1282
|
+
function Kr(e) {
|
|
1283
|
+
if (e !== void 0)
|
|
1284
|
+
return e === null ? null : {
|
|
1285
|
+
expression: We(e.expression)
|
|
1286
|
+
};
|
|
1287
|
+
}
|
|
1288
|
+
function Ks(e) {
|
|
1289
|
+
let t = !0;
|
|
1290
|
+
return t = t && "policyDefinitionId" in e, t;
|
|
1291
|
+
}
|
|
1292
|
+
function Ws(e) {
|
|
1293
|
+
return Wr(e);
|
|
1294
|
+
}
|
|
1295
|
+
function Wr(e, t) {
|
|
1296
|
+
return e == null ? e : {
|
|
1297
|
+
policyDefinitionId: e.policyDefinitionId,
|
|
1298
|
+
permission: c(e, "permission") ? Gr(e.permission) : void 0
|
|
1299
|
+
};
|
|
1300
|
+
}
|
|
1301
|
+
function Yr(e) {
|
|
1302
|
+
if (e !== void 0)
|
|
1303
|
+
return e === null ? null : {
|
|
1304
|
+
policyDefinitionId: e.policyDefinitionId,
|
|
1305
|
+
permission: Kr(e.permission)
|
|
1306
|
+
};
|
|
1307
|
+
}
|
|
1308
|
+
function Ys(e) {
|
|
1213
1309
|
return !0;
|
|
1214
1310
|
}
|
|
1215
|
-
function
|
|
1216
|
-
return
|
|
1311
|
+
function Xr(e) {
|
|
1312
|
+
return jr(e);
|
|
1217
1313
|
}
|
|
1218
|
-
function
|
|
1314
|
+
function jr(e, t) {
|
|
1219
1315
|
return e == null ? e : {
|
|
1220
1316
|
constraints: c(e, "constraints") ? e.constraints.map(
|
|
1221
|
-
|
|
1317
|
+
ze
|
|
1222
1318
|
) : void 0
|
|
1223
1319
|
};
|
|
1224
1320
|
}
|
|
1225
|
-
function
|
|
1321
|
+
function en(e) {
|
|
1226
1322
|
if (e !== void 0)
|
|
1227
1323
|
return e === null ? null : {
|
|
1228
1324
|
constraints: e.constraints === void 0 ? void 0 : e.constraints.map(
|
|
1229
|
-
|
|
1325
|
+
Be
|
|
1230
1326
|
)
|
|
1231
1327
|
};
|
|
1232
1328
|
}
|
|
1233
|
-
function
|
|
1329
|
+
function Xs(e) {
|
|
1234
1330
|
let t = !0;
|
|
1235
1331
|
return t = t && "policyDefinitionId" in e, t = t && "policy" in e, t;
|
|
1236
1332
|
}
|
|
1237
|
-
function
|
|
1238
|
-
return
|
|
1333
|
+
function js(e) {
|
|
1334
|
+
return tn(e);
|
|
1239
1335
|
}
|
|
1240
|
-
function
|
|
1336
|
+
function tn(e, t) {
|
|
1241
1337
|
return e == null ? e : {
|
|
1242
1338
|
policyDefinitionId: e.policyDefinitionId,
|
|
1243
|
-
policy:
|
|
1339
|
+
policy: Xr(e.policy)
|
|
1244
1340
|
};
|
|
1245
1341
|
}
|
|
1246
|
-
function
|
|
1342
|
+
function rn(e) {
|
|
1247
1343
|
if (e !== void 0)
|
|
1248
1344
|
return e === null ? null : {
|
|
1249
1345
|
policyDefinitionId: e.policyDefinitionId,
|
|
1250
|
-
policy:
|
|
1346
|
+
policy: en(e.policy)
|
|
1251
1347
|
};
|
|
1252
1348
|
}
|
|
1253
|
-
function
|
|
1349
|
+
function ea(e) {
|
|
1254
1350
|
let t = !0;
|
|
1255
1351
|
return t = t && "policyDefinitionId" in e, t = t && "policy" in e, t;
|
|
1256
1352
|
}
|
|
1257
|
-
function
|
|
1258
|
-
return
|
|
1353
|
+
function nn(e) {
|
|
1354
|
+
return sn(e);
|
|
1259
1355
|
}
|
|
1260
|
-
function
|
|
1356
|
+
function sn(e, t) {
|
|
1261
1357
|
return e == null ? e : {
|
|
1262
1358
|
policyDefinitionId: e.policyDefinitionId,
|
|
1263
1359
|
policy: be(e.policy)
|
|
1264
1360
|
};
|
|
1265
1361
|
}
|
|
1266
|
-
function
|
|
1362
|
+
function an(e) {
|
|
1267
1363
|
if (e !== void 0)
|
|
1268
1364
|
return e === null ? null : {
|
|
1269
1365
|
policyDefinitionId: e.policyDefinitionId,
|
|
1270
1366
|
policy: De(e.policy)
|
|
1271
1367
|
};
|
|
1272
1368
|
}
|
|
1273
|
-
function
|
|
1369
|
+
function ta(e) {
|
|
1274
1370
|
let t = !0;
|
|
1275
1371
|
return t = t && "policies" in e, t;
|
|
1276
1372
|
}
|
|
1277
|
-
function
|
|
1278
|
-
return
|
|
1373
|
+
function on(e) {
|
|
1374
|
+
return cn(e);
|
|
1279
1375
|
}
|
|
1280
|
-
function
|
|
1376
|
+
function cn(e, t) {
|
|
1281
1377
|
return e == null ? e : {
|
|
1282
1378
|
policies: e.policies.map(
|
|
1283
|
-
|
|
1379
|
+
nn
|
|
1284
1380
|
)
|
|
1285
1381
|
};
|
|
1286
1382
|
}
|
|
1287
|
-
function
|
|
1383
|
+
function ra(e) {
|
|
1288
1384
|
if (e !== void 0)
|
|
1289
1385
|
return e === null ? null : {
|
|
1290
|
-
policies: e.policies.map(
|
|
1386
|
+
policies: e.policies.map(an)
|
|
1291
1387
|
};
|
|
1292
1388
|
}
|
|
1293
|
-
function
|
|
1389
|
+
function na(e) {
|
|
1294
1390
|
let t = !0;
|
|
1295
1391
|
return t = t && "transferProcessId" in e, t = t && "createdDate" in e, t = t && "lastUpdatedDate" in e, t = t && "state" in e, t = t && "contractAgreementId" in e, t = t && "direction" in e, t = t && "counterPartyConnectorEndpoint" in e, t = t && "counterPartyParticipantId" in e, t = t && "assetName" in e, t = t && "assetId" in e, t;
|
|
1296
1392
|
}
|
|
1297
|
-
function
|
|
1298
|
-
return
|
|
1393
|
+
function dn(e) {
|
|
1394
|
+
return un(e);
|
|
1299
1395
|
}
|
|
1300
|
-
function
|
|
1396
|
+
function un(e, t) {
|
|
1301
1397
|
return e == null ? e : {
|
|
1302
1398
|
transferProcessId: e.transferProcessId,
|
|
1303
1399
|
createdDate: new Date(e.createdDate),
|
|
1304
1400
|
lastUpdatedDate: new Date(e.lastUpdatedDate),
|
|
1305
|
-
state:
|
|
1401
|
+
state: Ve(e.state),
|
|
1306
1402
|
contractAgreementId: e.contractAgreementId,
|
|
1307
|
-
direction:
|
|
1403
|
+
direction: $e(e.direction),
|
|
1308
1404
|
counterPartyConnectorEndpoint: e.counterPartyConnectorEndpoint,
|
|
1309
1405
|
counterPartyParticipantId: e.counterPartyParticipantId,
|
|
1310
1406
|
assetName: e.assetName,
|
|
@@ -1312,13 +1408,13 @@ function Wr(e, t) {
|
|
|
1312
1408
|
errorMessage: c(e, "errorMessage") ? e.errorMessage : void 0
|
|
1313
1409
|
};
|
|
1314
1410
|
}
|
|
1315
|
-
function
|
|
1411
|
+
function ln(e) {
|
|
1316
1412
|
if (e !== void 0)
|
|
1317
1413
|
return e === null ? null : {
|
|
1318
1414
|
transferProcessId: e.transferProcessId,
|
|
1319
1415
|
createdDate: e.createdDate.toISOString(),
|
|
1320
1416
|
lastUpdatedDate: e.lastUpdatedDate.toISOString(),
|
|
1321
|
-
state:
|
|
1417
|
+
state: He(e.state),
|
|
1322
1418
|
contractAgreementId: e.contractAgreementId,
|
|
1323
1419
|
direction: e.direction,
|
|
1324
1420
|
counterPartyConnectorEndpoint: e.counterPartyConnectorEndpoint,
|
|
@@ -1328,36 +1424,36 @@ function Yr(e) {
|
|
|
1328
1424
|
errorMessage: e.errorMessage
|
|
1329
1425
|
};
|
|
1330
1426
|
}
|
|
1331
|
-
function
|
|
1427
|
+
function ia(e) {
|
|
1332
1428
|
let t = !0;
|
|
1333
1429
|
return t = t && "transferEntries" in e, t;
|
|
1334
1430
|
}
|
|
1335
|
-
function
|
|
1336
|
-
return
|
|
1431
|
+
function fn(e) {
|
|
1432
|
+
return pn(e);
|
|
1337
1433
|
}
|
|
1338
|
-
function
|
|
1434
|
+
function pn(e, t) {
|
|
1339
1435
|
return e == null ? e : {
|
|
1340
1436
|
transferEntries: e.transferEntries.map(
|
|
1341
|
-
|
|
1437
|
+
dn
|
|
1342
1438
|
)
|
|
1343
1439
|
};
|
|
1344
1440
|
}
|
|
1345
|
-
function
|
|
1441
|
+
function sa(e) {
|
|
1346
1442
|
if (e !== void 0)
|
|
1347
1443
|
return e === null ? null : {
|
|
1348
1444
|
transferEntries: e.transferEntries.map(
|
|
1349
|
-
|
|
1445
|
+
ln
|
|
1350
1446
|
)
|
|
1351
1447
|
};
|
|
1352
1448
|
}
|
|
1353
|
-
function
|
|
1449
|
+
function aa(e) {
|
|
1354
1450
|
let t = !0;
|
|
1355
1451
|
return t = t && "id" in e, t = t && "dataAddressProperties" in e, t;
|
|
1356
1452
|
}
|
|
1357
|
-
function
|
|
1358
|
-
return
|
|
1453
|
+
function oa(e) {
|
|
1454
|
+
return mn(e);
|
|
1359
1455
|
}
|
|
1360
|
-
function
|
|
1456
|
+
function mn(e, t) {
|
|
1361
1457
|
return e == null ? e : {
|
|
1362
1458
|
id: e.id,
|
|
1363
1459
|
title: c(e, "title") ? e.title : void 0,
|
|
@@ -1397,7 +1493,7 @@ function en(e, t) {
|
|
|
1397
1493
|
) ? e.privateCustomJsonLdAsString : void 0
|
|
1398
1494
|
};
|
|
1399
1495
|
}
|
|
1400
|
-
function
|
|
1496
|
+
function Ye(e) {
|
|
1401
1497
|
if (e !== void 0)
|
|
1402
1498
|
return e === null ? null : {
|
|
1403
1499
|
id: e.id,
|
|
@@ -1432,13 +1528,13 @@ function Qe(e) {
|
|
|
1432
1528
|
privateCustomJsonLdAsString: e.privateCustomJsonLdAsString
|
|
1433
1529
|
};
|
|
1434
1530
|
}
|
|
1435
|
-
function
|
|
1531
|
+
function ca(e) {
|
|
1436
1532
|
return !0;
|
|
1437
1533
|
}
|
|
1438
|
-
function
|
|
1439
|
-
return
|
|
1534
|
+
function da(e) {
|
|
1535
|
+
return hn(e);
|
|
1440
1536
|
}
|
|
1441
|
-
function
|
|
1537
|
+
function hn(e, t) {
|
|
1442
1538
|
return e == null ? e : {
|
|
1443
1539
|
title: c(e, "title") ? e.title : void 0,
|
|
1444
1540
|
language: c(e, "language") ? e.language : void 0,
|
|
@@ -1476,7 +1572,7 @@ function tn(e, t) {
|
|
|
1476
1572
|
) ? e.privateCustomJsonLdAsString : void 0
|
|
1477
1573
|
};
|
|
1478
1574
|
}
|
|
1479
|
-
function
|
|
1575
|
+
function gn(e) {
|
|
1480
1576
|
if (e !== void 0)
|
|
1481
1577
|
return e === null ? null : {
|
|
1482
1578
|
title: e.title,
|
|
@@ -1509,79 +1605,79 @@ function rn(e) {
|
|
|
1509
1605
|
privateCustomJsonLdAsString: e.privateCustomJsonLdAsString
|
|
1510
1606
|
};
|
|
1511
1607
|
}
|
|
1512
|
-
function
|
|
1608
|
+
function ua(e) {
|
|
1513
1609
|
let t = !0;
|
|
1514
1610
|
return t = t && "contractNegotiationId" in e, t = t && "createdAt" in e, t = t && "state" in e, t;
|
|
1515
1611
|
}
|
|
1516
1612
|
function Ue(e) {
|
|
1517
|
-
return
|
|
1613
|
+
return yn(e);
|
|
1518
1614
|
}
|
|
1519
|
-
function
|
|
1615
|
+
function yn(e, t) {
|
|
1520
1616
|
return e == null ? e : {
|
|
1521
1617
|
contractNegotiationId: e.contractNegotiationId,
|
|
1522
1618
|
createdAt: new Date(e.createdAt),
|
|
1523
1619
|
contractAgreementId: c(e, "contractAgreementId") ? e.contractAgreementId : void 0,
|
|
1524
|
-
state:
|
|
1620
|
+
state: Sr(e.state)
|
|
1525
1621
|
};
|
|
1526
1622
|
}
|
|
1527
|
-
function
|
|
1623
|
+
function la(e) {
|
|
1528
1624
|
if (e !== void 0)
|
|
1529
1625
|
return e === null ? null : {
|
|
1530
1626
|
contractNegotiationId: e.contractNegotiationId,
|
|
1531
1627
|
createdAt: e.createdAt.toISOString(),
|
|
1532
1628
|
contractAgreementId: e.contractAgreementId,
|
|
1533
|
-
state:
|
|
1629
|
+
state: Pr(e.state)
|
|
1534
1630
|
};
|
|
1535
1631
|
}
|
|
1536
|
-
function
|
|
1632
|
+
function fa(e) {
|
|
1537
1633
|
let t = !0;
|
|
1538
1634
|
return t = t && "contractOfferId" in e, t = t && "policy" in e, t;
|
|
1539
1635
|
}
|
|
1540
|
-
function
|
|
1541
|
-
return
|
|
1636
|
+
function vn(e) {
|
|
1637
|
+
return _n(e);
|
|
1542
1638
|
}
|
|
1543
|
-
function
|
|
1639
|
+
function _n(e, t) {
|
|
1544
1640
|
return e == null ? e : {
|
|
1545
1641
|
contractOfferId: e.contractOfferId,
|
|
1546
1642
|
policy: be(e.policy)
|
|
1547
1643
|
};
|
|
1548
1644
|
}
|
|
1549
|
-
function
|
|
1645
|
+
function wn(e) {
|
|
1550
1646
|
if (e !== void 0)
|
|
1551
1647
|
return e === null ? null : {
|
|
1552
1648
|
contractOfferId: e.contractOfferId,
|
|
1553
1649
|
policy: De(e.policy)
|
|
1554
1650
|
};
|
|
1555
1651
|
}
|
|
1556
|
-
function
|
|
1652
|
+
function pa(e) {
|
|
1557
1653
|
let t = !0;
|
|
1558
1654
|
return t = t && "endpoint" in e, t = t && "participantId" in e, t = t && "asset" in e, t = t && "contractOffers" in e, t;
|
|
1559
1655
|
}
|
|
1560
|
-
function
|
|
1561
|
-
return
|
|
1656
|
+
function Xe(e) {
|
|
1657
|
+
return Cn(e);
|
|
1562
1658
|
}
|
|
1563
|
-
function
|
|
1659
|
+
function Cn(e, t) {
|
|
1564
1660
|
return e == null ? e : {
|
|
1565
1661
|
endpoint: e.endpoint,
|
|
1566
1662
|
participantId: e.participantId,
|
|
1567
1663
|
asset: Ce(e.asset),
|
|
1568
1664
|
contractOffers: e.contractOffers.map(
|
|
1569
|
-
|
|
1665
|
+
vn
|
|
1570
1666
|
)
|
|
1571
1667
|
};
|
|
1572
1668
|
}
|
|
1573
|
-
function
|
|
1669
|
+
function ma(e) {
|
|
1574
1670
|
if (e !== void 0)
|
|
1575
1671
|
return e === null ? null : {
|
|
1576
1672
|
endpoint: e.endpoint,
|
|
1577
1673
|
participantId: e.participantId,
|
|
1578
1674
|
asset: Ae(e.asset),
|
|
1579
1675
|
contractOffers: e.contractOffers.map(
|
|
1580
|
-
|
|
1676
|
+
wn
|
|
1581
1677
|
)
|
|
1582
1678
|
};
|
|
1583
1679
|
}
|
|
1584
|
-
class
|
|
1680
|
+
class Sn extends W {
|
|
1585
1681
|
/**
|
|
1586
1682
|
* Available and used resources of a connector.
|
|
1587
1683
|
*/
|
|
@@ -1597,7 +1693,7 @@ class dn extends W {
|
|
|
1597
1693
|
);
|
|
1598
1694
|
return new C(
|
|
1599
1695
|
i,
|
|
1600
|
-
(s) =>
|
|
1696
|
+
(s) => Jt(s)
|
|
1601
1697
|
);
|
|
1602
1698
|
}
|
|
1603
1699
|
/**
|
|
@@ -1632,13 +1728,13 @@ class dn extends W {
|
|
|
1632
1728
|
method: "POST",
|
|
1633
1729
|
headers: i,
|
|
1634
1730
|
query: n,
|
|
1635
|
-
body:
|
|
1731
|
+
body: Ye(
|
|
1636
1732
|
t.uiAssetCreateRequest
|
|
1637
1733
|
)
|
|
1638
1734
|
},
|
|
1639
1735
|
r
|
|
1640
1736
|
);
|
|
1641
|
-
return new
|
|
1737
|
+
return new ht(s);
|
|
1642
1738
|
}
|
|
1643
1739
|
/**
|
|
1644
1740
|
* Creates an asset using the uploaded file as data source.
|
|
@@ -1661,7 +1757,7 @@ class dn extends W {
|
|
|
1661
1757
|
},
|
|
1662
1758
|
t
|
|
1663
1759
|
);
|
|
1664
|
-
return this.isJsonMime(i.headers.get("content-type")) ? new C(i) : new
|
|
1760
|
+
return this.isJsonMime(i.headers.get("content-type")) ? new C(i) : new gt(i);
|
|
1665
1761
|
}
|
|
1666
1762
|
/**
|
|
1667
1763
|
* 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.
|
|
@@ -1671,7 +1767,7 @@ class dn extends W {
|
|
|
1671
1767
|
return await (await this.fileUploadRequestSasTokenRaw(t)).value();
|
|
1672
1768
|
}
|
|
1673
1769
|
}
|
|
1674
|
-
class
|
|
1770
|
+
class Tn extends W {
|
|
1675
1771
|
/**
|
|
1676
1772
|
* Create a new Asset
|
|
1677
1773
|
*/
|
|
@@ -1684,7 +1780,7 @@ class un extends W {
|
|
|
1684
1780
|
method: "POST",
|
|
1685
1781
|
headers: i,
|
|
1686
1782
|
query: n,
|
|
1687
|
-
body:
|
|
1783
|
+
body: Ye(
|
|
1688
1784
|
t.uiAssetCreateRequest
|
|
1689
1785
|
)
|
|
1690
1786
|
},
|
|
@@ -1692,7 +1788,7 @@ class un extends W {
|
|
|
1692
1788
|
);
|
|
1693
1789
|
return new C(
|
|
1694
1790
|
s,
|
|
1695
|
-
(a) =>
|
|
1791
|
+
(a) => D(a)
|
|
1696
1792
|
);
|
|
1697
1793
|
}
|
|
1698
1794
|
/**
|
|
@@ -1716,7 +1812,7 @@ class un extends W {
|
|
|
1716
1812
|
method: "POST",
|
|
1717
1813
|
headers: i,
|
|
1718
1814
|
query: n,
|
|
1719
|
-
body:
|
|
1815
|
+
body: yr(
|
|
1720
1816
|
t.contractDefinitionRequest
|
|
1721
1817
|
)
|
|
1722
1818
|
},
|
|
@@ -1724,7 +1820,7 @@ class un extends W {
|
|
|
1724
1820
|
);
|
|
1725
1821
|
return new C(
|
|
1726
1822
|
s,
|
|
1727
|
-
(a) =>
|
|
1823
|
+
(a) => D(a)
|
|
1728
1824
|
);
|
|
1729
1825
|
}
|
|
1730
1826
|
/**
|
|
@@ -1748,7 +1844,7 @@ class un extends W {
|
|
|
1748
1844
|
method: "POST",
|
|
1749
1845
|
headers: i,
|
|
1750
1846
|
query: n,
|
|
1751
|
-
body:
|
|
1847
|
+
body: rn(
|
|
1752
1848
|
t.policyDefinitionCreateRequest
|
|
1753
1849
|
)
|
|
1754
1850
|
},
|
|
@@ -1756,7 +1852,7 @@ class un extends W {
|
|
|
1756
1852
|
);
|
|
1757
1853
|
return new C(
|
|
1758
1854
|
s,
|
|
1759
|
-
(a) =>
|
|
1855
|
+
(a) => D(a)
|
|
1760
1856
|
);
|
|
1761
1857
|
}
|
|
1762
1858
|
/**
|
|
@@ -1791,7 +1887,7 @@ class un extends W {
|
|
|
1791
1887
|
);
|
|
1792
1888
|
return new C(
|
|
1793
1889
|
s,
|
|
1794
|
-
(a) =>
|
|
1890
|
+
(a) => D(a)
|
|
1795
1891
|
);
|
|
1796
1892
|
}
|
|
1797
1893
|
/**
|
|
@@ -1828,7 +1924,7 @@ class un extends W {
|
|
|
1828
1924
|
);
|
|
1829
1925
|
return new C(
|
|
1830
1926
|
s,
|
|
1831
|
-
(a) =>
|
|
1927
|
+
(a) => D(a)
|
|
1832
1928
|
);
|
|
1833
1929
|
}
|
|
1834
1930
|
/**
|
|
@@ -1863,7 +1959,7 @@ class un extends W {
|
|
|
1863
1959
|
);
|
|
1864
1960
|
return new C(
|
|
1865
1961
|
s,
|
|
1866
|
-
(a) =>
|
|
1962
|
+
(a) => D(a)
|
|
1867
1963
|
);
|
|
1868
1964
|
}
|
|
1869
1965
|
/**
|
|
@@ -1895,7 +1991,7 @@ class un extends W {
|
|
|
1895
1991
|
method: "PUT",
|
|
1896
1992
|
headers: i,
|
|
1897
1993
|
query: n,
|
|
1898
|
-
body:
|
|
1994
|
+
body: gn(
|
|
1899
1995
|
t.uiAssetEditMetadataRequest
|
|
1900
1996
|
)
|
|
1901
1997
|
},
|
|
@@ -1903,7 +1999,7 @@ class un extends W {
|
|
|
1903
1999
|
);
|
|
1904
2000
|
return new C(
|
|
1905
2001
|
s,
|
|
1906
|
-
(a) =>
|
|
2002
|
+
(a) => D(a)
|
|
1907
2003
|
);
|
|
1908
2004
|
}
|
|
1909
2005
|
/**
|
|
@@ -1930,7 +2026,7 @@ class un extends W {
|
|
|
1930
2026
|
);
|
|
1931
2027
|
return new C(
|
|
1932
2028
|
i,
|
|
1933
|
-
(s) =>
|
|
2029
|
+
(s) => vt(s)
|
|
1934
2030
|
);
|
|
1935
2031
|
}
|
|
1936
2032
|
/**
|
|
@@ -1956,7 +2052,7 @@ class un extends W {
|
|
|
1956
2052
|
);
|
|
1957
2053
|
return new C(
|
|
1958
2054
|
s,
|
|
1959
|
-
(a) => a.map(
|
|
2055
|
+
(a) => a.map(Xe)
|
|
1960
2056
|
);
|
|
1961
2057
|
}
|
|
1962
2058
|
/**
|
|
@@ -1983,7 +2079,7 @@ class un extends W {
|
|
|
1983
2079
|
);
|
|
1984
2080
|
return new C(
|
|
1985
2081
|
i,
|
|
1986
|
-
(s) =>
|
|
2082
|
+
(s) => tr(s)
|
|
1987
2083
|
);
|
|
1988
2084
|
}
|
|
1989
2085
|
/**
|
|
@@ -2007,7 +2103,7 @@ class un extends W {
|
|
|
2007
2103
|
);
|
|
2008
2104
|
return new C(
|
|
2009
2105
|
i,
|
|
2010
|
-
(s) =>
|
|
2106
|
+
(s) => mr(s)
|
|
2011
2107
|
);
|
|
2012
2108
|
}
|
|
2013
2109
|
/**
|
|
@@ -2068,7 +2164,7 @@ class un extends W {
|
|
|
2068
2164
|
);
|
|
2069
2165
|
return new C(
|
|
2070
2166
|
i,
|
|
2071
|
-
(s) =>
|
|
2167
|
+
(s) => kr(s)
|
|
2072
2168
|
);
|
|
2073
2169
|
}
|
|
2074
2170
|
/**
|
|
@@ -2092,7 +2188,7 @@ class un extends W {
|
|
|
2092
2188
|
);
|
|
2093
2189
|
return new C(
|
|
2094
2190
|
i,
|
|
2095
|
-
(s) =>
|
|
2191
|
+
(s) => on(s)
|
|
2096
2192
|
);
|
|
2097
2193
|
}
|
|
2098
2194
|
/**
|
|
@@ -2116,7 +2212,7 @@ class un extends W {
|
|
|
2116
2212
|
);
|
|
2117
2213
|
return new C(
|
|
2118
2214
|
i,
|
|
2119
|
-
(s) =>
|
|
2215
|
+
(s) => fn(s)
|
|
2120
2216
|
);
|
|
2121
2217
|
}
|
|
2122
2218
|
/**
|
|
@@ -2174,7 +2270,7 @@ class un extends W {
|
|
|
2174
2270
|
method: "POST",
|
|
2175
2271
|
headers: i,
|
|
2176
2272
|
query: n,
|
|
2177
|
-
body:
|
|
2273
|
+
body: _r(
|
|
2178
2274
|
t.contractNegotiationRequest
|
|
2179
2275
|
)
|
|
2180
2276
|
},
|
|
@@ -2206,7 +2302,7 @@ class un extends W {
|
|
|
2206
2302
|
method: "POST",
|
|
2207
2303
|
headers: i,
|
|
2208
2304
|
query: n,
|
|
2209
|
-
body:
|
|
2305
|
+
body: qr(
|
|
2210
2306
|
t.initiateCustomTransferRequest
|
|
2211
2307
|
)
|
|
2212
2308
|
},
|
|
@@ -2214,7 +2310,7 @@ class un extends W {
|
|
|
2214
2310
|
);
|
|
2215
2311
|
return new C(
|
|
2216
2312
|
s,
|
|
2217
|
-
(a) =>
|
|
2313
|
+
(a) => D(a)
|
|
2218
2314
|
);
|
|
2219
2315
|
}
|
|
2220
2316
|
/**
|
|
@@ -2238,7 +2334,7 @@ class un extends W {
|
|
|
2238
2334
|
method: "POST",
|
|
2239
2335
|
headers: i,
|
|
2240
2336
|
query: n,
|
|
2241
|
-
body:
|
|
2337
|
+
body: Zr(
|
|
2242
2338
|
t.initiateTransferRequest
|
|
2243
2339
|
)
|
|
2244
2340
|
},
|
|
@@ -2246,7 +2342,7 @@ class un extends W {
|
|
|
2246
2342
|
);
|
|
2247
2343
|
return new C(
|
|
2248
2344
|
s,
|
|
2249
|
-
(a) =>
|
|
2345
|
+
(a) => D(a)
|
|
2250
2346
|
);
|
|
2251
2347
|
}
|
|
2252
2348
|
/**
|
|
@@ -2259,7 +2355,39 @@ class un extends W {
|
|
|
2259
2355
|
)).value();
|
|
2260
2356
|
}
|
|
2261
2357
|
}
|
|
2262
|
-
class
|
|
2358
|
+
class Pn extends W {
|
|
2359
|
+
/**
|
|
2360
|
+
* Create a new Policy Definition
|
|
2361
|
+
*/
|
|
2362
|
+
async createPolicyDefinitionUseCaseRaw(t, r) {
|
|
2363
|
+
const n = {}, i = {};
|
|
2364
|
+
i["Content-Type"] = "application/json";
|
|
2365
|
+
const s = await this.request(
|
|
2366
|
+
{
|
|
2367
|
+
path: "/wrapper/use-case-api/policy-definition",
|
|
2368
|
+
method: "POST",
|
|
2369
|
+
headers: i,
|
|
2370
|
+
query: n,
|
|
2371
|
+
body: Yr(
|
|
2372
|
+
t.policyCreateRequest
|
|
2373
|
+
)
|
|
2374
|
+
},
|
|
2375
|
+
r
|
|
2376
|
+
);
|
|
2377
|
+
return new C(
|
|
2378
|
+
s,
|
|
2379
|
+
(a) => D(a)
|
|
2380
|
+
);
|
|
2381
|
+
}
|
|
2382
|
+
/**
|
|
2383
|
+
* Create a new Policy Definition
|
|
2384
|
+
*/
|
|
2385
|
+
async createPolicyDefinitionUseCase(t = {}, r) {
|
|
2386
|
+
return await (await this.createPolicyDefinitionUseCaseRaw(
|
|
2387
|
+
t,
|
|
2388
|
+
r
|
|
2389
|
+
)).value();
|
|
2390
|
+
}
|
|
2263
2391
|
/**
|
|
2264
2392
|
* Basic KPIs about the running EDC Connector.
|
|
2265
2393
|
*/
|
|
@@ -2275,7 +2403,7 @@ class ln extends W {
|
|
|
2275
2403
|
);
|
|
2276
2404
|
return new C(
|
|
2277
2405
|
i,
|
|
2278
|
-
(s) =>
|
|
2406
|
+
(s) => zr(s)
|
|
2279
2407
|
);
|
|
2280
2408
|
}
|
|
2281
2409
|
/**
|
|
@@ -2322,13 +2450,13 @@ class ln extends W {
|
|
|
2322
2450
|
method: "POST",
|
|
2323
2451
|
headers: i,
|
|
2324
2452
|
query: n,
|
|
2325
|
-
body:
|
|
2453
|
+
body: Et(t.catalogQuery)
|
|
2326
2454
|
},
|
|
2327
2455
|
r
|
|
2328
2456
|
);
|
|
2329
2457
|
return new C(
|
|
2330
2458
|
s,
|
|
2331
|
-
(a) => a.map(
|
|
2459
|
+
(a) => a.map(Xe)
|
|
2332
2460
|
);
|
|
2333
2461
|
}
|
|
2334
2462
|
/**
|
|
@@ -2444,7 +2572,7 @@ const l = w.arrayToEnum([
|
|
|
2444
2572
|
"invalid_intersection_types",
|
|
2445
2573
|
"not_multiple_of",
|
|
2446
2574
|
"not_finite"
|
|
2447
|
-
]),
|
|
2575
|
+
]), In = (e) => JSON.stringify(e, null, 2).replace(/"([^"]+)":/g, "$1:");
|
|
2448
2576
|
class x extends Error {
|
|
2449
2577
|
constructor(t) {
|
|
2450
2578
|
super(), this.issues = [], this.addIssue = (n) => {
|
|
@@ -2557,12 +2685,12 @@ const Y = (e, t) => {
|
|
|
2557
2685
|
}
|
|
2558
2686
|
return { message: r };
|
|
2559
2687
|
};
|
|
2560
|
-
let
|
|
2561
|
-
function
|
|
2562
|
-
|
|
2688
|
+
let je = Y;
|
|
2689
|
+
function On(e) {
|
|
2690
|
+
je = e;
|
|
2563
2691
|
}
|
|
2564
2692
|
function le() {
|
|
2565
|
-
return
|
|
2693
|
+
return je;
|
|
2566
2694
|
}
|
|
2567
2695
|
const fe = (e) => {
|
|
2568
2696
|
const { data: t, path: r, errorMaps: n, issueData: i } = e, s = [...r, ...i.path || []], a = {
|
|
@@ -2578,7 +2706,7 @@ const fe = (e) => {
|
|
|
2578
2706
|
path: s,
|
|
2579
2707
|
message: i.message || o
|
|
2580
2708
|
};
|
|
2581
|
-
},
|
|
2709
|
+
}, xn = [];
|
|
2582
2710
|
function f(e, t) {
|
|
2583
2711
|
const r = fe({
|
|
2584
2712
|
issueData: t,
|
|
@@ -2635,12 +2763,12 @@ class T {
|
|
|
2635
2763
|
}
|
|
2636
2764
|
const g = Object.freeze({
|
|
2637
2765
|
status: "aborted"
|
|
2638
|
-
}),
|
|
2766
|
+
}), et = (e) => ({ status: "dirty", value: e }), P = (e) => ({ status: "valid", value: e }), Oe = (e) => e.status === "aborted", xe = (e) => e.status === "dirty", X = (e) => e.status === "valid", pe = (e) => typeof Promise < "u" && e instanceof Promise;
|
|
2639
2767
|
var m;
|
|
2640
2768
|
(function(e) {
|
|
2641
2769
|
e.errToObj = (t) => typeof t == "string" ? { message: t } : t || {}, e.toString = (t) => typeof t == "string" ? t : t == null ? void 0 : t.message;
|
|
2642
2770
|
})(m || (m = {}));
|
|
2643
|
-
class
|
|
2771
|
+
class k {
|
|
2644
2772
|
constructor(t, r, n, i) {
|
|
2645
2773
|
this._cachedPath = [], this.parent = t, this.data = r, this._path = n, this._key = i;
|
|
2646
2774
|
}
|
|
@@ -2819,7 +2947,7 @@ class v {
|
|
|
2819
2947
|
});
|
|
2820
2948
|
}
|
|
2821
2949
|
brand() {
|
|
2822
|
-
return new
|
|
2950
|
+
return new rt({
|
|
2823
2951
|
typeName: h.ZodBranded,
|
|
2824
2952
|
type: this,
|
|
2825
2953
|
...y(this._def)
|
|
@@ -2854,11 +2982,11 @@ class v {
|
|
|
2854
2982
|
return this.safeParse(null).success;
|
|
2855
2983
|
}
|
|
2856
2984
|
}
|
|
2857
|
-
const
|
|
2985
|
+
const Nn = /^c[^\s-]{8,}$/i, An = /^[a-z][a-z0-9]*$/, bn = /^[0-9A-HJKMNP-TV-Z]{26}$/, Dn = /^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$/i, kn = /^(?!\.)(?!.*\.\.)([A-Z0-9_+-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i, Rn = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
|
2858
2986
|
let Pe;
|
|
2859
|
-
const
|
|
2860
|
-
function
|
|
2861
|
-
return !!((t === "v4" || !t) &&
|
|
2987
|
+
const Un = /^(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))$/, En = /^(([a-f0-9]{1,4}:){7}|::([a-f0-9]{1,4}:){0,6}|([a-f0-9]{1,4}:){1}:([a-f0-9]{1,4}:){0,5}|([a-f0-9]{1,4}:){2}:([a-f0-9]{1,4}:){0,4}|([a-f0-9]{1,4}:){3}:([a-f0-9]{1,4}:){0,3}|([a-f0-9]{1,4}:){4}:([a-f0-9]{1,4}:){0,2}|([a-f0-9]{1,4}:){5}:([a-f0-9]{1,4}:){0,1})([a-f0-9]{1,4}|(((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2}))\.){3}((25[0-5])|(2[0-4][0-9])|(1[0-9]{2})|([0-9]{1,2})))$/, Jn = (e) => e.precision ? e.offset ? new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{${e.precision}}(([+-]\\d{2}(:?\\d{2})?)|Z)$`) : new RegExp(`^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d{${e.precision}}Z$`) : e.precision === 0 ? e.offset ? new RegExp("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(([+-]\\d{2}(:?\\d{2})?)|Z)$") : new RegExp("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$") : e.offset ? new RegExp("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?(([+-]\\d{2}(:?\\d{2})?)|Z)$") : new RegExp("^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(\\.\\d+)?Z$");
|
|
2988
|
+
function Ln(e, t) {
|
|
2989
|
+
return !!((t === "v4" || !t) && Un.test(e) || (t === "v6" || !t) && En.test(e));
|
|
2862
2990
|
}
|
|
2863
2991
|
class O extends v {
|
|
2864
2992
|
_parse(t) {
|
|
@@ -2913,37 +3041,37 @@ class O extends v {
|
|
|
2913
3041
|
message: s.message
|
|
2914
3042
|
}), n.dirty());
|
|
2915
3043
|
} else if (s.kind === "email")
|
|
2916
|
-
|
|
3044
|
+
kn.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2917
3045
|
validation: "email",
|
|
2918
3046
|
code: d.invalid_string,
|
|
2919
3047
|
message: s.message
|
|
2920
3048
|
}), n.dirty());
|
|
2921
3049
|
else if (s.kind === "emoji")
|
|
2922
|
-
Pe || (Pe = new RegExp(
|
|
3050
|
+
Pe || (Pe = new RegExp(Rn, "u")), Pe.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2923
3051
|
validation: "emoji",
|
|
2924
3052
|
code: d.invalid_string,
|
|
2925
3053
|
message: s.message
|
|
2926
3054
|
}), n.dirty());
|
|
2927
3055
|
else if (s.kind === "uuid")
|
|
2928
|
-
|
|
3056
|
+
Dn.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2929
3057
|
validation: "uuid",
|
|
2930
3058
|
code: d.invalid_string,
|
|
2931
3059
|
message: s.message
|
|
2932
3060
|
}), n.dirty());
|
|
2933
3061
|
else if (s.kind === "cuid")
|
|
2934
|
-
|
|
3062
|
+
Nn.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2935
3063
|
validation: "cuid",
|
|
2936
3064
|
code: d.invalid_string,
|
|
2937
3065
|
message: s.message
|
|
2938
3066
|
}), n.dirty());
|
|
2939
3067
|
else if (s.kind === "cuid2")
|
|
2940
|
-
|
|
3068
|
+
An.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2941
3069
|
validation: "cuid2",
|
|
2942
3070
|
code: d.invalid_string,
|
|
2943
3071
|
message: s.message
|
|
2944
3072
|
}), n.dirty());
|
|
2945
3073
|
else if (s.kind === "ulid")
|
|
2946
|
-
|
|
3074
|
+
bn.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2947
3075
|
validation: "ulid",
|
|
2948
3076
|
code: d.invalid_string,
|
|
2949
3077
|
message: s.message
|
|
@@ -2975,11 +3103,11 @@ class O extends v {
|
|
|
2975
3103
|
code: d.invalid_string,
|
|
2976
3104
|
validation: { endsWith: s.value },
|
|
2977
3105
|
message: s.message
|
|
2978
|
-
}), n.dirty()) : s.kind === "datetime" ?
|
|
3106
|
+
}), n.dirty()) : s.kind === "datetime" ? Jn(s).test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2979
3107
|
code: d.invalid_string,
|
|
2980
3108
|
validation: "datetime",
|
|
2981
3109
|
message: s.message
|
|
2982
|
-
}), n.dirty()) : s.kind === "ip" ?
|
|
3110
|
+
}), n.dirty()) : s.kind === "ip" ? Ln(t.data, s.version) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
2983
3111
|
validation: "ip",
|
|
2984
3112
|
code: d.invalid_string,
|
|
2985
3113
|
message: s.message
|
|
@@ -3161,7 +3289,7 @@ O.create = (e) => {
|
|
|
3161
3289
|
...y(e)
|
|
3162
3290
|
});
|
|
3163
3291
|
};
|
|
3164
|
-
function
|
|
3292
|
+
function Fn(e, t) {
|
|
3165
3293
|
const r = (e.toString().split(".")[1] || "").length, n = (t.toString().split(".")[1] || "").length, i = r > n ? r : n, s = parseInt(e.toFixed(i).replace(".", "")), a = parseInt(t.toFixed(i).replace(".", ""));
|
|
3166
3294
|
return s % a / Math.pow(10, i);
|
|
3167
3295
|
}
|
|
@@ -3200,7 +3328,7 @@ class F extends v {
|
|
|
3200
3328
|
inclusive: s.inclusive,
|
|
3201
3329
|
exact: !1,
|
|
3202
3330
|
message: s.message
|
|
3203
|
-
}), i.dirty()) : s.kind === "multipleOf" ?
|
|
3331
|
+
}), i.dirty()) : s.kind === "multipleOf" ? Fn(t.data, s.value) !== 0 && (n = this._getOrReturnCtx(t, n), f(n, {
|
|
3204
3332
|
code: d.not_multiple_of,
|
|
3205
3333
|
multipleOf: s.value,
|
|
3206
3334
|
message: s.message
|
|
@@ -3703,8 +3831,8 @@ class N extends v {
|
|
|
3703
3831
|
exact: !1,
|
|
3704
3832
|
message: i.maxLength.message
|
|
3705
3833
|
}), n.dirty()), r.common.async)
|
|
3706
|
-
return Promise.all([...r.data].map((a, o) => i.type._parseAsync(new
|
|
3707
|
-
const s = [...r.data].map((a, o) => i.type._parseSync(new
|
|
3834
|
+
return Promise.all([...r.data].map((a, o) => i.type._parseAsync(new k(r, a, r.path, o)))).then((a) => T.mergeArray(n, a));
|
|
3835
|
+
const s = [...r.data].map((a, o) => i.type._parseSync(new k(r, a, r.path, o)));
|
|
3708
3836
|
return T.mergeArray(n, s);
|
|
3709
3837
|
}
|
|
3710
3838
|
get element() {
|
|
@@ -3755,7 +3883,7 @@ function z(e) {
|
|
|
3755
3883
|
return e instanceof N ? new N({
|
|
3756
3884
|
...e._def,
|
|
3757
3885
|
type: z(e.element)
|
|
3758
|
-
}) : e instanceof E ? E.create(z(e.unwrap())) : e instanceof H ? H.create(z(e.unwrap())) : e instanceof
|
|
3886
|
+
}) : e instanceof E ? E.create(z(e.unwrap())) : e instanceof H ? H.create(z(e.unwrap())) : e instanceof R ? R.create(e.items.map((t) => z(t))) : e;
|
|
3759
3887
|
}
|
|
3760
3888
|
class S extends v {
|
|
3761
3889
|
constructor() {
|
|
@@ -3785,7 +3913,7 @@ class S extends v {
|
|
|
3785
3913
|
const _ = s[u], I = i.data[u];
|
|
3786
3914
|
p.push({
|
|
3787
3915
|
key: { status: "valid", value: u },
|
|
3788
|
-
value: _._parse(new
|
|
3916
|
+
value: _._parse(new k(i, I, i.path, u)),
|
|
3789
3917
|
alwaysSet: u in i.data
|
|
3790
3918
|
});
|
|
3791
3919
|
}
|
|
@@ -3811,7 +3939,7 @@ class S extends v {
|
|
|
3811
3939
|
p.push({
|
|
3812
3940
|
key: { status: "valid", value: _ },
|
|
3813
3941
|
value: u._parse(
|
|
3814
|
-
new
|
|
3942
|
+
new k(i, I, i.path, _)
|
|
3815
3943
|
//, ctx.child(key), value, getParsedType(value)
|
|
3816
3944
|
),
|
|
3817
3945
|
alwaysSet: _ in i.data
|
|
@@ -4021,7 +4149,7 @@ class S extends v {
|
|
|
4021
4149
|
});
|
|
4022
4150
|
}
|
|
4023
4151
|
keyof() {
|
|
4024
|
-
return
|
|
4152
|
+
return tt(w.objectKeys(this.shape));
|
|
4025
4153
|
}
|
|
4026
4154
|
}
|
|
4027
4155
|
S.create = (e, t) => new S({
|
|
@@ -4246,7 +4374,7 @@ ne.create = (e, t, r) => new ne({
|
|
|
4246
4374
|
typeName: h.ZodIntersection,
|
|
4247
4375
|
...y(r)
|
|
4248
4376
|
});
|
|
4249
|
-
class
|
|
4377
|
+
class R extends v {
|
|
4250
4378
|
_parse(t) {
|
|
4251
4379
|
const { status: r, ctx: n } = this._processInputParams(t);
|
|
4252
4380
|
if (n.parsedType !== l.array)
|
|
@@ -4272,7 +4400,7 @@ class k extends v {
|
|
|
4272
4400
|
}), r.dirty());
|
|
4273
4401
|
const s = [...n.data].map((a, o) => {
|
|
4274
4402
|
const p = this._def.items[o] || this._def.rest;
|
|
4275
|
-
return p ? p._parse(new
|
|
4403
|
+
return p ? p._parse(new k(n, a, n.path, o)) : null;
|
|
4276
4404
|
}).filter((a) => !!a);
|
|
4277
4405
|
return n.common.async ? Promise.all(s).then((a) => T.mergeArray(r, a)) : T.mergeArray(r, s);
|
|
4278
4406
|
}
|
|
@@ -4280,16 +4408,16 @@ class k extends v {
|
|
|
4280
4408
|
return this._def.items;
|
|
4281
4409
|
}
|
|
4282
4410
|
rest(t) {
|
|
4283
|
-
return new
|
|
4411
|
+
return new R({
|
|
4284
4412
|
...this._def,
|
|
4285
4413
|
rest: t
|
|
4286
4414
|
});
|
|
4287
4415
|
}
|
|
4288
4416
|
}
|
|
4289
|
-
|
|
4417
|
+
R.create = (e, t) => {
|
|
4290
4418
|
if (!Array.isArray(e))
|
|
4291
4419
|
throw new Error("You must pass an array of schemas to z.tuple([ ... ])");
|
|
4292
|
-
return new
|
|
4420
|
+
return new R({
|
|
4293
4421
|
items: e,
|
|
4294
4422
|
typeName: h.ZodTuple,
|
|
4295
4423
|
rest: null,
|
|
@@ -4314,8 +4442,8 @@ class ie extends v {
|
|
|
4314
4442
|
const i = [], s = this._def.keyType, a = this._def.valueType;
|
|
4315
4443
|
for (const o in n.data)
|
|
4316
4444
|
i.push({
|
|
4317
|
-
key: s._parse(new
|
|
4318
|
-
value: a._parse(new
|
|
4445
|
+
key: s._parse(new k(n, o, n.path, o)),
|
|
4446
|
+
value: a._parse(new k(n, n.data[o], n.path, o))
|
|
4319
4447
|
});
|
|
4320
4448
|
return n.common.async ? T.mergeObjectAsync(r, i) : T.mergeObjectSync(r, i);
|
|
4321
4449
|
}
|
|
@@ -4352,8 +4480,8 @@ class ge extends v {
|
|
|
4352
4480
|
received: n.parsedType
|
|
4353
4481
|
}), g;
|
|
4354
4482
|
const i = this._def.keyType, s = this._def.valueType, a = [...n.data.entries()].map(([o, p], u) => ({
|
|
4355
|
-
key: i._parse(new
|
|
4356
|
-
value: s._parse(new
|
|
4483
|
+
key: i._parse(new k(n, o, n.path, [u, "key"])),
|
|
4484
|
+
value: s._parse(new k(n, p, n.path, [u, "value"]))
|
|
4357
4485
|
}));
|
|
4358
4486
|
if (n.common.async) {
|
|
4359
4487
|
const o = /* @__PURE__ */ new Map();
|
|
@@ -4419,7 +4547,7 @@ class V extends v {
|
|
|
4419
4547
|
}
|
|
4420
4548
|
return { status: r.value, value: u };
|
|
4421
4549
|
}
|
|
4422
|
-
const o = [...n.data.values()].map((p, u) => s._parse(new
|
|
4550
|
+
const o = [...n.data.values()].map((p, u) => s._parse(new k(n, p, n.path, u)));
|
|
4423
4551
|
return n.common.async ? Promise.all(o).then((p) => a(p)) : a(o);
|
|
4424
4552
|
}
|
|
4425
4553
|
min(t, r) {
|
|
@@ -4525,7 +4653,7 @@ class B extends v {
|
|
|
4525
4653
|
args(...t) {
|
|
4526
4654
|
return new B({
|
|
4527
4655
|
...this._def,
|
|
4528
|
-
args:
|
|
4656
|
+
args: R.create(t).rest(Z.create())
|
|
4529
4657
|
});
|
|
4530
4658
|
}
|
|
4531
4659
|
returns(t) {
|
|
@@ -4542,7 +4670,7 @@ class B extends v {
|
|
|
4542
4670
|
}
|
|
4543
4671
|
static create(t, r, n) {
|
|
4544
4672
|
return new B({
|
|
4545
|
-
args: t ||
|
|
4673
|
+
args: t || R.create([]).rest(Z.create()),
|
|
4546
4674
|
returns: r || Z.create(),
|
|
4547
4675
|
typeName: h.ZodFunction,
|
|
4548
4676
|
...y(n)
|
|
@@ -4584,7 +4712,7 @@ ae.create = (e, t) => new ae({
|
|
|
4584
4712
|
typeName: h.ZodLiteral,
|
|
4585
4713
|
...y(t)
|
|
4586
4714
|
});
|
|
4587
|
-
function
|
|
4715
|
+
function tt(e, t) {
|
|
4588
4716
|
return new M({
|
|
4589
4717
|
values: e,
|
|
4590
4718
|
typeName: h.ZodEnum,
|
|
@@ -4639,7 +4767,7 @@ class M extends v {
|
|
|
4639
4767
|
return M.create(this.options.filter((r) => !t.includes(r)));
|
|
4640
4768
|
}
|
|
4641
4769
|
}
|
|
4642
|
-
M.create =
|
|
4770
|
+
M.create = tt;
|
|
4643
4771
|
class oe extends v {
|
|
4644
4772
|
_parse(t) {
|
|
4645
4773
|
const r = w.getValidEnumValues(this._def.values), n = this._getOrReturnCtx(t);
|
|
@@ -4880,8 +5008,8 @@ ve.create = (e) => new ve({
|
|
|
4880
5008
|
typeName: h.ZodNaN,
|
|
4881
5009
|
...y(e)
|
|
4882
5010
|
});
|
|
4883
|
-
const
|
|
4884
|
-
class
|
|
5011
|
+
const qn = Symbol("zod_brand");
|
|
5012
|
+
class rt extends v {
|
|
4885
5013
|
_parse(t) {
|
|
4886
5014
|
const { ctx: r } = this._processInputParams(t), n = r.data;
|
|
4887
5015
|
return this._def.type._parse({
|
|
@@ -4904,7 +5032,7 @@ class de extends v {
|
|
|
4904
5032
|
path: n.path,
|
|
4905
5033
|
parent: n
|
|
4906
5034
|
});
|
|
4907
|
-
return s.status === "aborted" ? g : s.status === "dirty" ? (r.dirty(),
|
|
5035
|
+
return s.status === "aborted" ? g : s.status === "dirty" ? (r.dirty(), et(s.value)) : this._def.out._parseAsync({
|
|
4908
5036
|
data: s.value,
|
|
4909
5037
|
path: n.path,
|
|
4910
5038
|
parent: n
|
|
@@ -4945,22 +5073,22 @@ _e.create = (e, t) => new _e({
|
|
|
4945
5073
|
typeName: h.ZodReadonly,
|
|
4946
5074
|
...y(t)
|
|
4947
5075
|
});
|
|
4948
|
-
const
|
|
5076
|
+
const nt = (e, t = {}, r) => e ? G.create().superRefine((n, i) => {
|
|
4949
5077
|
var s, a;
|
|
4950
5078
|
if (!e(n)) {
|
|
4951
5079
|
const o = typeof t == "function" ? t(n) : typeof t == "string" ? { message: t } : t, p = (a = (s = o.fatal) !== null && s !== void 0 ? s : r) !== null && a !== void 0 ? a : !0, u = typeof o == "string" ? { message: o } : o;
|
|
4952
5080
|
i.addIssue({ code: "custom", ...u, fatal: p });
|
|
4953
5081
|
}
|
|
4954
|
-
}) : G.create(),
|
|
5082
|
+
}) : G.create(), Mn = {
|
|
4955
5083
|
object: S.lazycreate
|
|
4956
5084
|
};
|
|
4957
5085
|
var h;
|
|
4958
5086
|
(function(e) {
|
|
4959
5087
|
e.ZodString = "ZodString", e.ZodNumber = "ZodNumber", e.ZodNaN = "ZodNaN", e.ZodBigInt = "ZodBigInt", e.ZodBoolean = "ZodBoolean", e.ZodDate = "ZodDate", e.ZodSymbol = "ZodSymbol", e.ZodUndefined = "ZodUndefined", e.ZodNull = "ZodNull", e.ZodAny = "ZodAny", e.ZodUnknown = "ZodUnknown", e.ZodNever = "ZodNever", e.ZodVoid = "ZodVoid", e.ZodArray = "ZodArray", e.ZodObject = "ZodObject", e.ZodUnion = "ZodUnion", e.ZodDiscriminatedUnion = "ZodDiscriminatedUnion", e.ZodIntersection = "ZodIntersection", e.ZodTuple = "ZodTuple", e.ZodRecord = "ZodRecord", e.ZodMap = "ZodMap", e.ZodSet = "ZodSet", e.ZodFunction = "ZodFunction", e.ZodLazy = "ZodLazy", e.ZodLiteral = "ZodLiteral", e.ZodEnum = "ZodEnum", e.ZodEffects = "ZodEffects", e.ZodNativeEnum = "ZodNativeEnum", e.ZodOptional = "ZodOptional", e.ZodNullable = "ZodNullable", e.ZodDefault = "ZodDefault", e.ZodCatch = "ZodCatch", e.ZodPromise = "ZodPromise", e.ZodBranded = "ZodBranded", e.ZodPipeline = "ZodPipeline", e.ZodReadonly = "ZodReadonly";
|
|
4960
5088
|
})(h || (h = {}));
|
|
4961
|
-
const
|
|
5089
|
+
const Zn = (e, t = {
|
|
4962
5090
|
message: `Input not instance of ${e.name}`
|
|
4963
|
-
}) =>
|
|
5091
|
+
}) => nt((r) => r instanceof e, t), it = O.create, st = F.create, $n = ve.create, Vn = q.create, at = j.create, Hn = $.create, zn = me.create, Bn = ee.create, Gn = te.create, Qn = G.create, Kn = Z.create, Wn = J.create, Yn = he.create, Xn = N.create, jn = S.create, ei = S.strictCreate, ti = re.create, ri = Se.create, ni = ne.create, ii = R.create, si = ie.create, ai = ge.create, oi = V.create, ci = B.create, di = se.create, ui = ae.create, li = M.create, fi = oe.create, pi = Q.create, Je = A.create, mi = E.create, hi = H.create, gi = A.createWithPreprocess, yi = de.create, vi = () => it().optional(), _i = () => st().optional(), wi = () => at().optional(), Ci = {
|
|
4964
5092
|
string: (e) => O.create({ ...e, coerce: !0 }),
|
|
4965
5093
|
number: (e) => F.create({ ...e, coerce: !0 }),
|
|
4966
5094
|
boolean: (e) => j.create({
|
|
@@ -4969,18 +5097,18 @@ const Nn = (e, t = {
|
|
|
4969
5097
|
}),
|
|
4970
5098
|
bigint: (e) => q.create({ ...e, coerce: !0 }),
|
|
4971
5099
|
date: (e) => $.create({ ...e, coerce: !0 })
|
|
4972
|
-
},
|
|
5100
|
+
}, Si = g;
|
|
4973
5101
|
var K = /* @__PURE__ */ Object.freeze({
|
|
4974
5102
|
__proto__: null,
|
|
4975
5103
|
defaultErrorMap: Y,
|
|
4976
|
-
setErrorMap:
|
|
5104
|
+
setErrorMap: On,
|
|
4977
5105
|
getErrorMap: le,
|
|
4978
5106
|
makeIssue: fe,
|
|
4979
|
-
EMPTY_PATH:
|
|
5107
|
+
EMPTY_PATH: xn,
|
|
4980
5108
|
addIssueToContext: f,
|
|
4981
5109
|
ParseStatus: T,
|
|
4982
5110
|
INVALID: g,
|
|
4983
|
-
DIRTY:
|
|
5111
|
+
DIRTY: et,
|
|
4984
5112
|
OK: P,
|
|
4985
5113
|
isAborted: Oe,
|
|
4986
5114
|
isDirty: xe,
|
|
@@ -5012,7 +5140,7 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5012
5140
|
ZodUnion: re,
|
|
5013
5141
|
ZodDiscriminatedUnion: Se,
|
|
5014
5142
|
ZodIntersection: ne,
|
|
5015
|
-
ZodTuple:
|
|
5143
|
+
ZodTuple: R,
|
|
5016
5144
|
ZodRecord: ie,
|
|
5017
5145
|
ZodMap: ge,
|
|
5018
5146
|
ZodSet: V,
|
|
@@ -5029,78 +5157,78 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5029
5157
|
ZodDefault: ce,
|
|
5030
5158
|
ZodCatch: ye,
|
|
5031
5159
|
ZodNaN: ve,
|
|
5032
|
-
BRAND:
|
|
5033
|
-
ZodBranded:
|
|
5160
|
+
BRAND: qn,
|
|
5161
|
+
ZodBranded: rt,
|
|
5034
5162
|
ZodPipeline: de,
|
|
5035
5163
|
ZodReadonly: _e,
|
|
5036
|
-
custom:
|
|
5164
|
+
custom: nt,
|
|
5037
5165
|
Schema: v,
|
|
5038
5166
|
ZodSchema: v,
|
|
5039
|
-
late:
|
|
5167
|
+
late: Mn,
|
|
5040
5168
|
get ZodFirstPartyTypeKind() {
|
|
5041
5169
|
return h;
|
|
5042
5170
|
},
|
|
5043
|
-
coerce:
|
|
5044
|
-
any:
|
|
5045
|
-
array:
|
|
5046
|
-
bigint:
|
|
5047
|
-
boolean:
|
|
5048
|
-
date:
|
|
5049
|
-
discriminatedUnion:
|
|
5171
|
+
coerce: Ci,
|
|
5172
|
+
any: Qn,
|
|
5173
|
+
array: Xn,
|
|
5174
|
+
bigint: Vn,
|
|
5175
|
+
boolean: at,
|
|
5176
|
+
date: Hn,
|
|
5177
|
+
discriminatedUnion: ri,
|
|
5050
5178
|
effect: Je,
|
|
5051
|
-
enum:
|
|
5052
|
-
function:
|
|
5053
|
-
instanceof:
|
|
5054
|
-
intersection:
|
|
5055
|
-
lazy:
|
|
5056
|
-
literal:
|
|
5057
|
-
map:
|
|
5058
|
-
nan:
|
|
5059
|
-
nativeEnum:
|
|
5060
|
-
never:
|
|
5061
|
-
null:
|
|
5062
|
-
nullable:
|
|
5063
|
-
number:
|
|
5064
|
-
object:
|
|
5065
|
-
oboolean:
|
|
5066
|
-
onumber:
|
|
5067
|
-
optional:
|
|
5068
|
-
ostring:
|
|
5069
|
-
pipeline:
|
|
5070
|
-
preprocess:
|
|
5071
|
-
promise:
|
|
5072
|
-
record:
|
|
5073
|
-
set:
|
|
5074
|
-
strictObject:
|
|
5075
|
-
string:
|
|
5076
|
-
symbol:
|
|
5179
|
+
enum: li,
|
|
5180
|
+
function: ci,
|
|
5181
|
+
instanceof: Zn,
|
|
5182
|
+
intersection: ni,
|
|
5183
|
+
lazy: di,
|
|
5184
|
+
literal: ui,
|
|
5185
|
+
map: ai,
|
|
5186
|
+
nan: $n,
|
|
5187
|
+
nativeEnum: fi,
|
|
5188
|
+
never: Wn,
|
|
5189
|
+
null: Gn,
|
|
5190
|
+
nullable: hi,
|
|
5191
|
+
number: st,
|
|
5192
|
+
object: jn,
|
|
5193
|
+
oboolean: wi,
|
|
5194
|
+
onumber: _i,
|
|
5195
|
+
optional: mi,
|
|
5196
|
+
ostring: vi,
|
|
5197
|
+
pipeline: yi,
|
|
5198
|
+
preprocess: gi,
|
|
5199
|
+
promise: pi,
|
|
5200
|
+
record: si,
|
|
5201
|
+
set: oi,
|
|
5202
|
+
strictObject: ei,
|
|
5203
|
+
string: it,
|
|
5204
|
+
symbol: zn,
|
|
5077
5205
|
transformer: Je,
|
|
5078
|
-
tuple:
|
|
5079
|
-
undefined:
|
|
5080
|
-
union:
|
|
5081
|
-
unknown:
|
|
5082
|
-
void:
|
|
5083
|
-
NEVER:
|
|
5206
|
+
tuple: ii,
|
|
5207
|
+
undefined: Bn,
|
|
5208
|
+
union: ti,
|
|
5209
|
+
unknown: Kn,
|
|
5210
|
+
void: Yn,
|
|
5211
|
+
NEVER: Si,
|
|
5084
5212
|
ZodIssueCode: d,
|
|
5085
|
-
quotelessJson:
|
|
5213
|
+
quotelessJson: In,
|
|
5086
5214
|
ZodError: x
|
|
5087
5215
|
});
|
|
5088
|
-
function
|
|
5216
|
+
function Ti(e) {
|
|
5089
5217
|
return e === 401 || e === 403;
|
|
5090
5218
|
}
|
|
5091
|
-
function
|
|
5219
|
+
function Pi(e) {
|
|
5092
5220
|
return Object.entries(e).map(([t, r]) => `${encodeURIComponent(t)}=${encodeURIComponent(r)}`).join("&");
|
|
5093
5221
|
}
|
|
5094
|
-
const
|
|
5222
|
+
const Ii = K.object({
|
|
5095
5223
|
access_token: K.string().min(1),
|
|
5096
5224
|
token_type: K.string(),
|
|
5097
5225
|
expires_in: K.number(),
|
|
5098
5226
|
scope: K.string()
|
|
5099
5227
|
});
|
|
5100
|
-
async function
|
|
5228
|
+
async function Oi(e) {
|
|
5101
5229
|
let r = await (await fetch(e.tokenUrl, {
|
|
5102
5230
|
method: "POST",
|
|
5103
|
-
body:
|
|
5231
|
+
body: Pi({
|
|
5104
5232
|
grant_type: "client_credentials",
|
|
5105
5233
|
client_id: e.clientId,
|
|
5106
5234
|
client_secret: e.clientSecret
|
|
@@ -5109,15 +5237,15 @@ async function pi(e) {
|
|
|
5109
5237
|
"Content-Type": "application/x-www-form-urlencoded"
|
|
5110
5238
|
}
|
|
5111
5239
|
})).json();
|
|
5112
|
-
return
|
|
5240
|
+
return xi(r);
|
|
5113
5241
|
}
|
|
5114
|
-
function
|
|
5115
|
-
const t =
|
|
5242
|
+
function xi(e) {
|
|
5243
|
+
const t = Ii.safeParse(e);
|
|
5116
5244
|
if (!t.success)
|
|
5117
5245
|
throw new Error("Bad access token response");
|
|
5118
5246
|
return t.data;
|
|
5119
5247
|
}
|
|
5120
|
-
class
|
|
5248
|
+
class Ni {
|
|
5121
5249
|
constructor(t) {
|
|
5122
5250
|
b(this, "activeRequest", null);
|
|
5123
5251
|
b(this, "refreshTimeout");
|
|
@@ -5133,7 +5261,7 @@ class hi {
|
|
|
5133
5261
|
async refreshAccessToken() {
|
|
5134
5262
|
if (this.activeRequest)
|
|
5135
5263
|
return await this.activeRequest, this.accessToken;
|
|
5136
|
-
this.accessToken = null, this.activeRequest =
|
|
5264
|
+
this.accessToken = null, this.activeRequest = Oi(this.clientCredentials);
|
|
5137
5265
|
const t = await this.activeRequest;
|
|
5138
5266
|
return this.scheduleNextRefresh(t), this.accessToken = t.access_token, this.activeRequest = null, this.accessToken;
|
|
5139
5267
|
}
|
|
@@ -5146,18 +5274,18 @@ class hi {
|
|
|
5146
5274
|
}
|
|
5147
5275
|
}
|
|
5148
5276
|
function Le(e, t) {
|
|
5149
|
-
e.headers =
|
|
5277
|
+
e.headers = Ai("Authorization", `Bearer ${t}`, e.headers);
|
|
5150
5278
|
}
|
|
5151
|
-
function
|
|
5279
|
+
function Ai(e, t, r) {
|
|
5152
5280
|
return r ? Array.isArray(r) ? r.map(
|
|
5153
5281
|
([n, i]) => n !== e ? [n, i] : [e, t]
|
|
5154
|
-
) :
|
|
5282
|
+
) : bi(r) ? (r.has(e) ? r.set(e, t) : r.append(e, t), r) : (r[e] = t, r) : (r = {}, r[e] = t, r);
|
|
5155
5283
|
}
|
|
5156
|
-
function
|
|
5284
|
+
function bi(e) {
|
|
5157
5285
|
return "append" in e && "delete" in e && "get" in e && "has" in e && "set" in e && "forEach" in e;
|
|
5158
5286
|
}
|
|
5159
|
-
function
|
|
5160
|
-
const t = new
|
|
5287
|
+
function Di(e) {
|
|
5288
|
+
const t = new Ni(e);
|
|
5161
5289
|
return {
|
|
5162
5290
|
pre: async (r) => {
|
|
5163
5291
|
const n = await t.getAccessToken();
|
|
@@ -5167,7 +5295,7 @@ function vi(e) {
|
|
|
5167
5295
|
});
|
|
5168
5296
|
},
|
|
5169
5297
|
post: async (r) => {
|
|
5170
|
-
if (
|
|
5298
|
+
if (Ti(r.response.status)) {
|
|
5171
5299
|
const n = await t.refreshAccessToken();
|
|
5172
5300
|
return Le(r.init, n), await fetch(r.url, r.init);
|
|
5173
5301
|
}
|
|
@@ -5175,9 +5303,9 @@ function vi(e) {
|
|
|
5175
5303
|
}
|
|
5176
5304
|
};
|
|
5177
5305
|
}
|
|
5178
|
-
function
|
|
5306
|
+
function ha(e) {
|
|
5179
5307
|
let t = [], r = {};
|
|
5180
|
-
e.clientCredentials && t.push(
|
|
5308
|
+
e.clientCredentials && t.push(Di(e.clientCredentials)), e.managementApiKey && (r = ki(e.managementApiKey));
|
|
5181
5309
|
const n = new Fe({
|
|
5182
5310
|
basePath: e.managementApiUrl,
|
|
5183
5311
|
headers: r,
|
|
@@ -5186,232 +5314,252 @@ function Ks(e) {
|
|
|
5186
5314
|
...e.configOverrides
|
|
5187
5315
|
});
|
|
5188
5316
|
return {
|
|
5189
|
-
uiApi: new
|
|
5190
|
-
useCaseApi: new
|
|
5191
|
-
enterpriseEditionApi: new
|
|
5317
|
+
uiApi: new Tn(n),
|
|
5318
|
+
useCaseApi: new Pn(n),
|
|
5319
|
+
enterpriseEditionApi: new Sn(n)
|
|
5192
5320
|
};
|
|
5193
5321
|
}
|
|
5194
|
-
function
|
|
5322
|
+
function ki(e) {
|
|
5195
5323
|
return {
|
|
5196
5324
|
"X-Api-Key": e
|
|
5197
5325
|
};
|
|
5198
5326
|
}
|
|
5199
5327
|
export {
|
|
5200
|
-
|
|
5201
|
-
|
|
5202
|
-
|
|
5203
|
-
|
|
5328
|
+
vt as AssetPageFromJSON,
|
|
5329
|
+
_t as AssetPageFromJSONTyped,
|
|
5330
|
+
Zi as AssetPageToJSON,
|
|
5331
|
+
Ct as AtomicConstraintDtoFromJSON,
|
|
5332
|
+
St as AtomicConstraintDtoFromJSONTyped,
|
|
5333
|
+
Tt as AtomicConstraintDtoToJSON,
|
|
5334
|
+
dt as BASE_PATH,
|
|
5204
5335
|
W as BaseAPI,
|
|
5205
|
-
|
|
5206
|
-
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
|
|
5222
|
-
|
|
5223
|
-
|
|
5336
|
+
Fi as BlobApiResponse,
|
|
5337
|
+
Ei as COLLECTION_FORMATS,
|
|
5338
|
+
Dt as CatalogFilterExpressionFromJSON,
|
|
5339
|
+
kt as CatalogFilterExpressionFromJSONTyped,
|
|
5340
|
+
Ot as CatalogFilterExpressionLiteralFromJSON,
|
|
5341
|
+
xt as CatalogFilterExpressionLiteralFromJSONTyped,
|
|
5342
|
+
Nt as CatalogFilterExpressionLiteralToJSON,
|
|
5343
|
+
zi as CatalogFilterExpressionLiteralType,
|
|
5344
|
+
Pt as CatalogFilterExpressionLiteralTypeFromJSON,
|
|
5345
|
+
It as CatalogFilterExpressionLiteralTypeFromJSONTyped,
|
|
5346
|
+
Bi as CatalogFilterExpressionLiteralTypeToJSON,
|
|
5347
|
+
Qi as CatalogFilterExpressionOperator,
|
|
5348
|
+
At as CatalogFilterExpressionOperatorFromJSON,
|
|
5349
|
+
bt as CatalogFilterExpressionOperatorFromJSONTyped,
|
|
5350
|
+
Ki as CatalogFilterExpressionOperatorToJSON,
|
|
5351
|
+
Rt as CatalogFilterExpressionToJSON,
|
|
5352
|
+
Xi as CatalogQueryFromJSON,
|
|
5353
|
+
Ut as CatalogQueryFromJSONTyped,
|
|
5354
|
+
Et as CatalogQueryToJSON,
|
|
5224
5355
|
Fe as Configuration,
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
|
|
5228
|
-
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5238
|
-
|
|
5239
|
-
|
|
5240
|
-
|
|
5241
|
-
|
|
5242
|
-
|
|
5243
|
-
|
|
5244
|
-
|
|
5245
|
-
|
|
5246
|
-
|
|
5247
|
-
|
|
5248
|
-
|
|
5249
|
-
|
|
5250
|
-
|
|
5251
|
-
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5255
|
-
|
|
5256
|
-
|
|
5257
|
-
|
|
5258
|
-
|
|
5259
|
-
|
|
5260
|
-
|
|
5261
|
-
|
|
5262
|
-
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5268
|
-
|
|
5356
|
+
Jt as ConnectorLimitsFromJSON,
|
|
5357
|
+
Lt as ConnectorLimitsFromJSONTyped,
|
|
5358
|
+
es as ConnectorLimitsToJSON,
|
|
5359
|
+
Xt as ContractAgreementCardFromJSON,
|
|
5360
|
+
jt as ContractAgreementCardFromJSONTyped,
|
|
5361
|
+
er as ContractAgreementCardToJSON,
|
|
5362
|
+
ts as ContractAgreementDirection,
|
|
5363
|
+
$e as ContractAgreementDirectionFromJSON,
|
|
5364
|
+
Ft as ContractAgreementDirectionFromJSONTyped,
|
|
5365
|
+
rs as ContractAgreementDirectionToJSON,
|
|
5366
|
+
tr as ContractAgreementPageFromJSON,
|
|
5367
|
+
rr as ContractAgreementPageFromJSONTyped,
|
|
5368
|
+
ms as ContractAgreementPageToJSON,
|
|
5369
|
+
$t as ContractAgreementTransferProcessFromJSON,
|
|
5370
|
+
Vt as ContractAgreementTransferProcessFromJSONTyped,
|
|
5371
|
+
Ht as ContractAgreementTransferProcessToJSON,
|
|
5372
|
+
lr as ContractDefinitionEntryFromJSON,
|
|
5373
|
+
fr as ContractDefinitionEntryFromJSONTyped,
|
|
5374
|
+
pr as ContractDefinitionEntryToJSON,
|
|
5375
|
+
mr as ContractDefinitionPageFromJSON,
|
|
5376
|
+
hr as ContractDefinitionPageFromJSONTyped,
|
|
5377
|
+
Ts as ContractDefinitionPageToJSON,
|
|
5378
|
+
Is as ContractDefinitionRequestFromJSON,
|
|
5379
|
+
gr as ContractDefinitionRequestFromJSONTyped,
|
|
5380
|
+
yr as ContractDefinitionRequestToJSON,
|
|
5381
|
+
xs as ContractNegotiationRequestFromJSON,
|
|
5382
|
+
vr as ContractNegotiationRequestFromJSONTyped,
|
|
5383
|
+
_r as ContractNegotiationRequestToJSON,
|
|
5384
|
+
Ns as ContractNegotiationSimplifiedState,
|
|
5385
|
+
wr as ContractNegotiationSimplifiedStateFromJSON,
|
|
5386
|
+
Cr as ContractNegotiationSimplifiedStateFromJSONTyped,
|
|
5387
|
+
As as ContractNegotiationSimplifiedStateToJSON,
|
|
5388
|
+
Sr as ContractNegotiationStateFromJSON,
|
|
5389
|
+
Tr as ContractNegotiationStateFromJSONTyped,
|
|
5390
|
+
Pr as ContractNegotiationStateToJSON,
|
|
5391
|
+
Ir as DashboardDapsConfigFromJSON,
|
|
5392
|
+
Or as DashboardDapsConfigFromJSONTyped,
|
|
5393
|
+
xr as DashboardDapsConfigToJSON,
|
|
5394
|
+
Nr as DashboardMiwConfigFromJSON,
|
|
5395
|
+
Ar as DashboardMiwConfigFromJSONTyped,
|
|
5396
|
+
br as DashboardMiwConfigToJSON,
|
|
5397
|
+
kr as DashboardPageFromJSON,
|
|
5398
|
+
Rr as DashboardPageFromJSONTyped,
|
|
5399
|
+
Es as DashboardPageToJSON,
|
|
5269
5400
|
ke as DashboardTransferAmountsFromJSON,
|
|
5270
|
-
|
|
5401
|
+
Dr as DashboardTransferAmountsFromJSONTyped,
|
|
5271
5402
|
Re as DashboardTransferAmountsToJSON,
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
|
|
5278
|
-
|
|
5279
|
-
|
|
5280
|
-
|
|
5281
|
-
|
|
5282
|
-
|
|
5283
|
-
|
|
5403
|
+
ut as DefaultConfig,
|
|
5404
|
+
Sn as EnterpriseEditionApi,
|
|
5405
|
+
Ke as ExpressionFromJSON,
|
|
5406
|
+
Jr as ExpressionFromJSONTyped,
|
|
5407
|
+
We as ExpressionToJSON,
|
|
5408
|
+
Js as ExpressionType,
|
|
5409
|
+
Ur as ExpressionTypeFromJSON,
|
|
5410
|
+
Er as ExpressionTypeFromJSONTyped,
|
|
5411
|
+
Ls as ExpressionTypeToJSON,
|
|
5412
|
+
mt as FetchError,
|
|
5413
|
+
D as IdResponseDtoFromJSON,
|
|
5414
|
+
Lr as IdResponseDtoFromJSONTyped,
|
|
5415
|
+
Ms as IdResponseDtoToJSON,
|
|
5416
|
+
$s as InitiateCustomTransferRequestFromJSON,
|
|
5417
|
+
Fr as InitiateCustomTransferRequestFromJSONTyped,
|
|
5418
|
+
qr as InitiateCustomTransferRequestToJSON,
|
|
5419
|
+
Hs as InitiateTransferRequestFromJSON,
|
|
5420
|
+
Mr as InitiateTransferRequestFromJSONTyped,
|
|
5421
|
+
Zr as InitiateTransferRequestToJSON,
|
|
5284
5422
|
C as JSONApiResponse,
|
|
5285
|
-
|
|
5286
|
-
|
|
5287
|
-
|
|
5288
|
-
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
|
|
5300
|
-
|
|
5423
|
+
zr as KpiResultFromJSON,
|
|
5424
|
+
Br as KpiResultFromJSONTyped,
|
|
5425
|
+
Gs as KpiResultToJSON,
|
|
5426
|
+
$i as OperatorDto,
|
|
5427
|
+
Ze as OperatorDtoFromJSON,
|
|
5428
|
+
wt as OperatorDtoFromJSONTyped,
|
|
5429
|
+
Vi as OperatorDtoToJSON,
|
|
5430
|
+
Gr as PermissionDtoFromJSON,
|
|
5431
|
+
Qr as PermissionDtoFromJSONTyped,
|
|
5432
|
+
Kr as PermissionDtoToJSON,
|
|
5433
|
+
Ws as PolicyCreateRequestFromJSON,
|
|
5434
|
+
Wr as PolicyCreateRequestFromJSONTyped,
|
|
5435
|
+
Yr as PolicyCreateRequestToJSON,
|
|
5436
|
+
js as PolicyDefinitionCreateRequestFromJSON,
|
|
5437
|
+
tn as PolicyDefinitionCreateRequestFromJSONTyped,
|
|
5438
|
+
rn as PolicyDefinitionCreateRequestToJSON,
|
|
5439
|
+
nn as PolicyDefinitionDtoFromJSON,
|
|
5440
|
+
sn as PolicyDefinitionDtoFromJSONTyped,
|
|
5441
|
+
an as PolicyDefinitionDtoToJSON,
|
|
5442
|
+
on as PolicyDefinitionPageFromJSON,
|
|
5443
|
+
cn as PolicyDefinitionPageFromJSONTyped,
|
|
5444
|
+
ra as PolicyDefinitionPageToJSON,
|
|
5301
5445
|
U as RequiredError,
|
|
5302
|
-
|
|
5303
|
-
|
|
5304
|
-
|
|
5305
|
-
|
|
5306
|
-
|
|
5307
|
-
|
|
5308
|
-
|
|
5309
|
-
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
|
|
5313
|
-
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
|
-
|
|
5317
|
-
|
|
5318
|
-
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5446
|
+
pt as ResponseError,
|
|
5447
|
+
gt as TextApiResponse,
|
|
5448
|
+
dn as TransferHistoryEntryFromJSON,
|
|
5449
|
+
un as TransferHistoryEntryFromJSONTyped,
|
|
5450
|
+
ln as TransferHistoryEntryToJSON,
|
|
5451
|
+
fn as TransferHistoryPageFromJSON,
|
|
5452
|
+
pn as TransferHistoryPageFromJSONTyped,
|
|
5453
|
+
sa as TransferHistoryPageToJSON,
|
|
5454
|
+
ns as TransferProcessSimplifiedState,
|
|
5455
|
+
qt as TransferProcessSimplifiedStateFromJSON,
|
|
5456
|
+
Mt as TransferProcessSimplifiedStateFromJSONTyped,
|
|
5457
|
+
is as TransferProcessSimplifiedStateToJSON,
|
|
5458
|
+
Ve as TransferProcessStateFromJSON,
|
|
5459
|
+
Zt as TransferProcessStateFromJSONTyped,
|
|
5460
|
+
He as TransferProcessStateToJSON,
|
|
5461
|
+
$r as TransferProcessStatesDtoFromJSON,
|
|
5462
|
+
Vr as TransferProcessStatesDtoFromJSONTyped,
|
|
5463
|
+
Hr as TransferProcessStatesDtoToJSON,
|
|
5464
|
+
Tn as UIApi,
|
|
5465
|
+
oa as UiAssetCreateRequestFromJSON,
|
|
5466
|
+
mn as UiAssetCreateRequestFromJSONTyped,
|
|
5467
|
+
Ye as UiAssetCreateRequestToJSON,
|
|
5468
|
+
da as UiAssetEditMetadataRequestFromJSON,
|
|
5469
|
+
hn as UiAssetEditMetadataRequestFromJSONTyped,
|
|
5470
|
+
gn as UiAssetEditMetadataRequestToJSON,
|
|
5327
5471
|
Ce as UiAssetFromJSON,
|
|
5328
|
-
|
|
5472
|
+
yt as UiAssetFromJSONTyped,
|
|
5329
5473
|
Ae as UiAssetToJSON,
|
|
5330
5474
|
Ue as UiContractNegotiationFromJSON,
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5349
|
-
|
|
5350
|
-
|
|
5351
|
-
|
|
5352
|
-
|
|
5353
|
-
|
|
5354
|
-
|
|
5355
|
-
|
|
5356
|
-
|
|
5357
|
-
|
|
5358
|
-
|
|
5475
|
+
yn as UiContractNegotiationFromJSONTyped,
|
|
5476
|
+
la as UiContractNegotiationToJSON,
|
|
5477
|
+
vn as UiContractOfferFromJSON,
|
|
5478
|
+
_n as UiContractOfferFromJSONTyped,
|
|
5479
|
+
wn as UiContractOfferToJSON,
|
|
5480
|
+
Ge as UiCriterionFromJSON,
|
|
5481
|
+
ur as UiCriterionFromJSONTyped,
|
|
5482
|
+
sr as UiCriterionLiteralFromJSON,
|
|
5483
|
+
ar as UiCriterionLiteralFromJSONTyped,
|
|
5484
|
+
or as UiCriterionLiteralToJSON,
|
|
5485
|
+
hs as UiCriterionLiteralType,
|
|
5486
|
+
nr as UiCriterionLiteralTypeFromJSON,
|
|
5487
|
+
ir as UiCriterionLiteralTypeFromJSONTyped,
|
|
5488
|
+
gs as UiCriterionLiteralTypeToJSON,
|
|
5489
|
+
vs as UiCriterionOperator,
|
|
5490
|
+
cr as UiCriterionOperatorFromJSON,
|
|
5491
|
+
dr as UiCriterionOperatorFromJSONTyped,
|
|
5492
|
+
_s as UiCriterionOperatorToJSON,
|
|
5493
|
+
Qe as UiCriterionToJSON,
|
|
5494
|
+
Xe as UiDataOfferFromJSON,
|
|
5495
|
+
Cn as UiDataOfferFromJSONTyped,
|
|
5496
|
+
ma as UiDataOfferToJSON,
|
|
5497
|
+
ze as UiPolicyConstraintFromJSON,
|
|
5498
|
+
Wt as UiPolicyConstraintFromJSONTyped,
|
|
5499
|
+
Be as UiPolicyConstraintToJSON,
|
|
5500
|
+
Xr as UiPolicyCreateRequestFromJSON,
|
|
5501
|
+
jr as UiPolicyCreateRequestFromJSONTyped,
|
|
5502
|
+
en as UiPolicyCreateRequestToJSON,
|
|
5359
5503
|
be as UiPolicyFromJSON,
|
|
5360
|
-
|
|
5361
|
-
|
|
5362
|
-
|
|
5363
|
-
|
|
5364
|
-
|
|
5365
|
-
|
|
5366
|
-
|
|
5367
|
-
|
|
5504
|
+
Yt as UiPolicyFromJSONTyped,
|
|
5505
|
+
Gt as UiPolicyLiteralFromJSON,
|
|
5506
|
+
Qt as UiPolicyLiteralFromJSONTyped,
|
|
5507
|
+
Kt as UiPolicyLiteralToJSON,
|
|
5508
|
+
os as UiPolicyLiteralType,
|
|
5509
|
+
zt as UiPolicyLiteralTypeFromJSON,
|
|
5510
|
+
Bt as UiPolicyLiteralTypeFromJSONTyped,
|
|
5511
|
+
cs as UiPolicyLiteralTypeToJSON,
|
|
5368
5512
|
De as UiPolicyToJSON,
|
|
5369
|
-
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5513
|
+
Pn as UseCaseApi,
|
|
5514
|
+
ht as VoidApiResponse,
|
|
5515
|
+
ha as buildEdcClient,
|
|
5516
|
+
Li as canConsumeForm,
|
|
5373
5517
|
c as exists,
|
|
5374
|
-
|
|
5375
|
-
|
|
5376
|
-
|
|
5377
|
-
|
|
5378
|
-
|
|
5379
|
-
|
|
5380
|
-
|
|
5381
|
-
|
|
5382
|
-
|
|
5383
|
-
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5391
|
-
|
|
5392
|
-
|
|
5393
|
-
|
|
5394
|
-
|
|
5395
|
-
|
|
5396
|
-
|
|
5397
|
-
|
|
5398
|
-
|
|
5399
|
-
|
|
5400
|
-
|
|
5401
|
-
|
|
5402
|
-
|
|
5403
|
-
|
|
5404
|
-
|
|
5405
|
-
|
|
5406
|
-
|
|
5407
|
-
|
|
5408
|
-
|
|
5409
|
-
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5413
|
-
|
|
5414
|
-
|
|
5518
|
+
Mi as instanceOfAssetPage,
|
|
5519
|
+
Hi as instanceOfAtomicConstraintDto,
|
|
5520
|
+
Wi as instanceOfCatalogFilterExpression,
|
|
5521
|
+
Gi as instanceOfCatalogFilterExpressionLiteral,
|
|
5522
|
+
Yi as instanceOfCatalogQuery,
|
|
5523
|
+
ji as instanceOfConnectorLimits,
|
|
5524
|
+
fs as instanceOfContractAgreementCard,
|
|
5525
|
+
ps as instanceOfContractAgreementPage,
|
|
5526
|
+
as as instanceOfContractAgreementTransferProcess,
|
|
5527
|
+
Cs as instanceOfContractDefinitionEntry,
|
|
5528
|
+
Ss as instanceOfContractDefinitionPage,
|
|
5529
|
+
Ps as instanceOfContractDefinitionRequest,
|
|
5530
|
+
Os as instanceOfContractNegotiationRequest,
|
|
5531
|
+
bs as instanceOfContractNegotiationState,
|
|
5532
|
+
Ds as instanceOfDashboardDapsConfig,
|
|
5533
|
+
ks as instanceOfDashboardMiwConfig,
|
|
5534
|
+
Us as instanceOfDashboardPage,
|
|
5535
|
+
Rs as instanceOfDashboardTransferAmounts,
|
|
5536
|
+
Fs as instanceOfExpression,
|
|
5537
|
+
qs as instanceOfIdResponseDto,
|
|
5538
|
+
Zs as instanceOfInitiateCustomTransferRequest,
|
|
5539
|
+
Vs as instanceOfInitiateTransferRequest,
|
|
5540
|
+
Bs as instanceOfKpiResult,
|
|
5541
|
+
Qs as instanceOfPermissionDto,
|
|
5542
|
+
Ks as instanceOfPolicyCreateRequest,
|
|
5543
|
+
Xs as instanceOfPolicyDefinitionCreateRequest,
|
|
5544
|
+
ea as instanceOfPolicyDefinitionDto,
|
|
5545
|
+
ta as instanceOfPolicyDefinitionPage,
|
|
5546
|
+
na as instanceOfTransferHistoryEntry,
|
|
5547
|
+
ia as instanceOfTransferHistoryPage,
|
|
5548
|
+
ss as instanceOfTransferProcessState,
|
|
5549
|
+
zs as instanceOfTransferProcessStatesDto,
|
|
5550
|
+
qi as instanceOfUiAsset,
|
|
5551
|
+
aa as instanceOfUiAssetCreateRequest,
|
|
5552
|
+
ca as instanceOfUiAssetEditMetadataRequest,
|
|
5553
|
+
ua as instanceOfUiContractNegotiation,
|
|
5554
|
+
fa as instanceOfUiContractOffer,
|
|
5555
|
+
ws as instanceOfUiCriterion,
|
|
5556
|
+
ys as instanceOfUiCriterionLiteral,
|
|
5557
|
+
pa as instanceOfUiDataOffer,
|
|
5558
|
+
ls as instanceOfUiPolicy,
|
|
5559
|
+
us as instanceOfUiPolicyConstraint,
|
|
5560
|
+
Ys as instanceOfUiPolicyCreateRequest,
|
|
5561
|
+
ds as instanceOfUiPolicyLiteral,
|
|
5562
|
+
Ji as mapValues,
|
|
5415
5563
|
qe as querystring
|
|
5416
5564
|
};
|
|
5417
5565
|
//# sourceMappingURL=sovity-edc-client.js.map
|