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