@sovity.de/edc-client 10.0.0 → 10.2.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 R = (e, t, r) => (
|
|
4
|
-
const
|
|
1
|
+
var lt = Object.defineProperty;
|
|
2
|
+
var ft = (e, t, r) => t in e ? lt(e, t, { enumerable: !0, configurable: !0, writable: !0, value: r }) : e[t] = r;
|
|
3
|
+
var R = (e, t, r) => (ft(e, typeof t != "symbol" ? t + "" : t, r), r);
|
|
4
|
+
const pt = "https://my-connector/api/management".replace(
|
|
5
5
|
/\/+$/,
|
|
6
6
|
""
|
|
7
7
|
);
|
|
@@ -13,7 +13,7 @@ class Ze {
|
|
|
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 : pt;
|
|
17
17
|
}
|
|
18
18
|
get fetchApi() {
|
|
19
19
|
return this.configuration.fetchApi;
|
|
@@ -47,8 +47,8 @@ class Ze {
|
|
|
47
47
|
return this.configuration.credentials;
|
|
48
48
|
}
|
|
49
49
|
}
|
|
50
|
-
const
|
|
51
|
-
constructor(t =
|
|
50
|
+
const mt = new Ze(), we = class we {
|
|
51
|
+
constructor(t = mt) {
|
|
52
52
|
R(this, "middleware");
|
|
53
53
|
R(this, "fetchApi", async (t, r) => {
|
|
54
54
|
let n = { url: t, init: r };
|
|
@@ -73,7 +73,7 @@ const pt = new Ze(), we = class we {
|
|
|
73
73
|
response: i ? i.clone() : void 0
|
|
74
74
|
}) || i);
|
|
75
75
|
if (i === void 0)
|
|
76
|
-
throw a instanceof Error ? new
|
|
76
|
+
throw a instanceof Error ? new vt(
|
|
77
77
|
a,
|
|
78
78
|
"The request failed and the interceptors did not return an alternative response"
|
|
79
79
|
) : a;
|
|
@@ -121,7 +121,7 @@ const pt = new Ze(), we = class we {
|
|
|
121
121
|
), a = await this.fetchApi(n, i);
|
|
122
122
|
if (a && a.status >= 200 && a.status < 300)
|
|
123
123
|
return a;
|
|
124
|
-
throw new
|
|
124
|
+
throw new yt(a, "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 pt = new Ze(), we = class we {
|
|
|
147
147
|
})
|
|
148
148
|
}, p = {
|
|
149
149
|
...s,
|
|
150
|
-
body:
|
|
150
|
+
body: gt(s.body) || s.body instanceof URLSearchParams || ht(s.body) ? s.body : JSON.stringify(s.body)
|
|
151
151
|
};
|
|
152
152
|
return { url: n, init: p };
|
|
153
153
|
}
|
|
@@ -165,27 +165,27 @@ R(we, "jsonRegex", new RegExp(
|
|
|
165
165
|
"i"
|
|
166
166
|
));
|
|
167
167
|
let W = we;
|
|
168
|
-
function
|
|
168
|
+
function ht(e) {
|
|
169
169
|
return typeof Blob < "u" && e instanceof Blob;
|
|
170
170
|
}
|
|
171
|
-
function
|
|
171
|
+
function gt(e) {
|
|
172
172
|
return typeof FormData < "u" && e instanceof FormData;
|
|
173
173
|
}
|
|
174
|
-
class
|
|
174
|
+
class yt extends Error {
|
|
175
175
|
constructor(r, n) {
|
|
176
176
|
super(n);
|
|
177
177
|
R(this, "name", "ResponseError");
|
|
178
178
|
this.response = r;
|
|
179
179
|
}
|
|
180
180
|
}
|
|
181
|
-
class
|
|
181
|
+
class vt extends Error {
|
|
182
182
|
constructor(r, n) {
|
|
183
183
|
super(n);
|
|
184
184
|
R(this, "name", "FetchError");
|
|
185
185
|
this.cause = r;
|
|
186
186
|
}
|
|
187
187
|
}
|
|
188
|
-
class
|
|
188
|
+
class P extends Error {
|
|
189
189
|
constructor(r, n) {
|
|
190
190
|
super(n);
|
|
191
191
|
R(this, "name", "RequiredError");
|
|
@@ -233,7 +233,7 @@ function ca(e) {
|
|
|
233
233
|
return !0;
|
|
234
234
|
return !1;
|
|
235
235
|
}
|
|
236
|
-
class
|
|
236
|
+
class C {
|
|
237
237
|
constructor(t, r = (n) => n) {
|
|
238
238
|
this.raw = t, this.transformer = r;
|
|
239
239
|
}
|
|
@@ -241,7 +241,7 @@ class T {
|
|
|
241
241
|
return this.transformer(await this.raw.json());
|
|
242
242
|
}
|
|
243
243
|
}
|
|
244
|
-
class
|
|
244
|
+
class St {
|
|
245
245
|
constructor(t) {
|
|
246
246
|
this.raw = t;
|
|
247
247
|
}
|
|
@@ -256,7 +256,7 @@ class da {
|
|
|
256
256
|
return await this.raw.blob();
|
|
257
257
|
}
|
|
258
258
|
}
|
|
259
|
-
class
|
|
259
|
+
class wt {
|
|
260
260
|
constructor(t) {
|
|
261
261
|
this.raw = t;
|
|
262
262
|
}
|
|
@@ -268,7 +268,7 @@ const ua = {
|
|
|
268
268
|
Live: "LIVE",
|
|
269
269
|
OnRequest: "ON_REQUEST"
|
|
270
270
|
};
|
|
271
|
-
function
|
|
271
|
+
function Ct(e) {
|
|
272
272
|
return Tt(e);
|
|
273
273
|
}
|
|
274
274
|
function Tt(e, t) {
|
|
@@ -281,12 +281,12 @@ function fa(e) {
|
|
|
281
281
|
let t = !0;
|
|
282
282
|
return t = t && "dataSourceAvailability" in e, 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;
|
|
283
283
|
}
|
|
284
|
-
function
|
|
285
|
-
return
|
|
284
|
+
function Ce(e) {
|
|
285
|
+
return _t(e);
|
|
286
286
|
}
|
|
287
|
-
function
|
|
287
|
+
function _t(e, t) {
|
|
288
288
|
return e == null ? e : {
|
|
289
|
-
dataSourceAvailability:
|
|
289
|
+
dataSourceAvailability: Ct(
|
|
290
290
|
e.dataSourceAvailability
|
|
291
291
|
),
|
|
292
292
|
assetId: e.assetId,
|
|
@@ -353,7 +353,7 @@ function Ct(e, t) {
|
|
|
353
353
|
) ? e.privateCustomJsonLdAsString : void 0
|
|
354
354
|
};
|
|
355
355
|
}
|
|
356
|
-
function
|
|
356
|
+
function De(e) {
|
|
357
357
|
if (e !== void 0)
|
|
358
358
|
return e === null ? null : {
|
|
359
359
|
dataSourceAvailability: e.dataSourceAvailability,
|
|
@@ -404,28 +404,28 @@ function pa(e) {
|
|
|
404
404
|
let t = !0;
|
|
405
405
|
return t = t && "assets" in e, t;
|
|
406
406
|
}
|
|
407
|
-
function
|
|
407
|
+
function It(e) {
|
|
408
408
|
return Pt(e);
|
|
409
409
|
}
|
|
410
410
|
function Pt(e, t) {
|
|
411
411
|
return e == null ? e : {
|
|
412
|
-
assets: e.assets.map(
|
|
412
|
+
assets: e.assets.map(Ce)
|
|
413
413
|
};
|
|
414
414
|
}
|
|
415
415
|
function ma(e) {
|
|
416
416
|
if (e !== void 0)
|
|
417
417
|
return e === null ? null : {
|
|
418
|
-
assets: e.assets.map(
|
|
418
|
+
assets: e.assets.map(De)
|
|
419
419
|
};
|
|
420
420
|
}
|
|
421
421
|
const ha = {
|
|
422
422
|
Value: "VALUE",
|
|
423
423
|
ValueList: "VALUE_LIST"
|
|
424
424
|
};
|
|
425
|
-
function
|
|
426
|
-
return
|
|
425
|
+
function Ot(e) {
|
|
426
|
+
return Nt(e);
|
|
427
427
|
}
|
|
428
|
-
function
|
|
428
|
+
function Nt(e, t) {
|
|
429
429
|
return e;
|
|
430
430
|
}
|
|
431
431
|
function ga(e) {
|
|
@@ -434,12 +434,12 @@ function ga(e) {
|
|
|
434
434
|
function ya(e) {
|
|
435
435
|
return !0;
|
|
436
436
|
}
|
|
437
|
-
function
|
|
437
|
+
function At(e) {
|
|
438
438
|
return bt(e);
|
|
439
439
|
}
|
|
440
440
|
function bt(e, t) {
|
|
441
441
|
return e == null ? e : {
|
|
442
|
-
type: c(e, "type") ?
|
|
442
|
+
type: c(e, "type") ? Ot(e.type) : void 0,
|
|
443
443
|
value: c(e, "value") ? e.value : void 0,
|
|
444
444
|
valueList: c(e, "valueList") ? e.valueList : void 0
|
|
445
445
|
};
|
|
@@ -457,10 +457,10 @@ const va = {
|
|
|
457
457
|
Eq: "EQ",
|
|
458
458
|
In: "IN"
|
|
459
459
|
};
|
|
460
|
-
function
|
|
461
|
-
return
|
|
460
|
+
function xt(e) {
|
|
461
|
+
return Rt(e);
|
|
462
462
|
}
|
|
463
|
-
function
|
|
463
|
+
function Rt(e, t) {
|
|
464
464
|
return e;
|
|
465
465
|
}
|
|
466
466
|
function Sa(e) {
|
|
@@ -470,19 +470,19 @@ function wa(e) {
|
|
|
470
470
|
let t = !0;
|
|
471
471
|
return t = t && "operandLeft" in e, t = t && "operator" in e, t = t && "operandRight" in e, t;
|
|
472
472
|
}
|
|
473
|
-
function
|
|
474
|
-
return
|
|
473
|
+
function kt(e) {
|
|
474
|
+
return Ut(e);
|
|
475
475
|
}
|
|
476
|
-
function
|
|
476
|
+
function Ut(e, t) {
|
|
477
477
|
return e == null ? e : {
|
|
478
478
|
operandLeft: e.operandLeft,
|
|
479
|
-
operator:
|
|
480
|
-
operandRight:
|
|
479
|
+
operator: xt(e.operator),
|
|
480
|
+
operandRight: At(
|
|
481
481
|
e.operandRight
|
|
482
482
|
)
|
|
483
483
|
};
|
|
484
484
|
}
|
|
485
|
-
function
|
|
485
|
+
function Et(e) {
|
|
486
486
|
if (e !== void 0)
|
|
487
487
|
return e === null ? null : {
|
|
488
488
|
operandLeft: e.operandLeft,
|
|
@@ -490,31 +490,31 @@ function Ut(e) {
|
|
|
490
490
|
operandRight: Dt(e.operandRight)
|
|
491
491
|
};
|
|
492
492
|
}
|
|
493
|
-
function
|
|
493
|
+
function Ca(e) {
|
|
494
494
|
let t = !0;
|
|
495
495
|
return t = t && "connectorEndpoint" in e, t;
|
|
496
496
|
}
|
|
497
|
-
function
|
|
498
|
-
return
|
|
497
|
+
function Ta(e) {
|
|
498
|
+
return Jt(e);
|
|
499
499
|
}
|
|
500
|
-
function
|
|
500
|
+
function Jt(e, t) {
|
|
501
501
|
return e == null ? e : {
|
|
502
502
|
connectorEndpoint: e.connectorEndpoint,
|
|
503
503
|
limit: c(e, "limit") ? e.limit : void 0,
|
|
504
504
|
offset: c(e, "offset") ? e.offset : void 0,
|
|
505
505
|
filterExpressions: c(e, "filterExpressions") ? e.filterExpressions.map(
|
|
506
|
-
|
|
506
|
+
kt
|
|
507
507
|
) : void 0
|
|
508
508
|
};
|
|
509
509
|
}
|
|
510
|
-
function
|
|
510
|
+
function Ft(e) {
|
|
511
511
|
if (e !== void 0)
|
|
512
512
|
return e === null ? null : {
|
|
513
513
|
connectorEndpoint: e.connectorEndpoint,
|
|
514
514
|
limit: e.limit,
|
|
515
515
|
offset: e.offset,
|
|
516
516
|
filterExpressions: e.filterExpressions === void 0 ? void 0 : e.filterExpressions.map(
|
|
517
|
-
|
|
517
|
+
Et
|
|
518
518
|
)
|
|
519
519
|
};
|
|
520
520
|
}
|
|
@@ -522,10 +522,10 @@ function _a(e) {
|
|
|
522
522
|
let t = !0;
|
|
523
523
|
return t = t && "numActiveConsumingContractAgreements" in e, t;
|
|
524
524
|
}
|
|
525
|
-
function
|
|
526
|
-
return
|
|
525
|
+
function Lt(e) {
|
|
526
|
+
return qt(e);
|
|
527
527
|
}
|
|
528
|
-
function
|
|
528
|
+
function qt(e, t) {
|
|
529
529
|
return e == null ? e : {
|
|
530
530
|
numActiveConsumingContractAgreements: e.numActiveConsumingContractAgreements,
|
|
531
531
|
maxActiveConsumingContractAgreements: c(
|
|
@@ -534,21 +534,21 @@ function Lt(e, t) {
|
|
|
534
534
|
) ? e.maxActiveConsumingContractAgreements : void 0
|
|
535
535
|
};
|
|
536
536
|
}
|
|
537
|
-
function
|
|
537
|
+
function Ia(e) {
|
|
538
538
|
if (e !== void 0)
|
|
539
539
|
return e === null ? null : {
|
|
540
540
|
numActiveConsumingContractAgreements: e.numActiveConsumingContractAgreements,
|
|
541
541
|
maxActiveConsumingContractAgreements: e.maxActiveConsumingContractAgreements
|
|
542
542
|
};
|
|
543
543
|
}
|
|
544
|
-
const
|
|
544
|
+
const Pa = {
|
|
545
545
|
Consuming: "CONSUMING",
|
|
546
546
|
Providing: "PROVIDING"
|
|
547
547
|
};
|
|
548
548
|
function He(e) {
|
|
549
|
-
return
|
|
549
|
+
return Mt(e);
|
|
550
550
|
}
|
|
551
|
-
function
|
|
551
|
+
function Mt(e, t) {
|
|
552
552
|
return e;
|
|
553
553
|
}
|
|
554
554
|
function Oa(e) {
|
|
@@ -558,31 +558,31 @@ const Na = {
|
|
|
558
558
|
Self: "SELF",
|
|
559
559
|
Counterparty: "COUNTERPARTY"
|
|
560
560
|
};
|
|
561
|
-
function
|
|
562
|
-
return
|
|
561
|
+
function Zt(e) {
|
|
562
|
+
return Vt(e);
|
|
563
563
|
}
|
|
564
|
-
function
|
|
564
|
+
function Vt(e, t) {
|
|
565
565
|
return e;
|
|
566
566
|
}
|
|
567
|
-
function
|
|
567
|
+
function Aa(e) {
|
|
568
568
|
return e;
|
|
569
569
|
}
|
|
570
|
-
function
|
|
570
|
+
function ba(e) {
|
|
571
571
|
let t = !0;
|
|
572
572
|
return t = t && "terminatedAt" in e, t = t && "reason" in e, t = t && "detail" in e, t = t && "terminatedBy" in e, t;
|
|
573
573
|
}
|
|
574
|
-
function
|
|
575
|
-
return
|
|
574
|
+
function $t(e) {
|
|
575
|
+
return Ht(e);
|
|
576
576
|
}
|
|
577
|
-
function
|
|
577
|
+
function Ht(e, t) {
|
|
578
578
|
return e == null ? e : {
|
|
579
579
|
terminatedAt: new Date(e.terminatedAt),
|
|
580
580
|
reason: e.reason,
|
|
581
581
|
detail: e.detail,
|
|
582
|
-
terminatedBy:
|
|
582
|
+
terminatedBy: Zt(e.terminatedBy)
|
|
583
583
|
};
|
|
584
584
|
}
|
|
585
|
-
function
|
|
585
|
+
function zt(e) {
|
|
586
586
|
if (e !== void 0)
|
|
587
587
|
return e === null ? null : {
|
|
588
588
|
terminatedAt: e.terminatedAt.toISOString(),
|
|
@@ -591,15 +591,15 @@ function Ht(e) {
|
|
|
591
591
|
terminatedBy: e.terminatedBy
|
|
592
592
|
};
|
|
593
593
|
}
|
|
594
|
-
const
|
|
594
|
+
const Da = {
|
|
595
595
|
Running: "RUNNING",
|
|
596
596
|
Ok: "OK",
|
|
597
597
|
Error: "ERROR"
|
|
598
598
|
};
|
|
599
|
-
function
|
|
600
|
-
return
|
|
599
|
+
function Bt(e) {
|
|
600
|
+
return Gt(e);
|
|
601
601
|
}
|
|
602
|
-
function
|
|
602
|
+
function Gt(e, t) {
|
|
603
603
|
return e;
|
|
604
604
|
}
|
|
605
605
|
function xa(e) {
|
|
@@ -616,7 +616,7 @@ function Qt(e, t) {
|
|
|
616
616
|
return e == null ? e : {
|
|
617
617
|
name: e.name,
|
|
618
618
|
code: e.code,
|
|
619
|
-
simplifiedState:
|
|
619
|
+
simplifiedState: Bt(
|
|
620
620
|
e.simplifiedState
|
|
621
621
|
)
|
|
622
622
|
};
|
|
@@ -633,10 +633,10 @@ function ka(e) {
|
|
|
633
633
|
let t = !0;
|
|
634
634
|
return t = t && "transferProcessId" in e, t = t && "lastUpdatedDate" in e, t = t && "state" in e, t;
|
|
635
635
|
}
|
|
636
|
-
function
|
|
637
|
-
return
|
|
636
|
+
function Kt(e) {
|
|
637
|
+
return Wt(e);
|
|
638
638
|
}
|
|
639
|
-
function
|
|
639
|
+
function Wt(e, t) {
|
|
640
640
|
return e == null ? e : {
|
|
641
641
|
transferProcessId: e.transferProcessId,
|
|
642
642
|
lastUpdatedDate: new Date(e.lastUpdatedDate),
|
|
@@ -644,7 +644,7 @@ function Kt(e, t) {
|
|
|
644
644
|
errorMessage: c(e, "errorMessage") ? e.errorMessage : void 0
|
|
645
645
|
};
|
|
646
646
|
}
|
|
647
|
-
function
|
|
647
|
+
function Yt(e) {
|
|
648
648
|
if (e !== void 0)
|
|
649
649
|
return e === null ? null : {
|
|
650
650
|
transferProcessId: e.transferProcessId,
|
|
@@ -657,10 +657,10 @@ const Ua = {
|
|
|
657
657
|
Ongoing: "ONGOING",
|
|
658
658
|
Terminated: "TERMINATED"
|
|
659
659
|
};
|
|
660
|
-
function
|
|
661
|
-
return
|
|
660
|
+
function Ge(e) {
|
|
661
|
+
return Xt(e);
|
|
662
662
|
}
|
|
663
|
-
function
|
|
663
|
+
function Xt(e, t) {
|
|
664
664
|
return e;
|
|
665
665
|
}
|
|
666
666
|
function Ea(e) {
|
|
@@ -680,10 +680,10 @@ const Ja = {
|
|
|
680
680
|
IsAnyOf: "IS_ANY_OF",
|
|
681
681
|
IsNoneOf: "IS_NONE_OF"
|
|
682
682
|
};
|
|
683
|
-
function
|
|
684
|
-
return
|
|
683
|
+
function jt(e) {
|
|
684
|
+
return er(e);
|
|
685
685
|
}
|
|
686
|
-
function
|
|
686
|
+
function er(e, t) {
|
|
687
687
|
return e;
|
|
688
688
|
}
|
|
689
689
|
function Fa(e) {
|
|
@@ -694,10 +694,10 @@ const La = {
|
|
|
694
694
|
StringList: "STRING_LIST",
|
|
695
695
|
Json: "JSON"
|
|
696
696
|
};
|
|
697
|
-
function
|
|
698
|
-
return
|
|
697
|
+
function tr(e) {
|
|
698
|
+
return rr(e);
|
|
699
699
|
}
|
|
700
|
-
function
|
|
700
|
+
function rr(e, t) {
|
|
701
701
|
return e;
|
|
702
702
|
}
|
|
703
703
|
function qa(e) {
|
|
@@ -707,17 +707,17 @@ function Ma(e) {
|
|
|
707
707
|
let t = !0;
|
|
708
708
|
return t = t && "type" in e, t;
|
|
709
709
|
}
|
|
710
|
-
function
|
|
711
|
-
return
|
|
710
|
+
function nr(e) {
|
|
711
|
+
return ir(e);
|
|
712
712
|
}
|
|
713
|
-
function
|
|
713
|
+
function ir(e, t) {
|
|
714
714
|
return e == null ? e : {
|
|
715
|
-
type:
|
|
715
|
+
type: tr(e.type),
|
|
716
716
|
value: c(e, "value") ? e.value : void 0,
|
|
717
717
|
valueList: c(e, "valueList") ? e.valueList : void 0
|
|
718
718
|
};
|
|
719
719
|
}
|
|
720
|
-
function
|
|
720
|
+
function ar(e) {
|
|
721
721
|
if (e !== void 0)
|
|
722
722
|
return e === null ? null : {
|
|
723
723
|
type: e.type,
|
|
@@ -729,14 +729,14 @@ function Za(e) {
|
|
|
729
729
|
let t = !0;
|
|
730
730
|
return t = t && "left" in e, t = t && "operator" in e, t = t && "right" in e, t;
|
|
731
731
|
}
|
|
732
|
-
function
|
|
733
|
-
return
|
|
732
|
+
function Qe(e) {
|
|
733
|
+
return or(e);
|
|
734
734
|
}
|
|
735
|
-
function
|
|
735
|
+
function or(e, t) {
|
|
736
736
|
return e == null ? e : {
|
|
737
737
|
left: e.left,
|
|
738
|
-
operator:
|
|
739
|
-
right:
|
|
738
|
+
operator: jt(e.operator),
|
|
739
|
+
right: nr(e.right)
|
|
740
740
|
};
|
|
741
741
|
}
|
|
742
742
|
function Ke(e) {
|
|
@@ -744,7 +744,7 @@ function Ke(e) {
|
|
|
744
744
|
return e === null ? null : {
|
|
745
745
|
left: e.left,
|
|
746
746
|
operator: e.operator,
|
|
747
|
-
right:
|
|
747
|
+
right: ar(e.right)
|
|
748
748
|
};
|
|
749
749
|
}
|
|
750
750
|
const Va = {
|
|
@@ -754,10 +754,10 @@ const Va = {
|
|
|
754
754
|
Or: "OR",
|
|
755
755
|
Xone: "XONE"
|
|
756
756
|
};
|
|
757
|
-
function
|
|
758
|
-
return
|
|
757
|
+
function sr(e) {
|
|
758
|
+
return cr(e);
|
|
759
759
|
}
|
|
760
|
-
function
|
|
760
|
+
function cr(e, t) {
|
|
761
761
|
return e;
|
|
762
762
|
}
|
|
763
763
|
function $a(e) {
|
|
@@ -768,15 +768,15 @@ function Ha(e) {
|
|
|
768
768
|
return t = t && "type" in e, t;
|
|
769
769
|
}
|
|
770
770
|
function xe(e) {
|
|
771
|
-
return
|
|
771
|
+
return dr(e);
|
|
772
772
|
}
|
|
773
|
-
function
|
|
773
|
+
function dr(e, t) {
|
|
774
774
|
return e == null ? e : {
|
|
775
|
-
type:
|
|
775
|
+
type: sr(e.type),
|
|
776
776
|
expressions: c(e, "expressions") ? e.expressions.map(
|
|
777
777
|
xe
|
|
778
778
|
) : void 0,
|
|
779
|
-
constraint: c(e, "constraint") ?
|
|
779
|
+
constraint: c(e, "constraint") ? Qe(e.constraint) : void 0
|
|
780
780
|
};
|
|
781
781
|
}
|
|
782
782
|
function Re(e) {
|
|
@@ -794,9 +794,9 @@ function za(e) {
|
|
|
794
794
|
return t = t && "policyJsonLd" in e, t = t && "errors" in e, t;
|
|
795
795
|
}
|
|
796
796
|
function ke(e) {
|
|
797
|
-
return
|
|
797
|
+
return ur(e);
|
|
798
798
|
}
|
|
799
|
-
function
|
|
799
|
+
function ur(e, t) {
|
|
800
800
|
return e == null ? e : {
|
|
801
801
|
policyJsonLd: e.policyJsonLd,
|
|
802
802
|
expression: c(e, "expression") ? xe(e.expression) : void 0,
|
|
@@ -815,7 +815,7 @@ function Ba(e) {
|
|
|
815
815
|
let t = !0;
|
|
816
816
|
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 = t && "terminationStatus" in e, t;
|
|
817
817
|
}
|
|
818
|
-
function
|
|
818
|
+
function We(e) {
|
|
819
819
|
return lr(e);
|
|
820
820
|
}
|
|
821
821
|
function lr(e, t) {
|
|
@@ -826,15 +826,15 @@ function lr(e, t) {
|
|
|
826
826
|
counterPartyAddress: e.counterPartyAddress,
|
|
827
827
|
counterPartyId: e.counterPartyId,
|
|
828
828
|
contractSigningDate: new Date(e.contractSigningDate),
|
|
829
|
-
asset:
|
|
829
|
+
asset: Ce(e.asset),
|
|
830
830
|
contractPolicy: ke(e.contractPolicy),
|
|
831
831
|
transferProcesses: e.transferProcesses.map(
|
|
832
|
-
|
|
832
|
+
Kt
|
|
833
833
|
),
|
|
834
|
-
terminationStatus:
|
|
834
|
+
terminationStatus: Ge(
|
|
835
835
|
e.terminationStatus
|
|
836
836
|
),
|
|
837
|
-
terminationInformation: c(e, "terminationInformation") ?
|
|
837
|
+
terminationInformation: c(e, "terminationInformation") ? $t(
|
|
838
838
|
e.terminationInformation
|
|
839
839
|
) : void 0
|
|
840
840
|
};
|
|
@@ -848,18 +848,18 @@ function fr(e) {
|
|
|
848
848
|
counterPartyAddress: e.counterPartyAddress,
|
|
849
849
|
counterPartyId: e.counterPartyId,
|
|
850
850
|
contractSigningDate: e.contractSigningDate.toISOString(),
|
|
851
|
-
asset:
|
|
851
|
+
asset: De(e.asset),
|
|
852
852
|
contractPolicy: Ue(e.contractPolicy),
|
|
853
853
|
transferProcesses: e.transferProcesses.map(
|
|
854
|
-
|
|
854
|
+
Yt
|
|
855
855
|
),
|
|
856
856
|
terminationStatus: e.terminationStatus,
|
|
857
|
-
terminationInformation:
|
|
857
|
+
terminationInformation: zt(
|
|
858
858
|
e.terminationInformation
|
|
859
859
|
)
|
|
860
860
|
};
|
|
861
861
|
}
|
|
862
|
-
function
|
|
862
|
+
function Ga(e) {
|
|
863
863
|
let t = !0;
|
|
864
864
|
return t = t && "contractAgreements" in e, t;
|
|
865
865
|
}
|
|
@@ -869,11 +869,11 @@ function pr(e) {
|
|
|
869
869
|
function mr(e, t) {
|
|
870
870
|
return e == null ? e : {
|
|
871
871
|
contractAgreements: e.contractAgreements.map(
|
|
872
|
-
|
|
872
|
+
We
|
|
873
873
|
)
|
|
874
874
|
};
|
|
875
875
|
}
|
|
876
|
-
function
|
|
876
|
+
function Qa(e) {
|
|
877
877
|
if (e !== void 0)
|
|
878
878
|
return e === null ? null : {
|
|
879
879
|
contractAgreements: e.contractAgreements.map(
|
|
@@ -889,7 +889,7 @@ function Wa(e) {
|
|
|
889
889
|
}
|
|
890
890
|
function hr(e, t) {
|
|
891
891
|
return e == null ? e : {
|
|
892
|
-
terminationStatus: c(e, "terminationStatus") ?
|
|
892
|
+
terminationStatus: c(e, "terminationStatus") ? Ge(e.terminationStatus) : void 0
|
|
893
893
|
};
|
|
894
894
|
}
|
|
895
895
|
function gr(e) {
|
|
@@ -924,7 +924,7 @@ function wr(e, t) {
|
|
|
924
924
|
valueList: c(e, "valueList") ? e.valueList : void 0
|
|
925
925
|
};
|
|
926
926
|
}
|
|
927
|
-
function
|
|
927
|
+
function Cr(e) {
|
|
928
928
|
if (e !== void 0)
|
|
929
929
|
return e === null ? null : {
|
|
930
930
|
type: e.type,
|
|
@@ -937,7 +937,7 @@ const eo = {
|
|
|
937
937
|
In: "IN",
|
|
938
938
|
Like: "LIKE"
|
|
939
939
|
};
|
|
940
|
-
function
|
|
940
|
+
function Tr(e) {
|
|
941
941
|
return _r(e);
|
|
942
942
|
}
|
|
943
943
|
function _r(e, t) {
|
|
@@ -950,29 +950,29 @@ function ro(e) {
|
|
|
950
950
|
let t = !0;
|
|
951
951
|
return t = t && "operandLeft" in e, t = t && "operator" in e, t = t && "operandRight" in e, t;
|
|
952
952
|
}
|
|
953
|
-
function
|
|
954
|
-
return
|
|
953
|
+
function Ye(e) {
|
|
954
|
+
return Ir(e);
|
|
955
955
|
}
|
|
956
|
-
function
|
|
956
|
+
function Ir(e, t) {
|
|
957
957
|
return e == null ? e : {
|
|
958
958
|
operandLeft: e.operandLeft,
|
|
959
|
-
operator:
|
|
959
|
+
operator: Tr(e.operator),
|
|
960
960
|
operandRight: Sr(e.operandRight)
|
|
961
961
|
};
|
|
962
962
|
}
|
|
963
|
-
function
|
|
963
|
+
function Xe(e) {
|
|
964
964
|
if (e !== void 0)
|
|
965
965
|
return e === null ? null : {
|
|
966
966
|
operandLeft: e.operandLeft,
|
|
967
967
|
operator: e.operator,
|
|
968
|
-
operandRight:
|
|
968
|
+
operandRight: Cr(e.operandRight)
|
|
969
969
|
};
|
|
970
970
|
}
|
|
971
971
|
function no(e) {
|
|
972
972
|
let t = !0;
|
|
973
973
|
return t = t && "contractDefinitionId" in e, t = t && "accessPolicyId" in e, t = t && "contractPolicyId" in e, t = t && "assetSelector" in e, t;
|
|
974
974
|
}
|
|
975
|
-
function
|
|
975
|
+
function Pr(e) {
|
|
976
976
|
return Or(e);
|
|
977
977
|
}
|
|
978
978
|
function Or(e, t) {
|
|
@@ -981,7 +981,7 @@ function Or(e, t) {
|
|
|
981
981
|
accessPolicyId: e.accessPolicyId,
|
|
982
982
|
contractPolicyId: e.contractPolicyId,
|
|
983
983
|
assetSelector: e.assetSelector.map(
|
|
984
|
-
|
|
984
|
+
Ye
|
|
985
985
|
)
|
|
986
986
|
};
|
|
987
987
|
}
|
|
@@ -992,7 +992,7 @@ function Nr(e) {
|
|
|
992
992
|
accessPolicyId: e.accessPolicyId,
|
|
993
993
|
contractPolicyId: e.contractPolicyId,
|
|
994
994
|
assetSelector: e.assetSelector.map(
|
|
995
|
-
|
|
995
|
+
Xe
|
|
996
996
|
)
|
|
997
997
|
};
|
|
998
998
|
}
|
|
@@ -1000,13 +1000,13 @@ function io(e) {
|
|
|
1000
1000
|
let t = !0;
|
|
1001
1001
|
return t = t && "contractDefinitions" in e, t;
|
|
1002
1002
|
}
|
|
1003
|
-
function
|
|
1004
|
-
return
|
|
1003
|
+
function Ar(e) {
|
|
1004
|
+
return br(e);
|
|
1005
1005
|
}
|
|
1006
|
-
function
|
|
1006
|
+
function br(e, t) {
|
|
1007
1007
|
return e == null ? e : {
|
|
1008
1008
|
contractDefinitions: e.contractDefinitions.map(
|
|
1009
|
-
|
|
1009
|
+
Pr
|
|
1010
1010
|
)
|
|
1011
1011
|
};
|
|
1012
1012
|
}
|
|
@@ -1023,15 +1023,15 @@ function oo(e) {
|
|
|
1023
1023
|
return t = t && "contractDefinitionId" in e, t = t && "contractPolicyId" in e, t = t && "accessPolicyId" in e, t = t && "assetSelector" in e, t;
|
|
1024
1024
|
}
|
|
1025
1025
|
function so(e) {
|
|
1026
|
-
return
|
|
1026
|
+
return Dr(e);
|
|
1027
1027
|
}
|
|
1028
|
-
function
|
|
1028
|
+
function Dr(e, t) {
|
|
1029
1029
|
return e == null ? e : {
|
|
1030
1030
|
contractDefinitionId: e.contractDefinitionId,
|
|
1031
1031
|
contractPolicyId: e.contractPolicyId,
|
|
1032
1032
|
accessPolicyId: e.accessPolicyId,
|
|
1033
1033
|
assetSelector: e.assetSelector.map(
|
|
1034
|
-
|
|
1034
|
+
Ye
|
|
1035
1035
|
)
|
|
1036
1036
|
};
|
|
1037
1037
|
}
|
|
@@ -1042,7 +1042,7 @@ function xr(e) {
|
|
|
1042
1042
|
contractPolicyId: e.contractPolicyId,
|
|
1043
1043
|
accessPolicyId: e.accessPolicyId,
|
|
1044
1044
|
assetSelector: e.assetSelector.map(
|
|
1045
|
-
|
|
1045
|
+
Xe
|
|
1046
1046
|
)
|
|
1047
1047
|
};
|
|
1048
1048
|
}
|
|
@@ -1177,9 +1177,9 @@ function vo(e) {
|
|
|
1177
1177
|
return t = t && "numTotal" in e, t = t && "numRunning" in e, t = t && "numOk" in e, t = t && "numError" in e, t;
|
|
1178
1178
|
}
|
|
1179
1179
|
function Ee(e) {
|
|
1180
|
-
return
|
|
1180
|
+
return Gr(e);
|
|
1181
1181
|
}
|
|
1182
|
-
function
|
|
1182
|
+
function Gr(e, t) {
|
|
1183
1183
|
return e == null ? e : {
|
|
1184
1184
|
numTotal: e.numTotal,
|
|
1185
1185
|
numRunning: e.numRunning,
|
|
@@ -1200,7 +1200,7 @@ function So(e) {
|
|
|
1200
1200
|
let t = !0;
|
|
1201
1201
|
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;
|
|
1202
1202
|
}
|
|
1203
|
-
function
|
|
1203
|
+
function Qr(e) {
|
|
1204
1204
|
return Kr(e);
|
|
1205
1205
|
}
|
|
1206
1206
|
function Kr(e, t) {
|
|
@@ -1256,7 +1256,7 @@ function wo(e) {
|
|
|
1256
1256
|
connectorMiwConfig: Br(e.connectorMiwConfig)
|
|
1257
1257
|
};
|
|
1258
1258
|
}
|
|
1259
|
-
const
|
|
1259
|
+
const Co = {
|
|
1260
1260
|
HttpData: "HTTP_DATA",
|
|
1261
1261
|
OnRequest: "ON_REQUEST",
|
|
1262
1262
|
Custom: "CUSTOM"
|
|
@@ -1267,14 +1267,14 @@ function Wr(e) {
|
|
|
1267
1267
|
function Yr(e, t) {
|
|
1268
1268
|
return e;
|
|
1269
1269
|
}
|
|
1270
|
-
function
|
|
1270
|
+
function To(e) {
|
|
1271
1271
|
return e;
|
|
1272
1272
|
}
|
|
1273
1273
|
function _o(e) {
|
|
1274
1274
|
let t = !0;
|
|
1275
1275
|
return t = t && "id" in e, t;
|
|
1276
1276
|
}
|
|
1277
|
-
function
|
|
1277
|
+
function Ie(e) {
|
|
1278
1278
|
return Xr(e);
|
|
1279
1279
|
}
|
|
1280
1280
|
function Xr(e, t) {
|
|
@@ -1283,14 +1283,14 @@ function Xr(e, t) {
|
|
|
1283
1283
|
available: c(e, "available") ? e.available : void 0
|
|
1284
1284
|
};
|
|
1285
1285
|
}
|
|
1286
|
-
function
|
|
1286
|
+
function Io(e) {
|
|
1287
1287
|
if (e !== void 0)
|
|
1288
1288
|
return e === null ? null : {
|
|
1289
1289
|
id: e.id,
|
|
1290
1290
|
available: e.available
|
|
1291
1291
|
};
|
|
1292
1292
|
}
|
|
1293
|
-
function
|
|
1293
|
+
function Po(e) {
|
|
1294
1294
|
let t = !0;
|
|
1295
1295
|
return t = t && "id" in e, t = t && "lastUpdatedDate" in e, t;
|
|
1296
1296
|
}
|
|
@@ -1314,7 +1314,7 @@ function No(e) {
|
|
|
1314
1314
|
let t = !0;
|
|
1315
1315
|
return t = t && "contractAgreementId" in e, t = t && "transferProcessRequestJsonLd" in e, t;
|
|
1316
1316
|
}
|
|
1317
|
-
function
|
|
1317
|
+
function Ao(e) {
|
|
1318
1318
|
return en(e);
|
|
1319
1319
|
}
|
|
1320
1320
|
function en(e, t) {
|
|
@@ -1330,11 +1330,11 @@ function tn(e) {
|
|
|
1330
1330
|
transferProcessRequestJsonLd: e.transferProcessRequestJsonLd
|
|
1331
1331
|
};
|
|
1332
1332
|
}
|
|
1333
|
-
function
|
|
1333
|
+
function bo(e) {
|
|
1334
1334
|
let t = !0;
|
|
1335
1335
|
return t = t && "contractAgreementId" in e, t = t && "dataSinkProperties" in e, t = t && "transferProcessProperties" in e, t;
|
|
1336
1336
|
}
|
|
1337
|
-
function
|
|
1337
|
+
function Do(e) {
|
|
1338
1338
|
return rn(e);
|
|
1339
1339
|
}
|
|
1340
1340
|
function rn(e, t) {
|
|
@@ -1431,7 +1431,7 @@ function fn(e) {
|
|
|
1431
1431
|
function pn(e, t) {
|
|
1432
1432
|
return e == null ? e : {
|
|
1433
1433
|
constraints: c(e, "constraints") ? e.constraints.map(
|
|
1434
|
-
|
|
1434
|
+
Qe
|
|
1435
1435
|
) : void 0
|
|
1436
1436
|
};
|
|
1437
1437
|
}
|
|
@@ -1488,9 +1488,9 @@ function Mo(e) {
|
|
|
1488
1488
|
return t = t && "policies" in e, t;
|
|
1489
1489
|
}
|
|
1490
1490
|
function wn(e) {
|
|
1491
|
-
return
|
|
1491
|
+
return Cn(e);
|
|
1492
1492
|
}
|
|
1493
|
-
function
|
|
1493
|
+
function Cn(e, t) {
|
|
1494
1494
|
return e == null ? e : {
|
|
1495
1495
|
policies: e.policies.map(
|
|
1496
1496
|
yn
|
|
@@ -1506,7 +1506,7 @@ function Zo(e) {
|
|
|
1506
1506
|
function Vo(e) {
|
|
1507
1507
|
return !0;
|
|
1508
1508
|
}
|
|
1509
|
-
function
|
|
1509
|
+
function Tn(e) {
|
|
1510
1510
|
return _n(e);
|
|
1511
1511
|
}
|
|
1512
1512
|
function _n(e, t) {
|
|
@@ -1515,7 +1515,7 @@ function _n(e, t) {
|
|
|
1515
1515
|
rawValue: c(e, "rawValue") ? e.rawValue : void 0
|
|
1516
1516
|
};
|
|
1517
1517
|
}
|
|
1518
|
-
function
|
|
1518
|
+
function In(e) {
|
|
1519
1519
|
if (e !== void 0)
|
|
1520
1520
|
return e === null ? null : {
|
|
1521
1521
|
secretName: e.secretName,
|
|
@@ -1526,7 +1526,7 @@ function $o(e) {
|
|
|
1526
1526
|
let t = !0;
|
|
1527
1527
|
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;
|
|
1528
1528
|
}
|
|
1529
|
-
function
|
|
1529
|
+
function Pn(e) {
|
|
1530
1530
|
return On(e);
|
|
1531
1531
|
}
|
|
1532
1532
|
function On(e, t) {
|
|
@@ -1564,13 +1564,13 @@ function Ho(e) {
|
|
|
1564
1564
|
let t = !0;
|
|
1565
1565
|
return t = t && "transferEntries" in e, t;
|
|
1566
1566
|
}
|
|
1567
|
-
function
|
|
1568
|
-
return
|
|
1567
|
+
function An(e) {
|
|
1568
|
+
return bn(e);
|
|
1569
1569
|
}
|
|
1570
|
-
function
|
|
1570
|
+
function bn(e, t) {
|
|
1571
1571
|
return e == null ? e : {
|
|
1572
1572
|
transferEntries: e.transferEntries.map(
|
|
1573
|
-
|
|
1573
|
+
Pn
|
|
1574
1574
|
)
|
|
1575
1575
|
};
|
|
1576
1576
|
}
|
|
@@ -1590,16 +1590,16 @@ const Bo = {
|
|
|
1590
1590
|
Delete: "DELETE",
|
|
1591
1591
|
Options: "OPTIONS"
|
|
1592
1592
|
};
|
|
1593
|
-
function
|
|
1593
|
+
function Dn(e) {
|
|
1594
1594
|
return xn(e);
|
|
1595
1595
|
}
|
|
1596
1596
|
function xn(e, t) {
|
|
1597
1597
|
return e;
|
|
1598
1598
|
}
|
|
1599
|
-
function
|
|
1599
|
+
function Go(e) {
|
|
1600
1600
|
return e;
|
|
1601
1601
|
}
|
|
1602
|
-
function
|
|
1602
|
+
function Qo(e) {
|
|
1603
1603
|
let t = !0;
|
|
1604
1604
|
return t = t && "baseUrl" in e, t;
|
|
1605
1605
|
}
|
|
@@ -1608,11 +1608,11 @@ function Rn(e) {
|
|
|
1608
1608
|
}
|
|
1609
1609
|
function kn(e, t) {
|
|
1610
1610
|
return e == null ? e : {
|
|
1611
|
-
method: c(e, "method") ?
|
|
1611
|
+
method: c(e, "method") ? Dn(e.method) : void 0,
|
|
1612
1612
|
baseUrl: e.baseUrl,
|
|
1613
1613
|
queryString: c(e, "queryString") ? e.queryString : void 0,
|
|
1614
1614
|
authHeaderName: c(e, "authHeaderName") ? e.authHeaderName : void 0,
|
|
1615
|
-
authHeaderValue: c(e, "authHeaderValue") ?
|
|
1615
|
+
authHeaderValue: c(e, "authHeaderValue") ? Tn(e.authHeaderValue) : void 0,
|
|
1616
1616
|
headers: c(e, "headers") ? e.headers : void 0,
|
|
1617
1617
|
enableMethodParameterization: c(
|
|
1618
1618
|
e,
|
|
@@ -1633,7 +1633,7 @@ function Un(e) {
|
|
|
1633
1633
|
baseUrl: e.baseUrl,
|
|
1634
1634
|
queryString: e.queryString,
|
|
1635
1635
|
authHeaderName: e.authHeaderName,
|
|
1636
|
-
authHeaderValue:
|
|
1636
|
+
authHeaderValue: In(e.authHeaderValue),
|
|
1637
1637
|
headers: e.headers,
|
|
1638
1638
|
enableMethodParameterization: e.enableMethodParameterization,
|
|
1639
1639
|
enablePathParameterization: e.enablePathParameterization,
|
|
@@ -1665,7 +1665,7 @@ function Wo(e) {
|
|
|
1665
1665
|
let t = !0;
|
|
1666
1666
|
return t = t && "type" in e, t;
|
|
1667
1667
|
}
|
|
1668
|
-
function
|
|
1668
|
+
function je(e) {
|
|
1669
1669
|
return Ln(e);
|
|
1670
1670
|
}
|
|
1671
1671
|
function Ln(e, t) {
|
|
@@ -1676,7 +1676,7 @@ function Ln(e, t) {
|
|
|
1676
1676
|
customProperties: c(e, "customProperties") ? e.customProperties : void 0
|
|
1677
1677
|
};
|
|
1678
1678
|
}
|
|
1679
|
-
function
|
|
1679
|
+
function et(e) {
|
|
1680
1680
|
if (e !== void 0)
|
|
1681
1681
|
return e === null ? null : {
|
|
1682
1682
|
type: e.type,
|
|
@@ -1694,7 +1694,7 @@ function Xo(e) {
|
|
|
1694
1694
|
}
|
|
1695
1695
|
function qn(e, t) {
|
|
1696
1696
|
return e == null ? e : {
|
|
1697
|
-
dataSource:
|
|
1697
|
+
dataSource: je(e.dataSource),
|
|
1698
1698
|
id: e.id,
|
|
1699
1699
|
title: c(e, "title") ? e.title : void 0,
|
|
1700
1700
|
language: c(e, "language") ? e.language : void 0,
|
|
@@ -1732,10 +1732,10 @@ function qn(e, t) {
|
|
|
1732
1732
|
) ? e.privateCustomJsonLdAsString : void 0
|
|
1733
1733
|
};
|
|
1734
1734
|
}
|
|
1735
|
-
function
|
|
1735
|
+
function tt(e) {
|
|
1736
1736
|
if (e !== void 0)
|
|
1737
1737
|
return e === null ? null : {
|
|
1738
|
-
dataSource:
|
|
1738
|
+
dataSource: et(e.dataSource),
|
|
1739
1739
|
id: e.id,
|
|
1740
1740
|
title: e.title,
|
|
1741
1741
|
language: e.language,
|
|
@@ -1775,7 +1775,7 @@ function es(e) {
|
|
|
1775
1775
|
}
|
|
1776
1776
|
function Mn(e, t) {
|
|
1777
1777
|
return e == null ? e : {
|
|
1778
|
-
dataSourceOverrideOrNull: c(e, "dataSourceOverrideOrNull") ?
|
|
1778
|
+
dataSourceOverrideOrNull: c(e, "dataSourceOverrideOrNull") ? je(e.dataSourceOverrideOrNull) : void 0,
|
|
1779
1779
|
title: c(e, "title") ? e.title : void 0,
|
|
1780
1780
|
language: c(e, "language") ? e.language : void 0,
|
|
1781
1781
|
description: c(e, "description") ? e.description : void 0,
|
|
@@ -1815,7 +1815,7 @@ function Mn(e, t) {
|
|
|
1815
1815
|
function Zn(e) {
|
|
1816
1816
|
if (e !== void 0)
|
|
1817
1817
|
return e === null ? null : {
|
|
1818
|
-
dataSourceOverrideOrNull:
|
|
1818
|
+
dataSourceOverrideOrNull: et(
|
|
1819
1819
|
e.dataSourceOverrideOrNull
|
|
1820
1820
|
),
|
|
1821
1821
|
title: e.title,
|
|
@@ -1896,14 +1896,14 @@ function is(e) {
|
|
|
1896
1896
|
let t = !0;
|
|
1897
1897
|
return t = t && "endpoint" in e, t = t && "participantId" in e, t = t && "asset" in e, t = t && "contractOffers" in e, t;
|
|
1898
1898
|
}
|
|
1899
|
-
function
|
|
1899
|
+
function rt(e) {
|
|
1900
1900
|
return Bn(e);
|
|
1901
1901
|
}
|
|
1902
1902
|
function Bn(e, t) {
|
|
1903
1903
|
return e == null ? e : {
|
|
1904
1904
|
endpoint: e.endpoint,
|
|
1905
1905
|
participantId: e.participantId,
|
|
1906
|
-
asset:
|
|
1906
|
+
asset: Ce(e.asset),
|
|
1907
1907
|
contractOffers: e.contractOffers.map(
|
|
1908
1908
|
$n
|
|
1909
1909
|
)
|
|
@@ -1914,13 +1914,13 @@ function as(e) {
|
|
|
1914
1914
|
return e === null ? null : {
|
|
1915
1915
|
endpoint: e.endpoint,
|
|
1916
1916
|
participantId: e.participantId,
|
|
1917
|
-
asset:
|
|
1917
|
+
asset: De(e.asset),
|
|
1918
1918
|
contractOffers: e.contractOffers.map(
|
|
1919
1919
|
zn
|
|
1920
1920
|
)
|
|
1921
1921
|
};
|
|
1922
1922
|
}
|
|
1923
|
-
class
|
|
1923
|
+
class Gn extends W {
|
|
1924
1924
|
/**
|
|
1925
1925
|
* Available and used resources of a connector.
|
|
1926
1926
|
*/
|
|
@@ -1934,9 +1934,9 @@ class Qn extends W {
|
|
|
1934
1934
|
},
|
|
1935
1935
|
t
|
|
1936
1936
|
);
|
|
1937
|
-
return new
|
|
1937
|
+
return new C(
|
|
1938
1938
|
i,
|
|
1939
|
-
(a) =>
|
|
1939
|
+
(a) => Lt(a)
|
|
1940
1940
|
);
|
|
1941
1941
|
}
|
|
1942
1942
|
/**
|
|
@@ -1951,12 +1951,12 @@ class Qn extends W {
|
|
|
1951
1951
|
*/
|
|
1952
1952
|
async fileUploadCreateAssetRaw(t, r) {
|
|
1953
1953
|
if (t.blobId === null || t.blobId === void 0)
|
|
1954
|
-
throw new
|
|
1954
|
+
throw new P(
|
|
1955
1955
|
"blobId",
|
|
1956
1956
|
"Required parameter requestParameters.blobId was null or undefined when calling fileUploadCreateAsset."
|
|
1957
1957
|
);
|
|
1958
1958
|
if (t.uiAssetCreateRequest === null || t.uiAssetCreateRequest === void 0)
|
|
1959
|
-
throw new
|
|
1959
|
+
throw new P(
|
|
1960
1960
|
"uiAssetCreateRequest",
|
|
1961
1961
|
"Required parameter requestParameters.uiAssetCreateRequest was null or undefined when calling fileUploadCreateAsset."
|
|
1962
1962
|
);
|
|
@@ -1971,13 +1971,13 @@ class Qn extends W {
|
|
|
1971
1971
|
method: "POST",
|
|
1972
1972
|
headers: i,
|
|
1973
1973
|
query: n,
|
|
1974
|
-
body:
|
|
1974
|
+
body: tt(
|
|
1975
1975
|
t.uiAssetCreateRequest
|
|
1976
1976
|
)
|
|
1977
1977
|
},
|
|
1978
1978
|
r
|
|
1979
1979
|
);
|
|
1980
|
-
return new
|
|
1980
|
+
return new St(a);
|
|
1981
1981
|
}
|
|
1982
1982
|
/**
|
|
1983
1983
|
* Creates an asset using the uploaded file as data source.
|
|
@@ -2000,7 +2000,7 @@ class Qn extends W {
|
|
|
2000
2000
|
},
|
|
2001
2001
|
t
|
|
2002
2002
|
);
|
|
2003
|
-
return this.isJsonMime(i.headers.get("content-type")) ? new
|
|
2003
|
+
return this.isJsonMime(i.headers.get("content-type")) ? new C(i) : new wt(i);
|
|
2004
2004
|
}
|
|
2005
2005
|
/**
|
|
2006
2006
|
* 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.
|
|
@@ -2010,7 +2010,7 @@ class Qn extends W {
|
|
|
2010
2010
|
return await (await this.fileUploadRequestSasTokenRaw(t)).value();
|
|
2011
2011
|
}
|
|
2012
2012
|
}
|
|
2013
|
-
class
|
|
2013
|
+
class Qn extends W {
|
|
2014
2014
|
/**
|
|
2015
2015
|
* Create a new Asset
|
|
2016
2016
|
*/
|
|
@@ -2023,13 +2023,13 @@ class Gn extends W {
|
|
|
2023
2023
|
method: "POST",
|
|
2024
2024
|
headers: i,
|
|
2025
2025
|
query: n,
|
|
2026
|
-
body:
|
|
2026
|
+
body: tt(
|
|
2027
2027
|
t.uiAssetCreateRequest
|
|
2028
2028
|
)
|
|
2029
2029
|
},
|
|
2030
2030
|
r
|
|
2031
2031
|
);
|
|
2032
|
-
return new
|
|
2032
|
+
return new C(
|
|
2033
2033
|
a,
|
|
2034
2034
|
(o) => N(o)
|
|
2035
2035
|
);
|
|
@@ -2061,7 +2061,7 @@ class Gn extends W {
|
|
|
2061
2061
|
},
|
|
2062
2062
|
r
|
|
2063
2063
|
);
|
|
2064
|
-
return new
|
|
2064
|
+
return new C(
|
|
2065
2065
|
a,
|
|
2066
2066
|
(o) => N(o)
|
|
2067
2067
|
);
|
|
@@ -2093,7 +2093,7 @@ class Gn extends W {
|
|
|
2093
2093
|
},
|
|
2094
2094
|
r
|
|
2095
2095
|
);
|
|
2096
|
-
return new
|
|
2096
|
+
return new C(
|
|
2097
2097
|
a,
|
|
2098
2098
|
(o) => N(o)
|
|
2099
2099
|
);
|
|
@@ -2125,7 +2125,7 @@ class Gn extends W {
|
|
|
2125
2125
|
},
|
|
2126
2126
|
r
|
|
2127
2127
|
);
|
|
2128
|
-
return new
|
|
2128
|
+
return new C(
|
|
2129
2129
|
a,
|
|
2130
2130
|
(o) => N(o)
|
|
2131
2131
|
);
|
|
@@ -2144,7 +2144,7 @@ class Gn extends W {
|
|
|
2144
2144
|
*/
|
|
2145
2145
|
async deleteAssetRaw(t, r) {
|
|
2146
2146
|
if (t.assetId === null || t.assetId === void 0)
|
|
2147
|
-
throw new
|
|
2147
|
+
throw new P(
|
|
2148
2148
|
"assetId",
|
|
2149
2149
|
"Required parameter requestParameters.assetId was null or undefined when calling deleteAsset."
|
|
2150
2150
|
);
|
|
@@ -2160,7 +2160,7 @@ class Gn extends W {
|
|
|
2160
2160
|
},
|
|
2161
2161
|
r
|
|
2162
2162
|
);
|
|
2163
|
-
return new
|
|
2163
|
+
return new C(
|
|
2164
2164
|
a,
|
|
2165
2165
|
(o) => N(o)
|
|
2166
2166
|
);
|
|
@@ -2179,7 +2179,7 @@ class Gn extends W {
|
|
|
2179
2179
|
*/
|
|
2180
2180
|
async deleteContractDefinitionRaw(t, r) {
|
|
2181
2181
|
if (t.contractDefinitionId === null || t.contractDefinitionId === void 0)
|
|
2182
|
-
throw new
|
|
2182
|
+
throw new P(
|
|
2183
2183
|
"contractDefinitionId",
|
|
2184
2184
|
"Required parameter requestParameters.contractDefinitionId was null or undefined when calling deleteContractDefinition."
|
|
2185
2185
|
);
|
|
@@ -2197,7 +2197,7 @@ class Gn extends W {
|
|
|
2197
2197
|
},
|
|
2198
2198
|
r
|
|
2199
2199
|
);
|
|
2200
|
-
return new
|
|
2200
|
+
return new C(
|
|
2201
2201
|
a,
|
|
2202
2202
|
(o) => N(o)
|
|
2203
2203
|
);
|
|
@@ -2216,7 +2216,7 @@ class Gn extends W {
|
|
|
2216
2216
|
*/
|
|
2217
2217
|
async deletePolicyDefinitionRaw(t, r) {
|
|
2218
2218
|
if (t.policyId === null || t.policyId === void 0)
|
|
2219
|
-
throw new
|
|
2219
|
+
throw new P(
|
|
2220
2220
|
"policyId",
|
|
2221
2221
|
"Required parameter requestParameters.policyId was null or undefined when calling deletePolicyDefinition."
|
|
2222
2222
|
);
|
|
@@ -2232,7 +2232,7 @@ class Gn extends W {
|
|
|
2232
2232
|
},
|
|
2233
2233
|
r
|
|
2234
2234
|
);
|
|
2235
|
-
return new
|
|
2235
|
+
return new C(
|
|
2236
2236
|
a,
|
|
2237
2237
|
(o) => N(o)
|
|
2238
2238
|
);
|
|
@@ -2251,7 +2251,7 @@ class Gn extends W {
|
|
|
2251
2251
|
*/
|
|
2252
2252
|
async editAssetRaw(t, r) {
|
|
2253
2253
|
if (t.assetId === null || t.assetId === void 0)
|
|
2254
|
-
throw new
|
|
2254
|
+
throw new P(
|
|
2255
2255
|
"assetId",
|
|
2256
2256
|
"Required parameter requestParameters.assetId was null or undefined when calling editAsset."
|
|
2257
2257
|
);
|
|
@@ -2272,7 +2272,7 @@ class Gn extends W {
|
|
|
2272
2272
|
},
|
|
2273
2273
|
r
|
|
2274
2274
|
);
|
|
2275
|
-
return new
|
|
2275
|
+
return new C(
|
|
2276
2276
|
a,
|
|
2277
2277
|
(o) => N(o)
|
|
2278
2278
|
);
|
|
@@ -2299,9 +2299,9 @@ class Gn extends W {
|
|
|
2299
2299
|
},
|
|
2300
2300
|
t
|
|
2301
2301
|
);
|
|
2302
|
-
return new
|
|
2302
|
+
return new C(
|
|
2303
2303
|
i,
|
|
2304
|
-
(a) =>
|
|
2304
|
+
(a) => It(a)
|
|
2305
2305
|
);
|
|
2306
2306
|
}
|
|
2307
2307
|
/**
|
|
@@ -2325,9 +2325,9 @@ class Gn extends W {
|
|
|
2325
2325
|
},
|
|
2326
2326
|
r
|
|
2327
2327
|
);
|
|
2328
|
-
return new
|
|
2328
|
+
return new C(
|
|
2329
2329
|
a,
|
|
2330
|
-
(o) => o.map(
|
|
2330
|
+
(o) => o.map(rt)
|
|
2331
2331
|
);
|
|
2332
2332
|
}
|
|
2333
2333
|
/**
|
|
@@ -2339,6 +2339,43 @@ class Gn extends W {
|
|
|
2339
2339
|
r
|
|
2340
2340
|
)).value();
|
|
2341
2341
|
}
|
|
2342
|
+
/**
|
|
2343
|
+
* Get a single contract agreement card by its identifier
|
|
2344
|
+
*/
|
|
2345
|
+
async getContractAgreementCardRaw(t, r) {
|
|
2346
|
+
if (t.contractAgreementId === null || t.contractAgreementId === void 0)
|
|
2347
|
+
throw new P(
|
|
2348
|
+
"contractAgreementId",
|
|
2349
|
+
"Required parameter requestParameters.contractAgreementId was null or undefined when calling getContractAgreementCard."
|
|
2350
|
+
);
|
|
2351
|
+
const n = {}, i = {}, a = await this.request(
|
|
2352
|
+
{
|
|
2353
|
+
path: "/wrapper/ui/pages/contract-agreement-page/{contractAgreementId}".replace(
|
|
2354
|
+
"{contractAgreementId}",
|
|
2355
|
+
encodeURIComponent(
|
|
2356
|
+
String(t.contractAgreementId)
|
|
2357
|
+
)
|
|
2358
|
+
),
|
|
2359
|
+
method: "GET",
|
|
2360
|
+
headers: i,
|
|
2361
|
+
query: n
|
|
2362
|
+
},
|
|
2363
|
+
r
|
|
2364
|
+
);
|
|
2365
|
+
return new C(
|
|
2366
|
+
a,
|
|
2367
|
+
(o) => We(o)
|
|
2368
|
+
);
|
|
2369
|
+
}
|
|
2370
|
+
/**
|
|
2371
|
+
* Get a single contract agreement card by its identifier
|
|
2372
|
+
*/
|
|
2373
|
+
async getContractAgreementCard(t, r) {
|
|
2374
|
+
return await (await this.getContractAgreementCardRaw(
|
|
2375
|
+
t,
|
|
2376
|
+
r
|
|
2377
|
+
)).value();
|
|
2378
|
+
}
|
|
2342
2379
|
/**
|
|
2343
2380
|
* Collect filtered data for the Contract Agreement Page
|
|
2344
2381
|
*/
|
|
@@ -2357,7 +2394,7 @@ class Gn extends W {
|
|
|
2357
2394
|
},
|
|
2358
2395
|
r
|
|
2359
2396
|
);
|
|
2360
|
-
return new
|
|
2397
|
+
return new C(
|
|
2361
2398
|
a,
|
|
2362
2399
|
(o) => pr(o)
|
|
2363
2400
|
);
|
|
@@ -2384,9 +2421,9 @@ class Gn extends W {
|
|
|
2384
2421
|
},
|
|
2385
2422
|
t
|
|
2386
2423
|
);
|
|
2387
|
-
return new
|
|
2424
|
+
return new C(
|
|
2388
2425
|
i,
|
|
2389
|
-
(a) =>
|
|
2426
|
+
(a) => Ar(a)
|
|
2390
2427
|
);
|
|
2391
2428
|
}
|
|
2392
2429
|
/**
|
|
@@ -2400,7 +2437,7 @@ class Gn extends W {
|
|
|
2400
2437
|
*/
|
|
2401
2438
|
async getContractNegotiationRaw(t, r) {
|
|
2402
2439
|
if (t.contractNegotiationId === null || t.contractNegotiationId === void 0)
|
|
2403
|
-
throw new
|
|
2440
|
+
throw new P(
|
|
2404
2441
|
"contractNegotiationId",
|
|
2405
2442
|
"Required parameter requestParameters.contractNegotiationId was null or undefined when calling getContractNegotiation."
|
|
2406
2443
|
);
|
|
@@ -2418,7 +2455,7 @@ class Gn extends W {
|
|
|
2418
2455
|
},
|
|
2419
2456
|
r
|
|
2420
2457
|
);
|
|
2421
|
-
return new
|
|
2458
|
+
return new C(
|
|
2422
2459
|
a,
|
|
2423
2460
|
(o) => Fe(o)
|
|
2424
2461
|
);
|
|
@@ -2445,9 +2482,9 @@ class Gn extends W {
|
|
|
2445
2482
|
},
|
|
2446
2483
|
t
|
|
2447
2484
|
);
|
|
2448
|
-
return new
|
|
2485
|
+
return new C(
|
|
2449
2486
|
i,
|
|
2450
|
-
(a) =>
|
|
2487
|
+
(a) => Qr(a)
|
|
2451
2488
|
);
|
|
2452
2489
|
}
|
|
2453
2490
|
/**
|
|
@@ -2469,7 +2506,7 @@ class Gn extends W {
|
|
|
2469
2506
|
},
|
|
2470
2507
|
t
|
|
2471
2508
|
);
|
|
2472
|
-
return new
|
|
2509
|
+
return new C(
|
|
2473
2510
|
i,
|
|
2474
2511
|
(a) => wn(a)
|
|
2475
2512
|
);
|
|
@@ -2493,9 +2530,9 @@ class Gn extends W {
|
|
|
2493
2530
|
},
|
|
2494
2531
|
t
|
|
2495
2532
|
);
|
|
2496
|
-
return new
|
|
2533
|
+
return new C(
|
|
2497
2534
|
i,
|
|
2498
|
-
(a) =>
|
|
2535
|
+
(a) => An(a)
|
|
2499
2536
|
);
|
|
2500
2537
|
}
|
|
2501
2538
|
/**
|
|
@@ -2509,7 +2546,7 @@ class Gn extends W {
|
|
|
2509
2546
|
*/
|
|
2510
2547
|
async getTransferProcessAssetRaw(t, r) {
|
|
2511
2548
|
if (t.transferProcessId === null || t.transferProcessId === void 0)
|
|
2512
|
-
throw new
|
|
2549
|
+
throw new P(
|
|
2513
2550
|
"transferProcessId",
|
|
2514
2551
|
"Required parameter requestParameters.transferProcessId was null or undefined when calling getTransferProcessAsset."
|
|
2515
2552
|
);
|
|
@@ -2527,9 +2564,9 @@ class Gn extends W {
|
|
|
2527
2564
|
},
|
|
2528
2565
|
r
|
|
2529
2566
|
);
|
|
2530
|
-
return new
|
|
2567
|
+
return new C(
|
|
2531
2568
|
a,
|
|
2532
|
-
(o) =>
|
|
2569
|
+
(o) => Ce(o)
|
|
2533
2570
|
);
|
|
2534
2571
|
}
|
|
2535
2572
|
/**
|
|
@@ -2559,7 +2596,7 @@ class Gn extends W {
|
|
|
2559
2596
|
},
|
|
2560
2597
|
r
|
|
2561
2598
|
);
|
|
2562
|
-
return new
|
|
2599
|
+
return new C(
|
|
2563
2600
|
a,
|
|
2564
2601
|
(o) => Fe(o)
|
|
2565
2602
|
);
|
|
@@ -2591,7 +2628,7 @@ class Gn extends W {
|
|
|
2591
2628
|
},
|
|
2592
2629
|
r
|
|
2593
2630
|
);
|
|
2594
|
-
return new
|
|
2631
|
+
return new C(
|
|
2595
2632
|
a,
|
|
2596
2633
|
(o) => N(o)
|
|
2597
2634
|
);
|
|
@@ -2623,7 +2660,7 @@ class Gn extends W {
|
|
|
2623
2660
|
},
|
|
2624
2661
|
r
|
|
2625
2662
|
);
|
|
2626
|
-
return new
|
|
2663
|
+
return new C(
|
|
2627
2664
|
a,
|
|
2628
2665
|
(o) => N(o)
|
|
2629
2666
|
);
|
|
@@ -2642,7 +2679,7 @@ class Gn extends W {
|
|
|
2642
2679
|
*/
|
|
2643
2680
|
async isAssetIdAvailableRaw(t, r) {
|
|
2644
2681
|
if (t.assetId === null || t.assetId === void 0)
|
|
2645
|
-
throw new
|
|
2682
|
+
throw new P(
|
|
2646
2683
|
"assetId",
|
|
2647
2684
|
"Required parameter requestParameters.assetId was null or undefined when calling isAssetIdAvailable."
|
|
2648
2685
|
);
|
|
@@ -2658,9 +2695,9 @@ class Gn extends W {
|
|
|
2658
2695
|
},
|
|
2659
2696
|
r
|
|
2660
2697
|
);
|
|
2661
|
-
return new
|
|
2698
|
+
return new C(
|
|
2662
2699
|
a,
|
|
2663
|
-
(o) =>
|
|
2700
|
+
(o) => Ie(o)
|
|
2664
2701
|
);
|
|
2665
2702
|
}
|
|
2666
2703
|
/**
|
|
@@ -2677,7 +2714,7 @@ class Gn extends W {
|
|
|
2677
2714
|
*/
|
|
2678
2715
|
async isContractDefinitionIdAvailableRaw(t, r) {
|
|
2679
2716
|
if (t.contractDefinitionId === null || t.contractDefinitionId === void 0)
|
|
2680
|
-
throw new
|
|
2717
|
+
throw new P(
|
|
2681
2718
|
"contractDefinitionId",
|
|
2682
2719
|
"Required parameter requestParameters.contractDefinitionId was null or undefined when calling isContractDefinitionIdAvailable."
|
|
2683
2720
|
);
|
|
@@ -2695,9 +2732,9 @@ class Gn extends W {
|
|
|
2695
2732
|
},
|
|
2696
2733
|
r
|
|
2697
2734
|
);
|
|
2698
|
-
return new
|
|
2735
|
+
return new C(
|
|
2699
2736
|
a,
|
|
2700
|
-
(o) =>
|
|
2737
|
+
(o) => Ie(o)
|
|
2701
2738
|
);
|
|
2702
2739
|
}
|
|
2703
2740
|
/**
|
|
@@ -2714,7 +2751,7 @@ class Gn extends W {
|
|
|
2714
2751
|
*/
|
|
2715
2752
|
async isPolicyIdAvailableRaw(t, r) {
|
|
2716
2753
|
if (t.policyId === null || t.policyId === void 0)
|
|
2717
|
-
throw new
|
|
2754
|
+
throw new P(
|
|
2718
2755
|
"policyId",
|
|
2719
2756
|
"Required parameter requestParameters.policyId was null or undefined when calling isPolicyIdAvailable."
|
|
2720
2757
|
);
|
|
@@ -2730,9 +2767,9 @@ class Gn extends W {
|
|
|
2730
2767
|
},
|
|
2731
2768
|
r
|
|
2732
2769
|
);
|
|
2733
|
-
return new
|
|
2770
|
+
return new C(
|
|
2734
2771
|
a,
|
|
2735
|
-
(o) =>
|
|
2772
|
+
(o) => Ie(o)
|
|
2736
2773
|
);
|
|
2737
2774
|
}
|
|
2738
2775
|
/**
|
|
@@ -2749,7 +2786,7 @@ class Gn extends W {
|
|
|
2749
2786
|
*/
|
|
2750
2787
|
async terminateContractAgreementRaw(t, r) {
|
|
2751
2788
|
if (t.contractAgreementId === null || t.contractAgreementId === void 0)
|
|
2752
|
-
throw new
|
|
2789
|
+
throw new P(
|
|
2753
2790
|
"contractAgreementId",
|
|
2754
2791
|
"Required parameter requestParameters.contractAgreementId was null or undefined when calling terminateContractAgreement."
|
|
2755
2792
|
);
|
|
@@ -2772,7 +2809,7 @@ class Gn extends W {
|
|
|
2772
2809
|
},
|
|
2773
2810
|
r
|
|
2774
2811
|
);
|
|
2775
|
-
return new
|
|
2812
|
+
return new C(
|
|
2776
2813
|
a,
|
|
2777
2814
|
(o) => N(o)
|
|
2778
2815
|
);
|
|
@@ -2801,7 +2838,7 @@ class Kn extends W {
|
|
|
2801
2838
|
},
|
|
2802
2839
|
t
|
|
2803
2840
|
);
|
|
2804
|
-
return new
|
|
2841
|
+
return new C(
|
|
2805
2842
|
i,
|
|
2806
2843
|
(a) => cn(a)
|
|
2807
2844
|
);
|
|
@@ -2825,7 +2862,7 @@ class Kn extends W {
|
|
|
2825
2862
|
},
|
|
2826
2863
|
t
|
|
2827
2864
|
);
|
|
2828
|
-
return new
|
|
2865
|
+
return new C(i);
|
|
2829
2866
|
}
|
|
2830
2867
|
/**
|
|
2831
2868
|
* List available functions in policies, prohibitions and obligations.
|
|
@@ -2838,7 +2875,7 @@ class Kn extends W {
|
|
|
2838
2875
|
*/
|
|
2839
2876
|
async queryCatalogRaw(t, r) {
|
|
2840
2877
|
if (t.catalogQuery === null || t.catalogQuery === void 0)
|
|
2841
|
-
throw new
|
|
2878
|
+
throw new P(
|
|
2842
2879
|
"catalogQuery",
|
|
2843
2880
|
"Required parameter requestParameters.catalogQuery was null or undefined when calling queryCatalog."
|
|
2844
2881
|
);
|
|
@@ -2850,13 +2887,13 @@ class Kn extends W {
|
|
|
2850
2887
|
method: "POST",
|
|
2851
2888
|
headers: i,
|
|
2852
2889
|
query: n,
|
|
2853
|
-
body:
|
|
2890
|
+
body: Ft(t.catalogQuery)
|
|
2854
2891
|
},
|
|
2855
2892
|
r
|
|
2856
2893
|
);
|
|
2857
|
-
return new
|
|
2894
|
+
return new C(
|
|
2858
2895
|
a,
|
|
2859
|
-
(o) => o.map(
|
|
2896
|
+
(o) => o.map(rt)
|
|
2860
2897
|
);
|
|
2861
2898
|
}
|
|
2862
2899
|
/**
|
|
@@ -2973,7 +3010,7 @@ const l = w.arrayToEnum([
|
|
|
2973
3010
|
"not_multiple_of",
|
|
2974
3011
|
"not_finite"
|
|
2975
3012
|
]), Wn = (e) => JSON.stringify(e, null, 2).replace(/"([^"]+)":/g, "$1:");
|
|
2976
|
-
class
|
|
3013
|
+
class b extends Error {
|
|
2977
3014
|
constructor(t) {
|
|
2978
3015
|
super(), this.issues = [], this.addIssue = (n) => {
|
|
2979
3016
|
this.issues = [...this.issues, n];
|
|
@@ -3028,7 +3065,7 @@ class D extends Error {
|
|
|
3028
3065
|
return this.flatten();
|
|
3029
3066
|
}
|
|
3030
3067
|
}
|
|
3031
|
-
|
|
3068
|
+
b.create = (e) => new b(e);
|
|
3032
3069
|
const Y = (e, t) => {
|
|
3033
3070
|
let r;
|
|
3034
3071
|
switch (e.code) {
|
|
@@ -3085,12 +3122,12 @@ const Y = (e, t) => {
|
|
|
3085
3122
|
}
|
|
3086
3123
|
return { message: r };
|
|
3087
3124
|
};
|
|
3088
|
-
let
|
|
3125
|
+
let nt = Y;
|
|
3089
3126
|
function Yn(e) {
|
|
3090
|
-
|
|
3127
|
+
nt = e;
|
|
3091
3128
|
}
|
|
3092
3129
|
function le() {
|
|
3093
|
-
return
|
|
3130
|
+
return nt;
|
|
3094
3131
|
}
|
|
3095
3132
|
const fe = (e) => {
|
|
3096
3133
|
const { data: t, path: r, errorMaps: n, issueData: i } = e, a = [...r, ...i.path || []], o = {
|
|
@@ -3163,7 +3200,7 @@ class _ {
|
|
|
3163
3200
|
}
|
|
3164
3201
|
const g = Object.freeze({
|
|
3165
3202
|
status: "aborted"
|
|
3166
|
-
}),
|
|
3203
|
+
}), it = (e) => ({ status: "dirty", value: e }), I = (e) => ({ status: "valid", value: e }), Ne = (e) => e.status === "aborted", Ae = (e) => e.status === "dirty", X = (e) => e.status === "valid", pe = (e) => typeof Promise < "u" && e instanceof Promise;
|
|
3167
3204
|
var m;
|
|
3168
3205
|
(function(e) {
|
|
3169
3206
|
e.errToObj = (t) => typeof t == "string" ? { message: t } : t || {}, e.toString = (t) => typeof t == "string" ? t : t == null ? void 0 : t.message;
|
|
@@ -3186,7 +3223,7 @@ const Le = (e, t) => {
|
|
|
3186
3223
|
get error() {
|
|
3187
3224
|
if (this._error)
|
|
3188
3225
|
return this._error;
|
|
3189
|
-
const r = new
|
|
3226
|
+
const r = new b(e.common.issues);
|
|
3190
3227
|
return this._error = r, this._error;
|
|
3191
3228
|
}
|
|
3192
3229
|
};
|
|
@@ -3318,10 +3355,10 @@ class v {
|
|
|
3318
3355
|
return this.nullable().optional();
|
|
3319
3356
|
}
|
|
3320
3357
|
array() {
|
|
3321
|
-
return
|
|
3358
|
+
return D.create(this, this._def);
|
|
3322
3359
|
}
|
|
3323
3360
|
promise() {
|
|
3324
|
-
return
|
|
3361
|
+
return Q.create(this, this._def);
|
|
3325
3362
|
}
|
|
3326
3363
|
or(t) {
|
|
3327
3364
|
return re.create([this, t], this._def);
|
|
@@ -3347,7 +3384,7 @@ class v {
|
|
|
3347
3384
|
});
|
|
3348
3385
|
}
|
|
3349
3386
|
brand() {
|
|
3350
|
-
return new
|
|
3387
|
+
return new ot({
|
|
3351
3388
|
typeName: h.ZodBranded,
|
|
3352
3389
|
type: this,
|
|
3353
3390
|
...y(this._def)
|
|
@@ -3383,12 +3420,12 @@ class v {
|
|
|
3383
3420
|
}
|
|
3384
3421
|
}
|
|
3385
3422
|
const jn = /^c[^\s-]{8,}$/i, ei = /^[a-z][a-z0-9]*$/, ti = /^[0-9A-HJKMNP-TV-Z]{26}$/, ri = /^[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, ni = /^(?!\.)(?!.*\.\.)([A-Z0-9_+-\.]*)[A-Z0-9_+-]@([A-Z0-9][A-Z0-9\-]*\.)+[A-Z]{2,}$/i, ii = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
|
|
3386
|
-
let
|
|
3423
|
+
let Pe;
|
|
3387
3424
|
const ai = /^(((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}))$/, oi = /^(([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})))$/, si = (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$");
|
|
3388
3425
|
function ci(e, t) {
|
|
3389
3426
|
return !!((t === "v4" || !t) && ai.test(e) || (t === "v6" || !t) && oi.test(e));
|
|
3390
3427
|
}
|
|
3391
|
-
class
|
|
3428
|
+
class A extends v {
|
|
3392
3429
|
_parse(t) {
|
|
3393
3430
|
if (this._def.coerce && (t.data = String(t.data)), this._getType(t) !== l.string) {
|
|
3394
3431
|
const a = this._getOrReturnCtx(t);
|
|
@@ -3447,7 +3484,7 @@ class b extends v {
|
|
|
3447
3484
|
message: a.message
|
|
3448
3485
|
}), n.dirty());
|
|
3449
3486
|
else if (a.kind === "emoji")
|
|
3450
|
-
|
|
3487
|
+
Pe || (Pe = new RegExp(ii, "u")), Pe.test(t.data) || (i = this._getOrReturnCtx(t, i), f(i, {
|
|
3451
3488
|
validation: "emoji",
|
|
3452
3489
|
code: d.invalid_string,
|
|
3453
3490
|
message: a.message
|
|
@@ -3522,7 +3559,7 @@ class b extends v {
|
|
|
3522
3559
|
});
|
|
3523
3560
|
}
|
|
3524
3561
|
_addCheck(t) {
|
|
3525
|
-
return new
|
|
3562
|
+
return new A({
|
|
3526
3563
|
...this._def,
|
|
3527
3564
|
checks: [...this._def.checks, t]
|
|
3528
3565
|
});
|
|
@@ -3623,19 +3660,19 @@ class b extends v {
|
|
|
3623
3660
|
return this.min(1, m.errToObj(t));
|
|
3624
3661
|
}
|
|
3625
3662
|
trim() {
|
|
3626
|
-
return new
|
|
3663
|
+
return new A({
|
|
3627
3664
|
...this._def,
|
|
3628
3665
|
checks: [...this._def.checks, { kind: "trim" }]
|
|
3629
3666
|
});
|
|
3630
3667
|
}
|
|
3631
3668
|
toLowerCase() {
|
|
3632
|
-
return new
|
|
3669
|
+
return new A({
|
|
3633
3670
|
...this._def,
|
|
3634
3671
|
checks: [...this._def.checks, { kind: "toLowerCase" }]
|
|
3635
3672
|
});
|
|
3636
3673
|
}
|
|
3637
3674
|
toUpperCase() {
|
|
3638
|
-
return new
|
|
3675
|
+
return new A({
|
|
3639
3676
|
...this._def,
|
|
3640
3677
|
checks: [...this._def.checks, { kind: "toUpperCase" }]
|
|
3641
3678
|
});
|
|
@@ -3680,9 +3717,9 @@ class b extends v {
|
|
|
3680
3717
|
return t;
|
|
3681
3718
|
}
|
|
3682
3719
|
}
|
|
3683
|
-
|
|
3720
|
+
A.create = (e) => {
|
|
3684
3721
|
var t;
|
|
3685
|
-
return new
|
|
3722
|
+
return new A({
|
|
3686
3723
|
checks: [],
|
|
3687
3724
|
typeName: h.ZodString,
|
|
3688
3725
|
coerce: (t = e == null ? void 0 : e.coerce) !== null && t !== void 0 ? t : !1,
|
|
@@ -4003,7 +4040,7 @@ class j extends v {
|
|
|
4003
4040
|
received: n.parsedType
|
|
4004
4041
|
}), g;
|
|
4005
4042
|
}
|
|
4006
|
-
return
|
|
4043
|
+
return I(t.data);
|
|
4007
4044
|
}
|
|
4008
4045
|
}
|
|
4009
4046
|
j.create = (e) => new j({
|
|
@@ -4099,7 +4136,7 @@ class me extends v {
|
|
|
4099
4136
|
received: n.parsedType
|
|
4100
4137
|
}), g;
|
|
4101
4138
|
}
|
|
4102
|
-
return
|
|
4139
|
+
return I(t.data);
|
|
4103
4140
|
}
|
|
4104
4141
|
}
|
|
4105
4142
|
me.create = (e) => new me({
|
|
@@ -4116,7 +4153,7 @@ class ee extends v {
|
|
|
4116
4153
|
received: n.parsedType
|
|
4117
4154
|
}), g;
|
|
4118
4155
|
}
|
|
4119
|
-
return
|
|
4156
|
+
return I(t.data);
|
|
4120
4157
|
}
|
|
4121
4158
|
}
|
|
4122
4159
|
ee.create = (e) => new ee({
|
|
@@ -4133,22 +4170,22 @@ class te extends v {
|
|
|
4133
4170
|
received: n.parsedType
|
|
4134
4171
|
}), g;
|
|
4135
4172
|
}
|
|
4136
|
-
return
|
|
4173
|
+
return I(t.data);
|
|
4137
4174
|
}
|
|
4138
4175
|
}
|
|
4139
4176
|
te.create = (e) => new te({
|
|
4140
4177
|
typeName: h.ZodNull,
|
|
4141
4178
|
...y(e)
|
|
4142
4179
|
});
|
|
4143
|
-
class
|
|
4180
|
+
class G extends v {
|
|
4144
4181
|
constructor() {
|
|
4145
4182
|
super(...arguments), this._any = !0;
|
|
4146
4183
|
}
|
|
4147
4184
|
_parse(t) {
|
|
4148
|
-
return
|
|
4185
|
+
return I(t.data);
|
|
4149
4186
|
}
|
|
4150
4187
|
}
|
|
4151
|
-
|
|
4188
|
+
G.create = (e) => new G({
|
|
4152
4189
|
typeName: h.ZodAny,
|
|
4153
4190
|
...y(e)
|
|
4154
4191
|
});
|
|
@@ -4157,7 +4194,7 @@ class Z extends v {
|
|
|
4157
4194
|
super(...arguments), this._unknown = !0;
|
|
4158
4195
|
}
|
|
4159
4196
|
_parse(t) {
|
|
4160
|
-
return
|
|
4197
|
+
return I(t.data);
|
|
4161
4198
|
}
|
|
4162
4199
|
}
|
|
4163
4200
|
Z.create = (e) => new Z({
|
|
@@ -4188,14 +4225,14 @@ class he extends v {
|
|
|
4188
4225
|
received: n.parsedType
|
|
4189
4226
|
}), g;
|
|
4190
4227
|
}
|
|
4191
|
-
return
|
|
4228
|
+
return I(t.data);
|
|
4192
4229
|
}
|
|
4193
4230
|
}
|
|
4194
4231
|
he.create = (e) => new he({
|
|
4195
4232
|
typeName: h.ZodVoid,
|
|
4196
4233
|
...y(e)
|
|
4197
4234
|
});
|
|
4198
|
-
class
|
|
4235
|
+
class D extends v {
|
|
4199
4236
|
_parse(t) {
|
|
4200
4237
|
const { ctx: r, status: n } = this._processInputParams(t), i = this._def;
|
|
4201
4238
|
if (r.parsedType !== l.array)
|
|
@@ -4239,19 +4276,19 @@ class A extends v {
|
|
|
4239
4276
|
return this._def.type;
|
|
4240
4277
|
}
|
|
4241
4278
|
min(t, r) {
|
|
4242
|
-
return new
|
|
4279
|
+
return new D({
|
|
4243
4280
|
...this._def,
|
|
4244
4281
|
minLength: { value: t, message: m.toString(r) }
|
|
4245
4282
|
});
|
|
4246
4283
|
}
|
|
4247
4284
|
max(t, r) {
|
|
4248
|
-
return new
|
|
4285
|
+
return new D({
|
|
4249
4286
|
...this._def,
|
|
4250
4287
|
maxLength: { value: t, message: m.toString(r) }
|
|
4251
4288
|
});
|
|
4252
4289
|
}
|
|
4253
4290
|
length(t, r) {
|
|
4254
|
-
return new
|
|
4291
|
+
return new D({
|
|
4255
4292
|
...this._def,
|
|
4256
4293
|
exactLength: { value: t, message: m.toString(r) }
|
|
4257
4294
|
});
|
|
@@ -4260,7 +4297,7 @@ class A extends v {
|
|
|
4260
4297
|
return this.min(1, t);
|
|
4261
4298
|
}
|
|
4262
4299
|
}
|
|
4263
|
-
|
|
4300
|
+
D.create = (e, t) => new D({
|
|
4264
4301
|
type: e,
|
|
4265
4302
|
minLength: null,
|
|
4266
4303
|
maxLength: null,
|
|
@@ -4269,23 +4306,23 @@ A.create = (e, t) => new A({
|
|
|
4269
4306
|
...y(t)
|
|
4270
4307
|
});
|
|
4271
4308
|
function z(e) {
|
|
4272
|
-
if (e instanceof
|
|
4309
|
+
if (e instanceof T) {
|
|
4273
4310
|
const t = {};
|
|
4274
4311
|
for (const r in e.shape) {
|
|
4275
4312
|
const n = e.shape[r];
|
|
4276
4313
|
t[r] = E.create(z(n));
|
|
4277
4314
|
}
|
|
4278
|
-
return new
|
|
4315
|
+
return new T({
|
|
4279
4316
|
...e._def,
|
|
4280
4317
|
shape: () => t
|
|
4281
4318
|
});
|
|
4282
4319
|
} else
|
|
4283
|
-
return e instanceof
|
|
4320
|
+
return e instanceof D ? new D({
|
|
4284
4321
|
...e._def,
|
|
4285
4322
|
type: z(e.element)
|
|
4286
4323
|
}) : e instanceof E ? E.create(z(e.unwrap())) : e instanceof H ? H.create(z(e.unwrap())) : e instanceof U ? U.create(e.items.map((t) => z(t))) : e;
|
|
4287
4324
|
}
|
|
4288
|
-
class
|
|
4325
|
+
class T extends v {
|
|
4289
4326
|
constructor() {
|
|
4290
4327
|
super(...arguments), this._cached = null, this.nonstrict = this.passthrough, this.augment = this.extend;
|
|
4291
4328
|
}
|
|
@@ -4363,7 +4400,7 @@ class C extends v {
|
|
|
4363
4400
|
return this._def.shape();
|
|
4364
4401
|
}
|
|
4365
4402
|
strict(t) {
|
|
4366
|
-
return m.errToObj, new
|
|
4403
|
+
return m.errToObj, new T({
|
|
4367
4404
|
...this._def,
|
|
4368
4405
|
unknownKeys: "strict",
|
|
4369
4406
|
...t !== void 0 ? {
|
|
@@ -4380,13 +4417,13 @@ class C extends v {
|
|
|
4380
4417
|
});
|
|
4381
4418
|
}
|
|
4382
4419
|
strip() {
|
|
4383
|
-
return new
|
|
4420
|
+
return new T({
|
|
4384
4421
|
...this._def,
|
|
4385
4422
|
unknownKeys: "strip"
|
|
4386
4423
|
});
|
|
4387
4424
|
}
|
|
4388
4425
|
passthrough() {
|
|
4389
|
-
return new
|
|
4426
|
+
return new T({
|
|
4390
4427
|
...this._def,
|
|
4391
4428
|
unknownKeys: "passthrough"
|
|
4392
4429
|
});
|
|
@@ -4409,7 +4446,7 @@ class C extends v {
|
|
|
4409
4446
|
// }) as any;
|
|
4410
4447
|
// };
|
|
4411
4448
|
extend(t) {
|
|
4412
|
-
return new
|
|
4449
|
+
return new T({
|
|
4413
4450
|
...this._def,
|
|
4414
4451
|
shape: () => ({
|
|
4415
4452
|
...this._def.shape(),
|
|
@@ -4423,7 +4460,7 @@ class C extends v {
|
|
|
4423
4460
|
* upgrade if you are experiencing issues.
|
|
4424
4461
|
*/
|
|
4425
4462
|
merge(t) {
|
|
4426
|
-
return new
|
|
4463
|
+
return new T({
|
|
4427
4464
|
unknownKeys: t._def.unknownKeys,
|
|
4428
4465
|
catchall: t._def.catchall,
|
|
4429
4466
|
shape: () => ({
|
|
@@ -4493,7 +4530,7 @@ class C extends v {
|
|
|
4493
4530
|
// return merged;
|
|
4494
4531
|
// }
|
|
4495
4532
|
catchall(t) {
|
|
4496
|
-
return new
|
|
4533
|
+
return new T({
|
|
4497
4534
|
...this._def,
|
|
4498
4535
|
catchall: t
|
|
4499
4536
|
});
|
|
@@ -4502,7 +4539,7 @@ class C extends v {
|
|
|
4502
4539
|
const r = {};
|
|
4503
4540
|
return w.objectKeys(t).forEach((n) => {
|
|
4504
4541
|
t[n] && this.shape[n] && (r[n] = this.shape[n]);
|
|
4505
|
-
}), new
|
|
4542
|
+
}), new T({
|
|
4506
4543
|
...this._def,
|
|
4507
4544
|
shape: () => r
|
|
4508
4545
|
});
|
|
@@ -4511,7 +4548,7 @@ class C extends v {
|
|
|
4511
4548
|
const r = {};
|
|
4512
4549
|
return w.objectKeys(this.shape).forEach((n) => {
|
|
4513
4550
|
t[n] || (r[n] = this.shape[n]);
|
|
4514
|
-
}), new
|
|
4551
|
+
}), new T({
|
|
4515
4552
|
...this._def,
|
|
4516
4553
|
shape: () => r
|
|
4517
4554
|
});
|
|
@@ -4527,7 +4564,7 @@ class C extends v {
|
|
|
4527
4564
|
return w.objectKeys(this.shape).forEach((n) => {
|
|
4528
4565
|
const i = this.shape[n];
|
|
4529
4566
|
t && !t[n] ? r[n] = i : r[n] = i.optional();
|
|
4530
|
-
}), new
|
|
4567
|
+
}), new T({
|
|
4531
4568
|
...this._def,
|
|
4532
4569
|
shape: () => r
|
|
4533
4570
|
});
|
|
@@ -4543,30 +4580,30 @@ class C extends v {
|
|
|
4543
4580
|
a = a._def.innerType;
|
|
4544
4581
|
r[n] = a;
|
|
4545
4582
|
}
|
|
4546
|
-
}), new
|
|
4583
|
+
}), new T({
|
|
4547
4584
|
...this._def,
|
|
4548
4585
|
shape: () => r
|
|
4549
4586
|
});
|
|
4550
4587
|
}
|
|
4551
4588
|
keyof() {
|
|
4552
|
-
return
|
|
4589
|
+
return at(w.objectKeys(this.shape));
|
|
4553
4590
|
}
|
|
4554
4591
|
}
|
|
4555
|
-
|
|
4592
|
+
T.create = (e, t) => new T({
|
|
4556
4593
|
shape: () => e,
|
|
4557
4594
|
unknownKeys: "strip",
|
|
4558
4595
|
catchall: J.create(),
|
|
4559
4596
|
typeName: h.ZodObject,
|
|
4560
4597
|
...y(t)
|
|
4561
4598
|
});
|
|
4562
|
-
|
|
4599
|
+
T.strictCreate = (e, t) => new T({
|
|
4563
4600
|
shape: () => e,
|
|
4564
4601
|
unknownKeys: "strict",
|
|
4565
4602
|
catchall: J.create(),
|
|
4566
4603
|
typeName: h.ZodObject,
|
|
4567
4604
|
...y(t)
|
|
4568
4605
|
});
|
|
4569
|
-
|
|
4606
|
+
T.lazycreate = (e, t) => new T({
|
|
4570
4607
|
shape: e,
|
|
4571
4608
|
unknownKeys: "strip",
|
|
4572
4609
|
catchall: J.create(),
|
|
@@ -4583,7 +4620,7 @@ class re extends v {
|
|
|
4583
4620
|
for (const s of a)
|
|
4584
4621
|
if (s.result.status === "dirty")
|
|
4585
4622
|
return r.common.issues.push(...s.ctx.common.issues), s.result;
|
|
4586
|
-
const o = a.map((s) => new
|
|
4623
|
+
const o = a.map((s) => new b(s.ctx.common.issues));
|
|
4587
4624
|
return f(r, {
|
|
4588
4625
|
code: d.invalid_union,
|
|
4589
4626
|
unionErrors: o
|
|
@@ -4630,7 +4667,7 @@ class re extends v {
|
|
|
4630
4667
|
}
|
|
4631
4668
|
if (a)
|
|
4632
4669
|
return r.common.issues.push(...a.ctx.common.issues), a.result;
|
|
4633
|
-
const s = o.map((p) => new
|
|
4670
|
+
const s = o.map((p) => new b(p));
|
|
4634
4671
|
return f(r, {
|
|
4635
4672
|
code: d.invalid_union,
|
|
4636
4673
|
unionErrors: s
|
|
@@ -4647,7 +4684,7 @@ re.create = (e, t) => new re({
|
|
|
4647
4684
|
...y(t)
|
|
4648
4685
|
});
|
|
4649
4686
|
const ue = (e) => e instanceof ae ? ue(e.schema) : e instanceof x ? ue(e.innerType()) : e instanceof oe ? [e.value] : e instanceof M ? e.options : e instanceof se ? Object.keys(e.enum) : e instanceof ce ? ue(e._def.innerType) : e instanceof ee ? [void 0] : e instanceof te ? [null] : null;
|
|
4650
|
-
class
|
|
4687
|
+
class Te extends v {
|
|
4651
4688
|
_parse(t) {
|
|
4652
4689
|
const { ctx: r } = this._processInputParams(t);
|
|
4653
4690
|
if (r.parsedType !== l.object)
|
|
@@ -4700,7 +4737,7 @@ class Ce extends v {
|
|
|
4700
4737
|
i.set(s, a);
|
|
4701
4738
|
}
|
|
4702
4739
|
}
|
|
4703
|
-
return new
|
|
4740
|
+
return new Te({
|
|
4704
4741
|
typeName: h.ZodDiscriminatedUnion,
|
|
4705
4742
|
discriminator: t,
|
|
4706
4743
|
options: r,
|
|
@@ -4709,14 +4746,14 @@ class Ce extends v {
|
|
|
4709
4746
|
});
|
|
4710
4747
|
}
|
|
4711
4748
|
}
|
|
4712
|
-
function
|
|
4749
|
+
function be(e, t) {
|
|
4713
4750
|
const r = F(e), n = F(t);
|
|
4714
4751
|
if (e === t)
|
|
4715
4752
|
return { valid: !0, data: e };
|
|
4716
4753
|
if (r === l.object && n === l.object) {
|
|
4717
4754
|
const i = w.objectKeys(t), a = w.objectKeys(e).filter((s) => i.indexOf(s) !== -1), o = { ...e, ...t };
|
|
4718
4755
|
for (const s of a) {
|
|
4719
|
-
const p =
|
|
4756
|
+
const p = be(e[s], t[s]);
|
|
4720
4757
|
if (!p.valid)
|
|
4721
4758
|
return { valid: !1 };
|
|
4722
4759
|
o[s] = p.data;
|
|
@@ -4727,7 +4764,7 @@ function De(e, t) {
|
|
|
4727
4764
|
return { valid: !1 };
|
|
4728
4765
|
const i = [];
|
|
4729
4766
|
for (let a = 0; a < e.length; a++) {
|
|
4730
|
-
const o = e[a], s = t[a], p =
|
|
4767
|
+
const o = e[a], s = t[a], p = be(o, s);
|
|
4731
4768
|
if (!p.valid)
|
|
4732
4769
|
return { valid: !1 };
|
|
4733
4770
|
i.push(p.data);
|
|
@@ -4741,8 +4778,8 @@ class ne extends v {
|
|
|
4741
4778
|
const { status: r, ctx: n } = this._processInputParams(t), i = (a, o) => {
|
|
4742
4779
|
if (Ne(a) || Ne(o))
|
|
4743
4780
|
return g;
|
|
4744
|
-
const s =
|
|
4745
|
-
return s.valid ? ((
|
|
4781
|
+
const s = be(a.value, o.value);
|
|
4782
|
+
return s.valid ? ((Ae(a) || Ae(o)) && r.dirty(), { status: r.value, value: s.data }) : (f(n, {
|
|
4746
4783
|
code: d.invalid_intersection_types
|
|
4747
4784
|
}), g);
|
|
4748
4785
|
};
|
|
@@ -4857,7 +4894,7 @@ class ie extends v {
|
|
|
4857
4894
|
typeName: h.ZodRecord,
|
|
4858
4895
|
...y(n)
|
|
4859
4896
|
}) : new ie({
|
|
4860
|
-
keyType:
|
|
4897
|
+
keyType: A.create(),
|
|
4861
4898
|
valueType: t,
|
|
4862
4899
|
typeName: h.ZodRecord,
|
|
4863
4900
|
...y(r)
|
|
@@ -5021,10 +5058,10 @@ class B extends v {
|
|
|
5021
5058
|
});
|
|
5022
5059
|
}
|
|
5023
5060
|
const a = { errorMap: r.common.contextualErrorMap }, o = r.data;
|
|
5024
|
-
if (this._def.returns instanceof
|
|
5061
|
+
if (this._def.returns instanceof Q) {
|
|
5025
5062
|
const s = this;
|
|
5026
|
-
return
|
|
5027
|
-
const u = new
|
|
5063
|
+
return I(async function(...p) {
|
|
5064
|
+
const u = new b([]), S = await s._def.args.parseAsync(p, a).catch((_e) => {
|
|
5028
5065
|
throw u.addIssue(n(p, _e)), u;
|
|
5029
5066
|
}), O = await Reflect.apply(o, this, S);
|
|
5030
5067
|
return await s._def.returns._def.type.parseAsync(O, a).catch((_e) => {
|
|
@@ -5033,13 +5070,13 @@ class B extends v {
|
|
|
5033
5070
|
});
|
|
5034
5071
|
} else {
|
|
5035
5072
|
const s = this;
|
|
5036
|
-
return
|
|
5073
|
+
return I(function(...p) {
|
|
5037
5074
|
const u = s._def.args.safeParse(p, a);
|
|
5038
5075
|
if (!u.success)
|
|
5039
|
-
throw new
|
|
5076
|
+
throw new b([n(p, u.error)]);
|
|
5040
5077
|
const S = Reflect.apply(o, this, u.data), O = s._def.returns.safeParse(S, a);
|
|
5041
5078
|
if (!O.success)
|
|
5042
|
-
throw new
|
|
5079
|
+
throw new b([i(S, O.error)]);
|
|
5043
5080
|
return O.data;
|
|
5044
5081
|
});
|
|
5045
5082
|
}
|
|
@@ -5112,7 +5149,7 @@ oe.create = (e, t) => new oe({
|
|
|
5112
5149
|
typeName: h.ZodLiteral,
|
|
5113
5150
|
...y(t)
|
|
5114
5151
|
});
|
|
5115
|
-
function
|
|
5152
|
+
function at(e, t) {
|
|
5116
5153
|
return new M({
|
|
5117
5154
|
values: e,
|
|
5118
5155
|
typeName: h.ZodEnum,
|
|
@@ -5137,7 +5174,7 @@ class M extends v {
|
|
|
5137
5174
|
options: n
|
|
5138
5175
|
}), g;
|
|
5139
5176
|
}
|
|
5140
|
-
return
|
|
5177
|
+
return I(t.data);
|
|
5141
5178
|
}
|
|
5142
5179
|
get options() {
|
|
5143
5180
|
return this._def.values;
|
|
@@ -5167,7 +5204,7 @@ class M extends v {
|
|
|
5167
5204
|
return M.create(this.options.filter((r) => !t.includes(r)));
|
|
5168
5205
|
}
|
|
5169
5206
|
}
|
|
5170
|
-
M.create =
|
|
5207
|
+
M.create = at;
|
|
5171
5208
|
class se extends v {
|
|
5172
5209
|
_parse(t) {
|
|
5173
5210
|
const r = w.getValidEnumValues(this._def.values), n = this._getOrReturnCtx(t);
|
|
@@ -5187,7 +5224,7 @@ class se extends v {
|
|
|
5187
5224
|
options: i
|
|
5188
5225
|
}), g;
|
|
5189
5226
|
}
|
|
5190
|
-
return
|
|
5227
|
+
return I(t.data);
|
|
5191
5228
|
}
|
|
5192
5229
|
get enum() {
|
|
5193
5230
|
return this._def.values;
|
|
@@ -5198,7 +5235,7 @@ se.create = (e, t) => new se({
|
|
|
5198
5235
|
typeName: h.ZodNativeEnum,
|
|
5199
5236
|
...y(t)
|
|
5200
5237
|
});
|
|
5201
|
-
class
|
|
5238
|
+
class Q extends v {
|
|
5202
5239
|
unwrap() {
|
|
5203
5240
|
return this._def.type;
|
|
5204
5241
|
}
|
|
@@ -5211,13 +5248,13 @@ class G extends v {
|
|
|
5211
5248
|
received: r.parsedType
|
|
5212
5249
|
}), g;
|
|
5213
5250
|
const n = r.parsedType === l.promise ? r.data : Promise.resolve(r.data);
|
|
5214
|
-
return
|
|
5251
|
+
return I(n.then((i) => this._def.type.parseAsync(i, {
|
|
5215
5252
|
path: r.path,
|
|
5216
5253
|
errorMap: r.common.contextualErrorMap
|
|
5217
5254
|
})));
|
|
5218
5255
|
}
|
|
5219
5256
|
}
|
|
5220
|
-
|
|
5257
|
+
Q.create = (e, t) => new Q({
|
|
5221
5258
|
type: e,
|
|
5222
5259
|
typeName: h.ZodPromise,
|
|
5223
5260
|
...y(t)
|
|
@@ -5304,7 +5341,7 @@ x.createWithPreprocess = (e, t, r) => new x({
|
|
|
5304
5341
|
});
|
|
5305
5342
|
class E extends v {
|
|
5306
5343
|
_parse(t) {
|
|
5307
|
-
return this._getType(t) === l.undefined ?
|
|
5344
|
+
return this._getType(t) === l.undefined ? I(void 0) : this._def.innerType._parse(t);
|
|
5308
5345
|
}
|
|
5309
5346
|
unwrap() {
|
|
5310
5347
|
return this._def.innerType;
|
|
@@ -5317,7 +5354,7 @@ E.create = (e, t) => new E({
|
|
|
5317
5354
|
});
|
|
5318
5355
|
class H extends v {
|
|
5319
5356
|
_parse(t) {
|
|
5320
|
-
return this._getType(t) === l.null ?
|
|
5357
|
+
return this._getType(t) === l.null ? I(null) : this._def.innerType._parse(t);
|
|
5321
5358
|
}
|
|
5322
5359
|
unwrap() {
|
|
5323
5360
|
return this._def.innerType;
|
|
@@ -5367,7 +5404,7 @@ class ye extends v {
|
|
|
5367
5404
|
status: "valid",
|
|
5368
5405
|
value: a.status === "valid" ? a.value : this._def.catchValue({
|
|
5369
5406
|
get error() {
|
|
5370
|
-
return new
|
|
5407
|
+
return new b(n.common.issues);
|
|
5371
5408
|
},
|
|
5372
5409
|
input: n.data
|
|
5373
5410
|
})
|
|
@@ -5375,7 +5412,7 @@ class ye extends v {
|
|
|
5375
5412
|
status: "valid",
|
|
5376
5413
|
value: i.status === "valid" ? i.value : this._def.catchValue({
|
|
5377
5414
|
get error() {
|
|
5378
|
-
return new
|
|
5415
|
+
return new b(n.common.issues);
|
|
5379
5416
|
},
|
|
5380
5417
|
input: n.data
|
|
5381
5418
|
})
|
|
@@ -5409,7 +5446,7 @@ ve.create = (e) => new ve({
|
|
|
5409
5446
|
...y(e)
|
|
5410
5447
|
});
|
|
5411
5448
|
const ui = Symbol("zod_brand");
|
|
5412
|
-
class
|
|
5449
|
+
class ot extends v {
|
|
5413
5450
|
_parse(t) {
|
|
5414
5451
|
const { ctx: r } = this._processInputParams(t), n = r.data;
|
|
5415
5452
|
return this._def.type._parse({
|
|
@@ -5432,7 +5469,7 @@ class de extends v {
|
|
|
5432
5469
|
path: n.path,
|
|
5433
5470
|
parent: n
|
|
5434
5471
|
});
|
|
5435
|
-
return a.status === "aborted" ? g : a.status === "dirty" ? (r.dirty(),
|
|
5472
|
+
return a.status === "aborted" ? g : a.status === "dirty" ? (r.dirty(), it(a.value)) : this._def.out._parseAsync({
|
|
5436
5473
|
data: a.value,
|
|
5437
5474
|
path: n.path,
|
|
5438
5475
|
parent: n
|
|
@@ -5473,14 +5510,14 @@ Se.create = (e, t) => new Se({
|
|
|
5473
5510
|
typeName: h.ZodReadonly,
|
|
5474
5511
|
...y(t)
|
|
5475
5512
|
});
|
|
5476
|
-
const
|
|
5513
|
+
const st = (e, t = {}, r) => e ? G.create().superRefine((n, i) => {
|
|
5477
5514
|
var a, o;
|
|
5478
5515
|
if (!e(n)) {
|
|
5479
5516
|
const s = typeof t == "function" ? t(n) : typeof t == "string" ? { message: t } : t, p = (o = (a = s.fatal) !== null && a !== void 0 ? a : r) !== null && o !== void 0 ? o : !0, u = typeof s == "string" ? { message: s } : s;
|
|
5480
5517
|
i.addIssue({ code: "custom", ...u, fatal: p });
|
|
5481
5518
|
}
|
|
5482
|
-
}) :
|
|
5483
|
-
object:
|
|
5519
|
+
}) : G.create(), li = {
|
|
5520
|
+
object: T.lazycreate
|
|
5484
5521
|
};
|
|
5485
5522
|
var h;
|
|
5486
5523
|
(function(e) {
|
|
@@ -5488,8 +5525,8 @@ var h;
|
|
|
5488
5525
|
})(h || (h = {}));
|
|
5489
5526
|
const fi = (e, t = {
|
|
5490
5527
|
message: `Input not instance of ${e.name}`
|
|
5491
|
-
}) =>
|
|
5492
|
-
string: (e) =>
|
|
5528
|
+
}) => st((r) => r instanceof e, t), ct = A.create, dt = L.create, pi = ve.create, mi = q.create, ut = j.create, hi = V.create, gi = me.create, yi = ee.create, vi = te.create, Si = G.create, wi = Z.create, Ci = J.create, Ti = he.create, _i = D.create, Ii = T.create, Pi = T.strictCreate, Oi = re.create, Ni = Te.create, Ai = ne.create, bi = U.create, Di = ie.create, xi = ge.create, Ri = $.create, ki = B.create, Ui = ae.create, Ei = oe.create, Ji = M.create, Fi = se.create, Li = Q.create, qe = x.create, qi = E.create, Mi = H.create, Zi = x.createWithPreprocess, Vi = de.create, $i = () => ct().optional(), Hi = () => dt().optional(), zi = () => ut().optional(), Bi = {
|
|
5529
|
+
string: (e) => A.create({ ...e, coerce: !0 }),
|
|
5493
5530
|
number: (e) => L.create({ ...e, coerce: !0 }),
|
|
5494
5531
|
boolean: (e) => j.create({
|
|
5495
5532
|
...e,
|
|
@@ -5497,7 +5534,7 @@ const fi = (e, t = {
|
|
|
5497
5534
|
}),
|
|
5498
5535
|
bigint: (e) => q.create({ ...e, coerce: !0 }),
|
|
5499
5536
|
date: (e) => V.create({ ...e, coerce: !0 })
|
|
5500
|
-
},
|
|
5537
|
+
}, Gi = g;
|
|
5501
5538
|
var K = /* @__PURE__ */ Object.freeze({
|
|
5502
5539
|
__proto__: null,
|
|
5503
5540
|
defaultErrorMap: Y,
|
|
@@ -5508,10 +5545,10 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5508
5545
|
addIssueToContext: f,
|
|
5509
5546
|
ParseStatus: _,
|
|
5510
5547
|
INVALID: g,
|
|
5511
|
-
DIRTY:
|
|
5512
|
-
OK:
|
|
5548
|
+
DIRTY: it,
|
|
5549
|
+
OK: I,
|
|
5513
5550
|
isAborted: Ne,
|
|
5514
|
-
isDirty:
|
|
5551
|
+
isDirty: Ae,
|
|
5515
5552
|
isValid: X,
|
|
5516
5553
|
isAsync: pe,
|
|
5517
5554
|
get util() {
|
|
@@ -5523,7 +5560,7 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5523
5560
|
ZodParsedType: l,
|
|
5524
5561
|
getParsedType: F,
|
|
5525
5562
|
ZodType: v,
|
|
5526
|
-
ZodString:
|
|
5563
|
+
ZodString: A,
|
|
5527
5564
|
ZodNumber: L,
|
|
5528
5565
|
ZodBigInt: q,
|
|
5529
5566
|
ZodBoolean: j,
|
|
@@ -5531,14 +5568,14 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5531
5568
|
ZodSymbol: me,
|
|
5532
5569
|
ZodUndefined: ee,
|
|
5533
5570
|
ZodNull: te,
|
|
5534
|
-
ZodAny:
|
|
5571
|
+
ZodAny: G,
|
|
5535
5572
|
ZodUnknown: Z,
|
|
5536
5573
|
ZodNever: J,
|
|
5537
5574
|
ZodVoid: he,
|
|
5538
|
-
ZodArray:
|
|
5539
|
-
ZodObject:
|
|
5575
|
+
ZodArray: D,
|
|
5576
|
+
ZodObject: T,
|
|
5540
5577
|
ZodUnion: re,
|
|
5541
|
-
ZodDiscriminatedUnion:
|
|
5578
|
+
ZodDiscriminatedUnion: Te,
|
|
5542
5579
|
ZodIntersection: ne,
|
|
5543
5580
|
ZodTuple: U,
|
|
5544
5581
|
ZodRecord: ie,
|
|
@@ -5549,7 +5586,7 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5549
5586
|
ZodLiteral: oe,
|
|
5550
5587
|
ZodEnum: M,
|
|
5551
5588
|
ZodNativeEnum: se,
|
|
5552
|
-
ZodPromise:
|
|
5589
|
+
ZodPromise: Q,
|
|
5553
5590
|
ZodEffects: x,
|
|
5554
5591
|
ZodTransformer: x,
|
|
5555
5592
|
ZodOptional: E,
|
|
@@ -5558,10 +5595,10 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5558
5595
|
ZodCatch: ye,
|
|
5559
5596
|
ZodNaN: ve,
|
|
5560
5597
|
BRAND: ui,
|
|
5561
|
-
ZodBranded:
|
|
5598
|
+
ZodBranded: ot,
|
|
5562
5599
|
ZodPipeline: de,
|
|
5563
5600
|
ZodReadonly: Se,
|
|
5564
|
-
custom:
|
|
5601
|
+
custom: st,
|
|
5565
5602
|
Schema: v,
|
|
5566
5603
|
ZodSchema: v,
|
|
5567
5604
|
late: li,
|
|
@@ -5572,24 +5609,24 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5572
5609
|
any: Si,
|
|
5573
5610
|
array: _i,
|
|
5574
5611
|
bigint: mi,
|
|
5575
|
-
boolean:
|
|
5612
|
+
boolean: ut,
|
|
5576
5613
|
date: hi,
|
|
5577
5614
|
discriminatedUnion: Ni,
|
|
5578
5615
|
effect: qe,
|
|
5579
5616
|
enum: Ji,
|
|
5580
5617
|
function: ki,
|
|
5581
5618
|
instanceof: fi,
|
|
5582
|
-
intersection:
|
|
5619
|
+
intersection: Ai,
|
|
5583
5620
|
lazy: Ui,
|
|
5584
5621
|
literal: Ei,
|
|
5585
5622
|
map: xi,
|
|
5586
5623
|
nan: pi,
|
|
5587
5624
|
nativeEnum: Fi,
|
|
5588
|
-
never:
|
|
5625
|
+
never: Ci,
|
|
5589
5626
|
null: vi,
|
|
5590
5627
|
nullable: Mi,
|
|
5591
|
-
number:
|
|
5592
|
-
object:
|
|
5628
|
+
number: dt,
|
|
5629
|
+
object: Ii,
|
|
5593
5630
|
oboolean: zi,
|
|
5594
5631
|
onumber: Hi,
|
|
5595
5632
|
optional: qi,
|
|
@@ -5597,23 +5634,23 @@ var K = /* @__PURE__ */ Object.freeze({
|
|
|
5597
5634
|
pipeline: Vi,
|
|
5598
5635
|
preprocess: Zi,
|
|
5599
5636
|
promise: Li,
|
|
5600
|
-
record:
|
|
5637
|
+
record: Di,
|
|
5601
5638
|
set: Ri,
|
|
5602
|
-
strictObject:
|
|
5603
|
-
string:
|
|
5639
|
+
strictObject: Pi,
|
|
5640
|
+
string: ct,
|
|
5604
5641
|
symbol: gi,
|
|
5605
5642
|
transformer: qe,
|
|
5606
|
-
tuple:
|
|
5643
|
+
tuple: bi,
|
|
5607
5644
|
undefined: yi,
|
|
5608
5645
|
union: Oi,
|
|
5609
5646
|
unknown: wi,
|
|
5610
|
-
void:
|
|
5611
|
-
NEVER:
|
|
5647
|
+
void: Ti,
|
|
5648
|
+
NEVER: Gi,
|
|
5612
5649
|
ZodIssueCode: d,
|
|
5613
5650
|
quotelessJson: Wn,
|
|
5614
|
-
ZodError:
|
|
5651
|
+
ZodError: b
|
|
5615
5652
|
});
|
|
5616
|
-
function
|
|
5653
|
+
function Qi(e) {
|
|
5617
5654
|
return e === 401 || e === 403;
|
|
5618
5655
|
}
|
|
5619
5656
|
function Ki(e) {
|
|
@@ -5695,7 +5732,7 @@ function ra(e) {
|
|
|
5695
5732
|
});
|
|
5696
5733
|
},
|
|
5697
5734
|
post: async (r) => {
|
|
5698
|
-
if (
|
|
5735
|
+
if (Qi(r.response.status)) {
|
|
5699
5736
|
const n = await t.refreshAccessToken();
|
|
5700
5737
|
return Me(r.init, n), await fetch(r.url, r.init);
|
|
5701
5738
|
}
|
|
@@ -5714,9 +5751,9 @@ function os(e) {
|
|
|
5714
5751
|
...e.configOverrides
|
|
5715
5752
|
});
|
|
5716
5753
|
return {
|
|
5717
|
-
uiApi: new
|
|
5754
|
+
uiApi: new Qn(n),
|
|
5718
5755
|
useCaseApi: new Kn(n),
|
|
5719
|
-
enterpriseEditionApi: new
|
|
5756
|
+
enterpriseEditionApi: new Gn(n)
|
|
5720
5757
|
};
|
|
5721
5758
|
}
|
|
5722
5759
|
function na(e) {
|
|
@@ -5725,61 +5762,61 @@ function na(e) {
|
|
|
5725
5762
|
};
|
|
5726
5763
|
}
|
|
5727
5764
|
export {
|
|
5728
|
-
|
|
5765
|
+
It as AssetPageFromJSON,
|
|
5729
5766
|
Pt as AssetPageFromJSONTyped,
|
|
5730
5767
|
ma as AssetPageToJSON,
|
|
5731
|
-
|
|
5768
|
+
pt as BASE_PATH,
|
|
5732
5769
|
W as BaseAPI,
|
|
5733
5770
|
da as BlobApiResponse,
|
|
5734
5771
|
oa as COLLECTION_FORMATS,
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
|
|
5772
|
+
kt as CatalogFilterExpressionFromJSON,
|
|
5773
|
+
Ut as CatalogFilterExpressionFromJSONTyped,
|
|
5774
|
+
At as CatalogFilterExpressionLiteralFromJSON,
|
|
5738
5775
|
bt as CatalogFilterExpressionLiteralFromJSONTyped,
|
|
5739
5776
|
Dt as CatalogFilterExpressionLiteralToJSON,
|
|
5740
5777
|
ha as CatalogFilterExpressionLiteralType,
|
|
5741
|
-
|
|
5742
|
-
|
|
5778
|
+
Ot as CatalogFilterExpressionLiteralTypeFromJSON,
|
|
5779
|
+
Nt as CatalogFilterExpressionLiteralTypeFromJSONTyped,
|
|
5743
5780
|
ga as CatalogFilterExpressionLiteralTypeToJSON,
|
|
5744
5781
|
va as CatalogFilterExpressionOperator,
|
|
5745
|
-
|
|
5746
|
-
|
|
5782
|
+
xt as CatalogFilterExpressionOperatorFromJSON,
|
|
5783
|
+
Rt as CatalogFilterExpressionOperatorFromJSONTyped,
|
|
5747
5784
|
Sa as CatalogFilterExpressionOperatorToJSON,
|
|
5748
|
-
|
|
5749
|
-
|
|
5750
|
-
|
|
5751
|
-
|
|
5785
|
+
Et as CatalogFilterExpressionToJSON,
|
|
5786
|
+
Ta as CatalogQueryFromJSON,
|
|
5787
|
+
Jt as CatalogQueryFromJSONTyped,
|
|
5788
|
+
Ft as CatalogQueryToJSON,
|
|
5752
5789
|
Ze as Configuration,
|
|
5753
|
-
|
|
5754
|
-
|
|
5755
|
-
|
|
5756
|
-
|
|
5790
|
+
Lt as ConnectorLimitsFromJSON,
|
|
5791
|
+
qt as ConnectorLimitsFromJSONTyped,
|
|
5792
|
+
Ia as ConnectorLimitsToJSON,
|
|
5793
|
+
We as ContractAgreementCardFromJSON,
|
|
5757
5794
|
lr as ContractAgreementCardFromJSONTyped,
|
|
5758
5795
|
fr as ContractAgreementCardToJSON,
|
|
5759
|
-
|
|
5796
|
+
Pa as ContractAgreementDirection,
|
|
5760
5797
|
He as ContractAgreementDirectionFromJSON,
|
|
5761
|
-
|
|
5798
|
+
Mt as ContractAgreementDirectionFromJSONTyped,
|
|
5762
5799
|
Oa as ContractAgreementDirectionToJSON,
|
|
5763
5800
|
pr as ContractAgreementPageFromJSON,
|
|
5764
5801
|
mr as ContractAgreementPageFromJSONTyped,
|
|
5765
5802
|
Wa as ContractAgreementPageQueryFromJSON,
|
|
5766
5803
|
hr as ContractAgreementPageQueryFromJSONTyped,
|
|
5767
5804
|
gr as ContractAgreementPageQueryToJSON,
|
|
5768
|
-
|
|
5769
|
-
|
|
5770
|
-
|
|
5771
|
-
|
|
5772
|
-
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
|
|
5805
|
+
Qa as ContractAgreementPageToJSON,
|
|
5806
|
+
$t as ContractAgreementTerminationInfoFromJSON,
|
|
5807
|
+
Ht as ContractAgreementTerminationInfoFromJSONTyped,
|
|
5808
|
+
zt as ContractAgreementTerminationInfoToJSON,
|
|
5809
|
+
Kt as ContractAgreementTransferProcessFromJSON,
|
|
5810
|
+
Wt as ContractAgreementTransferProcessFromJSONTyped,
|
|
5811
|
+
Yt as ContractAgreementTransferProcessToJSON,
|
|
5812
|
+
Pr as ContractDefinitionEntryFromJSON,
|
|
5776
5813
|
Or as ContractDefinitionEntryFromJSONTyped,
|
|
5777
5814
|
Nr as ContractDefinitionEntryToJSON,
|
|
5778
|
-
|
|
5779
|
-
|
|
5815
|
+
Ar as ContractDefinitionPageFromJSON,
|
|
5816
|
+
br as ContractDefinitionPageFromJSONTyped,
|
|
5780
5817
|
ao as ContractDefinitionPageToJSON,
|
|
5781
5818
|
so as ContractDefinitionRequestFromJSON,
|
|
5782
|
-
|
|
5819
|
+
Dr as ContractDefinitionRequestFromJSONTyped,
|
|
5783
5820
|
xr as ContractDefinitionRequestToJSON,
|
|
5784
5821
|
uo as ContractNegotiationRequestFromJSON,
|
|
5785
5822
|
Rr as ContractNegotiationRequestFromJSONTyped,
|
|
@@ -5792,15 +5829,15 @@ export {
|
|
|
5792
5829
|
Fr as ContractNegotiationStateFromJSONTyped,
|
|
5793
5830
|
Lr as ContractNegotiationStateToJSON,
|
|
5794
5831
|
Na as ContractTerminatedBy,
|
|
5795
|
-
|
|
5796
|
-
|
|
5797
|
-
|
|
5832
|
+
Zt as ContractTerminatedByFromJSON,
|
|
5833
|
+
Vt as ContractTerminatedByFromJSONTyped,
|
|
5834
|
+
Aa as ContractTerminatedByToJSON,
|
|
5798
5835
|
ho as ContractTerminationRequestFromJSON,
|
|
5799
5836
|
qr as ContractTerminationRequestFromJSONTyped,
|
|
5800
5837
|
Mr as ContractTerminationRequestToJSON,
|
|
5801
5838
|
Ua as ContractTerminationStatus,
|
|
5802
|
-
|
|
5803
|
-
|
|
5839
|
+
Ge as ContractTerminationStatusFromJSON,
|
|
5840
|
+
Xt as ContractTerminationStatusFromJSONTyped,
|
|
5804
5841
|
Ea as ContractTerminationStatusToJSON,
|
|
5805
5842
|
Zr as DashboardDapsConfigFromJSON,
|
|
5806
5843
|
Vr as DashboardDapsConfigFromJSONTyped,
|
|
@@ -5808,42 +5845,42 @@ export {
|
|
|
5808
5845
|
Hr as DashboardMiwConfigFromJSON,
|
|
5809
5846
|
zr as DashboardMiwConfigFromJSONTyped,
|
|
5810
5847
|
Br as DashboardMiwConfigToJSON,
|
|
5811
|
-
|
|
5848
|
+
Qr as DashboardPageFromJSON,
|
|
5812
5849
|
Kr as DashboardPageFromJSONTyped,
|
|
5813
5850
|
wo as DashboardPageToJSON,
|
|
5814
5851
|
Ee as DashboardTransferAmountsFromJSON,
|
|
5815
|
-
|
|
5852
|
+
Gr as DashboardTransferAmountsFromJSONTyped,
|
|
5816
5853
|
Je as DashboardTransferAmountsToJSON,
|
|
5817
5854
|
ua as DataSourceAvailability,
|
|
5818
|
-
|
|
5855
|
+
Ct as DataSourceAvailabilityFromJSON,
|
|
5819
5856
|
Tt as DataSourceAvailabilityFromJSONTyped,
|
|
5820
5857
|
la as DataSourceAvailabilityToJSON,
|
|
5821
|
-
|
|
5858
|
+
Co as DataSourceType,
|
|
5822
5859
|
Wr as DataSourceTypeFromJSON,
|
|
5823
5860
|
Yr as DataSourceTypeFromJSONTyped,
|
|
5824
|
-
|
|
5825
|
-
|
|
5826
|
-
|
|
5827
|
-
|
|
5828
|
-
|
|
5861
|
+
To as DataSourceTypeToJSON,
|
|
5862
|
+
mt as DefaultConfig,
|
|
5863
|
+
Gn as EnterpriseEditionApi,
|
|
5864
|
+
vt as FetchError,
|
|
5865
|
+
Ie as IdAvailabilityResponseFromJSON,
|
|
5829
5866
|
Xr as IdAvailabilityResponseFromJSONTyped,
|
|
5830
|
-
|
|
5867
|
+
Io as IdAvailabilityResponseToJSON,
|
|
5831
5868
|
N as IdResponseDtoFromJSON,
|
|
5832
5869
|
jr as IdResponseDtoFromJSONTyped,
|
|
5833
5870
|
Oo as IdResponseDtoToJSON,
|
|
5834
|
-
|
|
5871
|
+
Ao as InitiateCustomTransferRequestFromJSON,
|
|
5835
5872
|
en as InitiateCustomTransferRequestFromJSONTyped,
|
|
5836
5873
|
tn as InitiateCustomTransferRequestToJSON,
|
|
5837
|
-
|
|
5874
|
+
Do as InitiateTransferRequestFromJSON,
|
|
5838
5875
|
rn as InitiateTransferRequestFromJSONTyped,
|
|
5839
5876
|
nn as InitiateTransferRequestToJSON,
|
|
5840
|
-
|
|
5877
|
+
C as JSONApiResponse,
|
|
5841
5878
|
cn as KpiResultFromJSON,
|
|
5842
5879
|
dn as KpiResultFromJSONTyped,
|
|
5843
5880
|
ko as KpiResultToJSON,
|
|
5844
5881
|
Ja as OperatorDto,
|
|
5845
|
-
|
|
5846
|
-
|
|
5882
|
+
jt as OperatorDtoFromJSON,
|
|
5883
|
+
er as OperatorDtoFromJSONTyped,
|
|
5847
5884
|
Fa as OperatorDtoToJSON,
|
|
5848
5885
|
Eo as PolicyDefinitionCreateDtoFromJSON,
|
|
5849
5886
|
un as PolicyDefinitionCreateDtoFromJSONTyped,
|
|
@@ -5855,23 +5892,23 @@ export {
|
|
|
5855
5892
|
vn as PolicyDefinitionDtoFromJSONTyped,
|
|
5856
5893
|
Sn as PolicyDefinitionDtoToJSON,
|
|
5857
5894
|
wn as PolicyDefinitionPageFromJSON,
|
|
5858
|
-
|
|
5895
|
+
Cn as PolicyDefinitionPageFromJSONTyped,
|
|
5859
5896
|
Zo as PolicyDefinitionPageToJSON,
|
|
5860
|
-
|
|
5861
|
-
|
|
5862
|
-
|
|
5897
|
+
P as RequiredError,
|
|
5898
|
+
yt as ResponseError,
|
|
5899
|
+
Tn as SecretValueFromJSON,
|
|
5863
5900
|
_n as SecretValueFromJSONTyped,
|
|
5864
|
-
|
|
5865
|
-
|
|
5866
|
-
|
|
5901
|
+
In as SecretValueToJSON,
|
|
5902
|
+
wt as TextApiResponse,
|
|
5903
|
+
Pn as TransferHistoryEntryFromJSON,
|
|
5867
5904
|
On as TransferHistoryEntryFromJSONTyped,
|
|
5868
5905
|
Nn as TransferHistoryEntryToJSON,
|
|
5869
|
-
|
|
5870
|
-
|
|
5906
|
+
An as TransferHistoryPageFromJSON,
|
|
5907
|
+
bn as TransferHistoryPageFromJSONTyped,
|
|
5871
5908
|
zo as TransferHistoryPageToJSON,
|
|
5872
|
-
|
|
5873
|
-
|
|
5874
|
-
|
|
5909
|
+
Da as TransferProcessSimplifiedState,
|
|
5910
|
+
Bt as TransferProcessSimplifiedStateFromJSON,
|
|
5911
|
+
Gt as TransferProcessSimplifiedStateFromJSONTyped,
|
|
5875
5912
|
xa as TransferProcessSimplifiedStateToJSON,
|
|
5876
5913
|
ze as TransferProcessStateFromJSON,
|
|
5877
5914
|
Qt as TransferProcessStateFromJSONTyped,
|
|
@@ -5879,89 +5916,89 @@ export {
|
|
|
5879
5916
|
an as TransferProcessStatesDtoFromJSON,
|
|
5880
5917
|
on as TransferProcessStatesDtoFromJSONTyped,
|
|
5881
5918
|
sn as TransferProcessStatesDtoToJSON,
|
|
5882
|
-
|
|
5919
|
+
Qn as UIApi,
|
|
5883
5920
|
Xo as UiAssetCreateRequestFromJSON,
|
|
5884
5921
|
qn as UiAssetCreateRequestFromJSONTyped,
|
|
5885
|
-
|
|
5922
|
+
tt as UiAssetCreateRequestToJSON,
|
|
5886
5923
|
es as UiAssetEditRequestFromJSON,
|
|
5887
5924
|
Mn as UiAssetEditRequestFromJSONTyped,
|
|
5888
5925
|
Zn as UiAssetEditRequestToJSON,
|
|
5889
|
-
|
|
5890
|
-
|
|
5891
|
-
|
|
5926
|
+
Ce as UiAssetFromJSON,
|
|
5927
|
+
_t as UiAssetFromJSONTyped,
|
|
5928
|
+
De as UiAssetToJSON,
|
|
5892
5929
|
Fe as UiContractNegotiationFromJSON,
|
|
5893
5930
|
Vn as UiContractNegotiationFromJSONTyped,
|
|
5894
5931
|
rs as UiContractNegotiationToJSON,
|
|
5895
5932
|
$n as UiContractOfferFromJSON,
|
|
5896
5933
|
Hn as UiContractOfferFromJSONTyped,
|
|
5897
5934
|
zn as UiContractOfferToJSON,
|
|
5898
|
-
|
|
5899
|
-
|
|
5935
|
+
Ye as UiCriterionFromJSON,
|
|
5936
|
+
Ir as UiCriterionFromJSONTyped,
|
|
5900
5937
|
Sr as UiCriterionLiteralFromJSON,
|
|
5901
5938
|
wr as UiCriterionLiteralFromJSONTyped,
|
|
5902
|
-
|
|
5939
|
+
Cr as UiCriterionLiteralToJSON,
|
|
5903
5940
|
Ya as UiCriterionLiteralType,
|
|
5904
5941
|
yr as UiCriterionLiteralTypeFromJSON,
|
|
5905
5942
|
vr as UiCriterionLiteralTypeFromJSONTyped,
|
|
5906
5943
|
Xa as UiCriterionLiteralTypeToJSON,
|
|
5907
5944
|
eo as UiCriterionOperator,
|
|
5908
|
-
|
|
5945
|
+
Tr as UiCriterionOperatorFromJSON,
|
|
5909
5946
|
_r as UiCriterionOperatorFromJSONTyped,
|
|
5910
5947
|
to as UiCriterionOperatorToJSON,
|
|
5911
|
-
|
|
5912
|
-
|
|
5948
|
+
Xe as UiCriterionToJSON,
|
|
5949
|
+
rt as UiDataOfferFromJSON,
|
|
5913
5950
|
Bn as UiDataOfferFromJSONTyped,
|
|
5914
5951
|
as as UiDataOfferToJSON,
|
|
5915
|
-
|
|
5952
|
+
je as UiDataSourceFromJSON,
|
|
5916
5953
|
Ln as UiDataSourceFromJSONTyped,
|
|
5917
5954
|
Rn as UiDataSourceHttpDataFromJSON,
|
|
5918
5955
|
kn as UiDataSourceHttpDataFromJSONTyped,
|
|
5919
5956
|
Bo as UiDataSourceHttpDataMethod,
|
|
5920
|
-
|
|
5957
|
+
Dn as UiDataSourceHttpDataMethodFromJSON,
|
|
5921
5958
|
xn as UiDataSourceHttpDataMethodFromJSONTyped,
|
|
5922
|
-
|
|
5959
|
+
Go as UiDataSourceHttpDataMethodToJSON,
|
|
5923
5960
|
Un as UiDataSourceHttpDataToJSON,
|
|
5924
5961
|
En as UiDataSourceOnRequestFromJSON,
|
|
5925
5962
|
Jn as UiDataSourceOnRequestFromJSONTyped,
|
|
5926
5963
|
Fn as UiDataSourceOnRequestToJSON,
|
|
5927
|
-
|
|
5928
|
-
|
|
5929
|
-
|
|
5964
|
+
et as UiDataSourceToJSON,
|
|
5965
|
+
Qe as UiPolicyConstraintFromJSON,
|
|
5966
|
+
or as UiPolicyConstraintFromJSONTyped,
|
|
5930
5967
|
Ke as UiPolicyConstraintToJSON,
|
|
5931
5968
|
fn as UiPolicyCreateRequestFromJSON,
|
|
5932
5969
|
pn as UiPolicyCreateRequestFromJSONTyped,
|
|
5933
5970
|
mn as UiPolicyCreateRequestToJSON,
|
|
5934
5971
|
xe as UiPolicyExpressionFromJSON,
|
|
5935
|
-
|
|
5972
|
+
dr as UiPolicyExpressionFromJSONTyped,
|
|
5936
5973
|
Re as UiPolicyExpressionToJSON,
|
|
5937
5974
|
Va as UiPolicyExpressionType,
|
|
5938
|
-
|
|
5939
|
-
|
|
5975
|
+
sr as UiPolicyExpressionTypeFromJSON,
|
|
5976
|
+
cr as UiPolicyExpressionTypeFromJSONTyped,
|
|
5940
5977
|
$a as UiPolicyExpressionTypeToJSON,
|
|
5941
5978
|
ke as UiPolicyFromJSON,
|
|
5942
|
-
|
|
5943
|
-
|
|
5944
|
-
|
|
5945
|
-
|
|
5979
|
+
ur as UiPolicyFromJSONTyped,
|
|
5980
|
+
nr as UiPolicyLiteralFromJSON,
|
|
5981
|
+
ir as UiPolicyLiteralFromJSONTyped,
|
|
5982
|
+
ar as UiPolicyLiteralToJSON,
|
|
5946
5983
|
La as UiPolicyLiteralType,
|
|
5947
|
-
|
|
5948
|
-
|
|
5984
|
+
tr as UiPolicyLiteralTypeFromJSON,
|
|
5985
|
+
rr as UiPolicyLiteralTypeFromJSONTyped,
|
|
5949
5986
|
qa as UiPolicyLiteralTypeToJSON,
|
|
5950
5987
|
Ue as UiPolicyToJSON,
|
|
5951
5988
|
Kn as UseCaseApi,
|
|
5952
|
-
|
|
5989
|
+
St as VoidApiResponse,
|
|
5953
5990
|
os as buildEdcClient,
|
|
5954
5991
|
ca as canConsumeForm,
|
|
5955
5992
|
c as exists,
|
|
5956
5993
|
pa as instanceOfAssetPage,
|
|
5957
5994
|
wa as instanceOfCatalogFilterExpression,
|
|
5958
5995
|
ya as instanceOfCatalogFilterExpressionLiteral,
|
|
5959
|
-
|
|
5996
|
+
Ca as instanceOfCatalogQuery,
|
|
5960
5997
|
_a as instanceOfConnectorLimits,
|
|
5961
5998
|
Ba as instanceOfContractAgreementCard,
|
|
5962
|
-
|
|
5999
|
+
Ga as instanceOfContractAgreementPage,
|
|
5963
6000
|
Ka as instanceOfContractAgreementPageQuery,
|
|
5964
|
-
|
|
6001
|
+
ba as instanceOfContractAgreementTerminationInfo,
|
|
5965
6002
|
ka as instanceOfContractAgreementTransferProcess,
|
|
5966
6003
|
no as instanceOfContractDefinitionEntry,
|
|
5967
6004
|
io as instanceOfContractDefinitionPage,
|
|
@@ -5974,9 +6011,9 @@ export {
|
|
|
5974
6011
|
So as instanceOfDashboardPage,
|
|
5975
6012
|
vo as instanceOfDashboardTransferAmounts,
|
|
5976
6013
|
_o as instanceOfIdAvailabilityResponse,
|
|
5977
|
-
|
|
6014
|
+
Po as instanceOfIdResponseDto,
|
|
5978
6015
|
No as instanceOfInitiateCustomTransferRequest,
|
|
5979
|
-
|
|
6016
|
+
bo as instanceOfInitiateTransferRequest,
|
|
5980
6017
|
Ro as instanceOfKpiResult,
|
|
5981
6018
|
Uo as instanceOfPolicyDefinitionCreateDto,
|
|
5982
6019
|
Fo as instanceOfPolicyDefinitionCreateRequest,
|
|
@@ -5996,7 +6033,7 @@ export {
|
|
|
5996
6033
|
ja as instanceOfUiCriterionLiteral,
|
|
5997
6034
|
is as instanceOfUiDataOffer,
|
|
5998
6035
|
Wo as instanceOfUiDataSource,
|
|
5999
|
-
|
|
6036
|
+
Qo as instanceOfUiDataSourceHttpData,
|
|
6000
6037
|
Ko as instanceOfUiDataSourceOnRequest,
|
|
6001
6038
|
za as instanceOfUiPolicy,
|
|
6002
6039
|
Za as instanceOfUiPolicyConstraint,
|