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