@sovity.de/edc-client 4.1.0 → 4.2.1
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.
|
@@ -9,8 +9,11 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
-
import type { ContractAgreementPage, ContractAgreementTransferRequest, IdResponseDto, TransferHistoryPage } from '../models';
|
|
12
|
+
import type { AssetDto, ContractAgreementPage, ContractAgreementTransferRequest, IdResponseDto, TransferHistoryPage } from '../models';
|
|
13
13
|
import * as runtime from '../runtime';
|
|
14
|
+
export interface GetTransferProcessAssetRequest {
|
|
15
|
+
transferProcessId: string;
|
|
16
|
+
}
|
|
14
17
|
export interface InitiateTransferRequest {
|
|
15
18
|
contractAgreementTransferRequest?: ContractAgreementTransferRequest;
|
|
16
19
|
}
|
|
@@ -26,6 +29,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
26
29
|
* Collect all data for Contract Agreement Page
|
|
27
30
|
*/
|
|
28
31
|
contractAgreementEndpoint(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ContractAgreementPage>;
|
|
32
|
+
/**
|
|
33
|
+
*/
|
|
34
|
+
getTransferProcessAssetRaw(requestParameters: GetTransferProcessAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<AssetDto>>;
|
|
35
|
+
/**
|
|
36
|
+
*/
|
|
37
|
+
getTransferProcessAsset(requestParameters: GetTransferProcessAssetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<AssetDto>;
|
|
29
38
|
/**
|
|
30
39
|
* Initiate a Transfer Process
|
|
31
40
|
*/
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
var
|
|
2
|
-
var
|
|
3
|
-
var d = (t, e, r) => (
|
|
4
|
-
const
|
|
5
|
-
class
|
|
1
|
+
var N = Object.defineProperty;
|
|
2
|
+
var E = (t, e, r) => e in t ? N(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
|
|
3
|
+
var d = (t, e, r) => (E(t, typeof e != "symbol" ? e + "" : e, r), r);
|
|
4
|
+
const R = "http://localhost".replace(/\/+$/, "");
|
|
5
|
+
class h {
|
|
6
6
|
constructor(e = {}) {
|
|
7
7
|
this.configuration = e;
|
|
8
8
|
}
|
|
@@ -10,7 +10,7 @@ class S {
|
|
|
10
10
|
this.configuration = e;
|
|
11
11
|
}
|
|
12
12
|
get basePath() {
|
|
13
|
-
return this.configuration.basePath != null ? this.configuration.basePath :
|
|
13
|
+
return this.configuration.basePath != null ? this.configuration.basePath : R;
|
|
14
14
|
}
|
|
15
15
|
get fetchApi() {
|
|
16
16
|
return this.configuration.fetchApi;
|
|
@@ -19,7 +19,7 @@ class S {
|
|
|
19
19
|
return this.configuration.middleware || [];
|
|
20
20
|
}
|
|
21
21
|
get queryParamsStringify() {
|
|
22
|
-
return this.configuration.queryParamsStringify ||
|
|
22
|
+
return this.configuration.queryParamsStringify || S;
|
|
23
23
|
}
|
|
24
24
|
get username() {
|
|
25
25
|
return this.configuration.username;
|
|
@@ -44,8 +44,8 @@ class S {
|
|
|
44
44
|
return this.configuration.credentials;
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
|
-
const
|
|
48
|
-
constructor(e =
|
|
47
|
+
const F = new h(), g = class {
|
|
48
|
+
constructor(e = F) {
|
|
49
49
|
d(this, "middleware");
|
|
50
50
|
d(this, "fetchApi", async (e, r) => {
|
|
51
51
|
let n = { url: e, init: r };
|
|
@@ -70,7 +70,7 @@ const R = new S(), l = class {
|
|
|
70
70
|
response: i ? i.clone() : void 0
|
|
71
71
|
}) || i);
|
|
72
72
|
if (i === void 0)
|
|
73
|
-
throw o instanceof Error ? new
|
|
73
|
+
throw o instanceof Error ? new b(
|
|
74
74
|
o,
|
|
75
75
|
"The request failed and the interceptors did not return an alternative response"
|
|
76
76
|
) : o;
|
|
@@ -109,7 +109,7 @@ const R = new S(), l = class {
|
|
|
109
109
|
* @return True if the given MIME is JSON, false otherwise.
|
|
110
110
|
*/
|
|
111
111
|
isJsonMime(e) {
|
|
112
|
-
return e ?
|
|
112
|
+
return e ? g.jsonRegex.test(e) : !1;
|
|
113
113
|
}
|
|
114
114
|
async request(e, r) {
|
|
115
115
|
const { url: n, init: i } = await this.createFetchParams(
|
|
@@ -118,7 +118,7 @@ const R = new S(), l = class {
|
|
|
118
118
|
), o = await this.fetchApi(n, i);
|
|
119
119
|
if (o && o.status >= 200 && o.status < 300)
|
|
120
120
|
return o;
|
|
121
|
-
throw new
|
|
121
|
+
throw new x(o, "Response returned an error code");
|
|
122
122
|
}
|
|
123
123
|
async createFetchParams(e, r) {
|
|
124
124
|
let n = this.configuration.basePath + e.path;
|
|
@@ -129,7 +129,7 @@ const R = new S(), l = class {
|
|
|
129
129
|
e.headers
|
|
130
130
|
);
|
|
131
131
|
Object.keys(i).forEach(
|
|
132
|
-
(
|
|
132
|
+
(y) => i[y] === void 0 ? delete i[y] : {}
|
|
133
133
|
);
|
|
134
134
|
const o = typeof r == "function" ? r : async () => r, a = {
|
|
135
135
|
method: e.method,
|
|
@@ -142,11 +142,11 @@ const R = new S(), l = class {
|
|
|
142
142
|
init: a,
|
|
143
143
|
context: e
|
|
144
144
|
})
|
|
145
|
-
},
|
|
145
|
+
}, T = {
|
|
146
146
|
...u,
|
|
147
|
-
body:
|
|
147
|
+
body: q(u.body) || u.body instanceof URLSearchParams || J(u.body) ? u.body : JSON.stringify(u.body)
|
|
148
148
|
};
|
|
149
|
-
return { url: n, init:
|
|
149
|
+
return { url: n, init: T };
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
152
|
* Create a shallow clone of `this` by constructing a new instance
|
|
@@ -157,32 +157,32 @@ const R = new S(), l = class {
|
|
|
157
157
|
return r.middleware = this.middleware.slice(), r;
|
|
158
158
|
}
|
|
159
159
|
};
|
|
160
|
-
let f =
|
|
160
|
+
let f = g;
|
|
161
161
|
d(f, "jsonRegex", new RegExp(
|
|
162
162
|
"^(:?application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(:?;.*)?$",
|
|
163
163
|
"i"
|
|
164
164
|
));
|
|
165
|
-
function
|
|
165
|
+
function J(t) {
|
|
166
166
|
return typeof Blob < "u" && t instanceof Blob;
|
|
167
167
|
}
|
|
168
|
-
function
|
|
168
|
+
function q(t) {
|
|
169
169
|
return typeof FormData < "u" && t instanceof FormData;
|
|
170
170
|
}
|
|
171
|
-
class
|
|
171
|
+
class x extends Error {
|
|
172
172
|
constructor(r, n) {
|
|
173
173
|
super(n);
|
|
174
174
|
d(this, "name", "ResponseError");
|
|
175
175
|
this.response = r;
|
|
176
176
|
}
|
|
177
177
|
}
|
|
178
|
-
class
|
|
178
|
+
class b extends Error {
|
|
179
179
|
constructor(r, n) {
|
|
180
180
|
super(n);
|
|
181
181
|
d(this, "name", "FetchError");
|
|
182
182
|
this.cause = r;
|
|
183
183
|
}
|
|
184
184
|
}
|
|
185
|
-
class
|
|
185
|
+
class l extends Error {
|
|
186
186
|
constructor(r, n) {
|
|
187
187
|
super(n);
|
|
188
188
|
d(this, "name", "RequiredError");
|
|
@@ -199,7 +199,7 @@ function s(t, e) {
|
|
|
199
199
|
const r = t[e];
|
|
200
200
|
return r != null;
|
|
201
201
|
}
|
|
202
|
-
function
|
|
202
|
+
function S(t, e = "") {
|
|
203
203
|
return Object.keys(t).map((r) => P(r, t[r], e)).filter((r) => r.length > 0).join("&");
|
|
204
204
|
}
|
|
205
205
|
function P(t, e, r = "") {
|
|
@@ -214,7 +214,7 @@ function P(t, e, r = "") {
|
|
|
214
214
|
}
|
|
215
215
|
return e instanceof Date ? `${encodeURIComponent(n)}=${encodeURIComponent(
|
|
216
216
|
e.toISOString()
|
|
217
|
-
)}` : e instanceof Object ?
|
|
217
|
+
)}` : e instanceof Object ? S(e, n) : `${encodeURIComponent(n)}=${encodeURIComponent(
|
|
218
218
|
String(e)
|
|
219
219
|
)}`;
|
|
220
220
|
}
|
|
@@ -238,7 +238,7 @@ class c {
|
|
|
238
238
|
return this.transformer(await this.raw.json());
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
|
-
class
|
|
241
|
+
class M {
|
|
242
242
|
constructor(e) {
|
|
243
243
|
this.raw = e;
|
|
244
244
|
}
|
|
@@ -265,7 +265,7 @@ function Wt(t) {
|
|
|
265
265
|
let e = !0;
|
|
266
266
|
return e = e && "assetId" in t, e = e && "createdAt" in t, e = e && "properties" in t, e;
|
|
267
267
|
}
|
|
268
|
-
function
|
|
268
|
+
function A(t) {
|
|
269
269
|
return U(t);
|
|
270
270
|
}
|
|
271
271
|
function U(t, e) {
|
|
@@ -307,10 +307,10 @@ function vt(t) {
|
|
|
307
307
|
let e = !0;
|
|
308
308
|
return e = e && "properties" in t, e;
|
|
309
309
|
}
|
|
310
|
-
function
|
|
311
|
-
return
|
|
310
|
+
function $(t) {
|
|
311
|
+
return k(t);
|
|
312
312
|
}
|
|
313
|
-
function
|
|
313
|
+
function k(t, e) {
|
|
314
314
|
return t == null ? t : {
|
|
315
315
|
properties: t.properties
|
|
316
316
|
};
|
|
@@ -331,7 +331,7 @@ function V(t) {
|
|
|
331
331
|
function z(t, e) {
|
|
332
332
|
return t == null ? t : {
|
|
333
333
|
asset: G(t.asset),
|
|
334
|
-
dataAddress:
|
|
334
|
+
dataAddress: $(t.dataAddress)
|
|
335
335
|
};
|
|
336
336
|
}
|
|
337
337
|
function Q(t) {
|
|
@@ -404,7 +404,7 @@ function oe(t) {
|
|
|
404
404
|
let e = !0;
|
|
405
405
|
return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
|
|
406
406
|
}
|
|
407
|
-
function
|
|
407
|
+
function O(t) {
|
|
408
408
|
return v(t);
|
|
409
409
|
}
|
|
410
410
|
function v(t, e) {
|
|
@@ -414,7 +414,7 @@ function v(t, e) {
|
|
|
414
414
|
simplifiedState: t.simplifiedState
|
|
415
415
|
};
|
|
416
416
|
}
|
|
417
|
-
function
|
|
417
|
+
function w(t) {
|
|
418
418
|
if (t !== void 0)
|
|
419
419
|
return t === null ? null : {
|
|
420
420
|
name: t.name,
|
|
@@ -433,7 +433,7 @@ function tt(t, e) {
|
|
|
433
433
|
return t == null ? t : {
|
|
434
434
|
transferProcessId: t.transferProcessId,
|
|
435
435
|
lastUpdatedDate: new Date(t.lastUpdatedDate),
|
|
436
|
-
state:
|
|
436
|
+
state: O(t.state),
|
|
437
437
|
errorMessage: s(t, "errorMessage") ? t.errorMessage : void 0
|
|
438
438
|
};
|
|
439
439
|
}
|
|
@@ -442,7 +442,7 @@ function et(t) {
|
|
|
442
442
|
return t === null ? null : {
|
|
443
443
|
transferProcessId: t.transferProcessId,
|
|
444
444
|
lastUpdatedDate: t.lastUpdatedDate.toISOString(),
|
|
445
|
-
state:
|
|
445
|
+
state: w(t.state),
|
|
446
446
|
errorMessage: t.errorMessage
|
|
447
447
|
};
|
|
448
448
|
}
|
|
@@ -499,7 +499,7 @@ function ot(t) {
|
|
|
499
499
|
function ue(t) {
|
|
500
500
|
return !0;
|
|
501
501
|
}
|
|
502
|
-
function
|
|
502
|
+
function I(t) {
|
|
503
503
|
return st(t);
|
|
504
504
|
}
|
|
505
505
|
function st(t, e) {
|
|
@@ -536,8 +536,8 @@ function ct(t, e) {
|
|
|
536
536
|
contractSigningDate: new Date(t.contractSigningDate),
|
|
537
537
|
contractStartDate: new Date(t.contractStartDate),
|
|
538
538
|
contractEndDate: new Date(t.contractEndDate),
|
|
539
|
-
asset:
|
|
540
|
-
contractPolicy:
|
|
539
|
+
asset: A(t.asset),
|
|
540
|
+
contractPolicy: I(t.contractPolicy),
|
|
541
541
|
transferProcesses: t.transferProcesses.map(
|
|
542
542
|
j
|
|
543
543
|
)
|
|
@@ -613,7 +613,7 @@ function De(t) {
|
|
|
613
613
|
let e = !0;
|
|
614
614
|
return e = e && "type" in t, e;
|
|
615
615
|
}
|
|
616
|
-
function
|
|
616
|
+
function he(t) {
|
|
617
617
|
return gt(t);
|
|
618
618
|
}
|
|
619
619
|
function gt(t, e) {
|
|
@@ -631,21 +631,21 @@ function yt(t) {
|
|
|
631
631
|
customJson: t.customJson
|
|
632
632
|
};
|
|
633
633
|
}
|
|
634
|
-
function
|
|
634
|
+
function Se(t) {
|
|
635
635
|
let e = !0;
|
|
636
636
|
return e = e && "operandLeft" in t, e = e && "operator" in t, e;
|
|
637
637
|
}
|
|
638
638
|
function Dt(t) {
|
|
639
|
-
return
|
|
639
|
+
return ht(t);
|
|
640
640
|
}
|
|
641
|
-
function
|
|
641
|
+
function ht(t, e) {
|
|
642
642
|
return t == null ? t : {
|
|
643
643
|
operandLeft: t.operandLeft,
|
|
644
644
|
operator: t.operator,
|
|
645
645
|
operandRight: s(t, "operandRight") ? t.operandRight : void 0
|
|
646
646
|
};
|
|
647
647
|
}
|
|
648
|
-
function
|
|
648
|
+
function St(t) {
|
|
649
649
|
if (t !== void 0)
|
|
650
650
|
return t === null ? null : {
|
|
651
651
|
operandLeft: t.operandLeft,
|
|
@@ -675,7 +675,7 @@ function Ot(t) {
|
|
|
675
675
|
id: t.id,
|
|
676
676
|
accessPolicyId: t.accessPolicyId,
|
|
677
677
|
contractPolicyId: t.contractPolicyId,
|
|
678
|
-
criteria: t.criteria.map(
|
|
678
|
+
criteria: t.criteria.map(St),
|
|
679
679
|
validity: t.validity
|
|
680
680
|
};
|
|
681
681
|
}
|
|
@@ -684,15 +684,15 @@ function Ae(t) {
|
|
|
684
684
|
return e = e && "id" in t, e = e && "policy" in t, e;
|
|
685
685
|
}
|
|
686
686
|
function wt(t) {
|
|
687
|
-
return
|
|
687
|
+
return It(t);
|
|
688
688
|
}
|
|
689
|
-
function
|
|
689
|
+
function It(t, e) {
|
|
690
690
|
return t == null ? t : {
|
|
691
691
|
id: t.id,
|
|
692
|
-
policy:
|
|
692
|
+
policy: I(t.policy)
|
|
693
693
|
};
|
|
694
694
|
}
|
|
695
|
-
function
|
|
695
|
+
function Ct(t) {
|
|
696
696
|
if (t !== void 0)
|
|
697
697
|
return t === null ? null : {
|
|
698
698
|
id: t.id,
|
|
@@ -720,7 +720,7 @@ function Nt(t) {
|
|
|
720
720
|
if (t !== void 0)
|
|
721
721
|
return t === null ? null : {
|
|
722
722
|
assetEntry: Q(t.assetEntry),
|
|
723
|
-
policyDefinitionRequest:
|
|
723
|
+
policyDefinitionRequest: Ct(
|
|
724
724
|
t.policyDefinitionRequest
|
|
725
725
|
),
|
|
726
726
|
contractDefinitionRequest: Ot(
|
|
@@ -728,7 +728,7 @@ function Nt(t) {
|
|
|
728
728
|
)
|
|
729
729
|
};
|
|
730
730
|
}
|
|
731
|
-
function
|
|
731
|
+
function Ie(t) {
|
|
732
732
|
return !0;
|
|
733
733
|
}
|
|
734
734
|
function Et(t) {
|
|
@@ -740,7 +740,7 @@ function Rt(t, e) {
|
|
|
740
740
|
id: s(t, "id") ? t.id : void 0
|
|
741
741
|
};
|
|
742
742
|
}
|
|
743
|
-
function
|
|
743
|
+
function Ce(t) {
|
|
744
744
|
if (t !== void 0)
|
|
745
745
|
return t === null ? null : {
|
|
746
746
|
createdAt: t.createdAt,
|
|
@@ -845,7 +845,7 @@ function Lt(t, e) {
|
|
|
845
845
|
transferProcessId: t.transferProcessId,
|
|
846
846
|
createdDate: new Date(t.createdDate),
|
|
847
847
|
lastUpdatedDate: new Date(t.lastUpdatedDate),
|
|
848
|
-
state:
|
|
848
|
+
state: O(t.state),
|
|
849
849
|
contractAgreementId: t.contractAgreementId,
|
|
850
850
|
direction: t.direction,
|
|
851
851
|
counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
|
|
@@ -860,7 +860,7 @@ function Gt(t) {
|
|
|
860
860
|
transferProcessId: t.transferProcessId,
|
|
861
861
|
createdDate: t.createdDate.toISOString(),
|
|
862
862
|
lastUpdatedDate: t.lastUpdatedDate.toISOString(),
|
|
863
|
-
state:
|
|
863
|
+
state: w(t.state),
|
|
864
864
|
contractAgreementId: t.contractAgreementId,
|
|
865
865
|
direction: t.direction,
|
|
866
866
|
counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
|
|
@@ -891,7 +891,7 @@ function be(t) {
|
|
|
891
891
|
)
|
|
892
892
|
};
|
|
893
893
|
}
|
|
894
|
-
class
|
|
894
|
+
class $t extends f {
|
|
895
895
|
/**
|
|
896
896
|
* Available and used resources of a connector.
|
|
897
897
|
*/
|
|
@@ -922,12 +922,12 @@ class kt extends f {
|
|
|
922
922
|
*/
|
|
923
923
|
async createStoredFileAssetRaw(e, r) {
|
|
924
924
|
if (e.storedFileId === null || e.storedFileId === void 0)
|
|
925
|
-
throw new
|
|
925
|
+
throw new l(
|
|
926
926
|
"storedFileId",
|
|
927
927
|
"Required parameter requestParameters.storedFileId was null or undefined when calling createStoredFileAsset."
|
|
928
928
|
);
|
|
929
929
|
if (e.requestBody === null || e.requestBody === void 0)
|
|
930
|
-
throw new
|
|
930
|
+
throw new l(
|
|
931
931
|
"requestBody",
|
|
932
932
|
"Required parameter requestParameters.requestBody was null or undefined when calling createStoredFileAsset."
|
|
933
933
|
);
|
|
@@ -988,7 +988,7 @@ class kt extends f {
|
|
|
988
988
|
return await (await this.listStoredFilesRaw(e)).value();
|
|
989
989
|
}
|
|
990
990
|
}
|
|
991
|
-
class
|
|
991
|
+
class kt extends f {
|
|
992
992
|
/**
|
|
993
993
|
* Collect all data for Contract Agreement Page
|
|
994
994
|
*/
|
|
@@ -1013,6 +1013,41 @@ class $t extends f {
|
|
|
1013
1013
|
async contractAgreementEndpoint(e) {
|
|
1014
1014
|
return await (await this.contractAgreementEndpointRaw(e)).value();
|
|
1015
1015
|
}
|
|
1016
|
+
/**
|
|
1017
|
+
*/
|
|
1018
|
+
async getTransferProcessAssetRaw(e, r) {
|
|
1019
|
+
if (e.transferProcessId === null || e.transferProcessId === void 0)
|
|
1020
|
+
throw new l(
|
|
1021
|
+
"transferProcessId",
|
|
1022
|
+
"Required parameter requestParameters.transferProcessId was null or undefined when calling getTransferProcessAsset."
|
|
1023
|
+
);
|
|
1024
|
+
const n = {}, i = {}, o = await this.request(
|
|
1025
|
+
{
|
|
1026
|
+
path: "/wrapper/ui/pages/transfer-history-page/transfer-processes/{transferProcessId}/asset".replace(
|
|
1027
|
+
"{transferProcessId}",
|
|
1028
|
+
encodeURIComponent(
|
|
1029
|
+
String(e.transferProcessId)
|
|
1030
|
+
)
|
|
1031
|
+
),
|
|
1032
|
+
method: "GET",
|
|
1033
|
+
headers: i,
|
|
1034
|
+
query: n
|
|
1035
|
+
},
|
|
1036
|
+
r
|
|
1037
|
+
);
|
|
1038
|
+
return new c(
|
|
1039
|
+
o,
|
|
1040
|
+
(a) => A(a)
|
|
1041
|
+
);
|
|
1042
|
+
}
|
|
1043
|
+
/**
|
|
1044
|
+
*/
|
|
1045
|
+
async getTransferProcessAsset(e, r) {
|
|
1046
|
+
return await (await this.getTransferProcessAssetRaw(
|
|
1047
|
+
e,
|
|
1048
|
+
r
|
|
1049
|
+
)).value();
|
|
1050
|
+
}
|
|
1016
1051
|
/**
|
|
1017
1052
|
* Initiate a Transfer Process
|
|
1018
1053
|
*/
|
|
@@ -1089,7 +1124,7 @@ class Bt extends f {
|
|
|
1089
1124
|
},
|
|
1090
1125
|
r
|
|
1091
1126
|
);
|
|
1092
|
-
return new
|
|
1127
|
+
return new M(o);
|
|
1093
1128
|
}
|
|
1094
1129
|
/**
|
|
1095
1130
|
* Creates an offer
|
|
@@ -1144,7 +1179,7 @@ class Bt extends f {
|
|
|
1144
1179
|
}
|
|
1145
1180
|
}
|
|
1146
1181
|
function Me(t) {
|
|
1147
|
-
const e = new
|
|
1182
|
+
const e = new h({
|
|
1148
1183
|
basePath: t.managementApiUrl,
|
|
1149
1184
|
headers: {
|
|
1150
1185
|
"x-api-key": t.managementApiKey ?? "ApiKeyDefaultValue"
|
|
@@ -1153,13 +1188,13 @@ function Me(t) {
|
|
|
1153
1188
|
...t.configOverrides
|
|
1154
1189
|
});
|
|
1155
1190
|
return {
|
|
1156
|
-
uiApi: new
|
|
1191
|
+
uiApi: new kt(e),
|
|
1157
1192
|
useCaseApi: new Bt(e),
|
|
1158
|
-
enterpriseEditionApi: new
|
|
1193
|
+
enterpriseEditionApi: new $t(e)
|
|
1159
1194
|
};
|
|
1160
1195
|
}
|
|
1161
1196
|
export {
|
|
1162
|
-
|
|
1197
|
+
A as AssetDtoFromJSON,
|
|
1163
1198
|
U as AssetDtoFromJSONTyped,
|
|
1164
1199
|
L as AssetDtoToJSON,
|
|
1165
1200
|
V as AssetEntryDtoFromJSON,
|
|
@@ -1172,11 +1207,11 @@ export {
|
|
|
1172
1207
|
X as AtomicConstraintDtoFromJSONTyped,
|
|
1173
1208
|
te as AtomicConstraintDtoOperatorEnum,
|
|
1174
1209
|
Y as AtomicConstraintDtoToJSON,
|
|
1175
|
-
|
|
1210
|
+
R as BASE_PATH,
|
|
1176
1211
|
f as BaseAPI,
|
|
1177
1212
|
Xt as BlobApiResponse,
|
|
1178
1213
|
zt as COLLECTION_FORMATS,
|
|
1179
|
-
|
|
1214
|
+
h as Configuration,
|
|
1180
1215
|
W as ConnectorLimitsFromJSON,
|
|
1181
1216
|
Z as ConnectorLimitsFromJSONTyped,
|
|
1182
1217
|
ne as ConnectorLimitsToJSON,
|
|
@@ -1190,7 +1225,7 @@ export {
|
|
|
1190
1225
|
j as ContractAgreementTransferProcessFromJSON,
|
|
1191
1226
|
tt as ContractAgreementTransferProcessFromJSONTyped,
|
|
1192
1227
|
et as ContractAgreementTransferProcessToJSON,
|
|
1193
|
-
|
|
1228
|
+
he as ContractAgreementTransferRequestFromJSON,
|
|
1194
1229
|
gt as ContractAgreementTransferRequestFromJSONTyped,
|
|
1195
1230
|
pt as ContractAgreementTransferRequestParamsFromJSON,
|
|
1196
1231
|
mt as ContractAgreementTransferRequestParamsFromJSONTyped,
|
|
@@ -1204,21 +1239,21 @@ export {
|
|
|
1204
1239
|
Tt as CreateOfferingDtoFromJSONTyped,
|
|
1205
1240
|
Nt as CreateOfferingDtoToJSON,
|
|
1206
1241
|
Dt as CriterionDtoFromJSON,
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1242
|
+
ht as CriterionDtoFromJSONTyped,
|
|
1243
|
+
St as CriterionDtoToJSON,
|
|
1244
|
+
$ as DataAddressDtoFromJSON,
|
|
1245
|
+
k as DataAddressDtoFromJSONTyped,
|
|
1211
1246
|
B as DataAddressDtoToJSON,
|
|
1212
|
-
|
|
1213
|
-
|
|
1247
|
+
F as DefaultConfig,
|
|
1248
|
+
$t as EnterpriseEditionApi,
|
|
1214
1249
|
p as ExpressionDtoFromJSON,
|
|
1215
1250
|
rt as ExpressionDtoFromJSONTyped,
|
|
1216
1251
|
m as ExpressionDtoToJSON,
|
|
1217
1252
|
ae as ExpressionDtoTypeEnum,
|
|
1218
|
-
|
|
1253
|
+
b as FetchError,
|
|
1219
1254
|
Et as IdResponseDtoFromJSON,
|
|
1220
1255
|
Rt as IdResponseDtoFromJSONTyped,
|
|
1221
|
-
|
|
1256
|
+
Ce as IdResponseDtoToJSON,
|
|
1222
1257
|
c as JSONApiResponse,
|
|
1223
1258
|
xt as KpiResultFromJSON,
|
|
1224
1259
|
bt as KpiResultFromJSONTyped,
|
|
@@ -1227,13 +1262,13 @@ export {
|
|
|
1227
1262
|
it as PermissionDtoFromJSONTyped,
|
|
1228
1263
|
ot as PermissionDtoToJSON,
|
|
1229
1264
|
wt as PolicyDefinitionRequestDtoFromJSON,
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1265
|
+
It as PolicyDefinitionRequestDtoFromJSONTyped,
|
|
1266
|
+
Ct as PolicyDefinitionRequestDtoToJSON,
|
|
1267
|
+
I as PolicyDtoFromJSON,
|
|
1233
1268
|
st as PolicyDtoFromJSONTyped,
|
|
1234
1269
|
C as PolicyDtoToJSON,
|
|
1235
|
-
|
|
1236
|
-
|
|
1270
|
+
l as RequiredError,
|
|
1271
|
+
x as ResponseError,
|
|
1237
1272
|
D as StoredFileFromJSON,
|
|
1238
1273
|
Mt as StoredFileFromJSONTyped,
|
|
1239
1274
|
Fe as StoredFileToJSON,
|
|
@@ -1245,16 +1280,16 @@ export {
|
|
|
1245
1280
|
Ht as TransferHistoryPageFromJSON,
|
|
1246
1281
|
Kt as TransferHistoryPageFromJSONTyped,
|
|
1247
1282
|
be as TransferHistoryPageToJSON,
|
|
1248
|
-
|
|
1283
|
+
O as TransferProcessStateFromJSON,
|
|
1249
1284
|
v as TransferProcessStateFromJSONTyped,
|
|
1250
1285
|
ie as TransferProcessStateSimplifiedStateEnum,
|
|
1251
|
-
|
|
1286
|
+
w as TransferProcessStateToJSON,
|
|
1252
1287
|
Ft as TransferProcessStatesDtoFromJSON,
|
|
1253
1288
|
Jt as TransferProcessStatesDtoFromJSONTyped,
|
|
1254
1289
|
qt as TransferProcessStatesDtoToJSON,
|
|
1255
|
-
|
|
1290
|
+
kt as UIApi,
|
|
1256
1291
|
Bt as UseCaseApi,
|
|
1257
|
-
|
|
1292
|
+
M as VoidApiResponse,
|
|
1258
1293
|
Me as buildEdcClient,
|
|
1259
1294
|
_t as canConsumeForm,
|
|
1260
1295
|
s as exists,
|
|
@@ -1270,10 +1305,10 @@ export {
|
|
|
1270
1305
|
ge as instanceOfContractAgreementTransferRequestParams,
|
|
1271
1306
|
Pe as instanceOfContractDefinitionRequestDto,
|
|
1272
1307
|
Oe as instanceOfCreateOfferingDto,
|
|
1273
|
-
|
|
1308
|
+
Se as instanceOfCriterionDto,
|
|
1274
1309
|
vt as instanceOfDataAddressDto,
|
|
1275
1310
|
ce as instanceOfExpressionDto,
|
|
1276
|
-
|
|
1311
|
+
Ie as instanceOfIdResponseDto,
|
|
1277
1312
|
Ne as instanceOfKpiResult,
|
|
1278
1313
|
de as instanceOfPermissionDto,
|
|
1279
1314
|
Ae as instanceOfPolicyDefinitionRequestDto,
|
|
@@ -1284,6 +1319,6 @@ export {
|
|
|
1284
1319
|
oe as instanceOfTransferProcessState,
|
|
1285
1320
|
Te as instanceOfTransferProcessStatesDto,
|
|
1286
1321
|
Qt as mapValues,
|
|
1287
|
-
|
|
1322
|
+
S as querystring
|
|
1288
1323
|
};
|
|
1289
1324
|
//# sourceMappingURL=sovity-edc-client.js.map
|