@sovity.de/edc-client 7.1.1 → 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 M = Object.defineProperty;
2
- var L = (t, e, r) => e in t ? M(t, e, { enumerable: !0, configurable: !0, writable: !0, value: r }) : t[e] = r;
3
- var p = (t, e, r) => (L(t, typeof e != "symbol" ? e + "" : e, r), r);
4
- const H = "https://my-connector/api/management".replace(
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(e = {}) {
10
- this.configuration = e;
9
+ constructor(t = {}) {
10
+ this.configuration = t;
11
11
  }
12
- set config(e) {
13
- this.configuration = e;
12
+ set config(t) {
13
+ this.configuration = t;
14
14
  }
15
15
  get basePath() {
16
- return this.configuration.basePath != null ? this.configuration.basePath : H;
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 e = this.configuration.apiKey;
35
- if (e)
36
- return typeof e == "function" ? e : () => e;
34
+ const t = this.configuration.apiKey;
35
+ if (t)
36
+ return typeof t == "function" ? t : () => t;
37
37
  }
38
38
  get accessToken() {
39
- const e = this.configuration.accessToken;
40
- if (e)
41
- return typeof e == "function" ? e : async () => e;
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 k = new D(), h = class {
51
- constructor(e = k) {
50
+ const H = new D(), h = class {
51
+ constructor(t = H) {
52
52
  p(this, "middleware");
53
- p(this, "fetchApi", async (e, r) => {
54
- let n = { url: e, init: r };
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 && (n = await a.pre({
56
+ a.pre && (i = await a.pre({
57
57
  fetch: this.fetchApi,
58
- ...n
59
- }) || n);
60
- let i;
58
+ ...i
59
+ }) || i);
60
+ let o;
61
61
  try {
62
- i = await (this.configuration.fetchApi || fetch)(
63
- n.url,
64
- n.init
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 && (i = await s.onError({
68
+ s.onError && (o = await s.onError({
69
69
  fetch: this.fetchApi,
70
- url: n.url,
71
- init: n.init,
70
+ url: i.url,
71
+ init: i.init,
72
72
  error: a,
73
- response: i ? i.clone() : void 0
74
- }) || i);
75
- if (i === void 0)
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 && (i = await a.post({
82
+ a.post && (o = await a.post({
83
83
  fetch: this.fetchApi,
84
- url: n.url,
85
- init: n.init,
86
- response: i.clone()
87
- }) || i);
88
- return i;
84
+ url: i.url,
85
+ init: i.init,
86
+ response: o.clone()
87
+ }) || o);
88
+ return o;
89
89
  });
90
- this.configuration = e, this.middleware = e.middleware;
90
+ this.configuration = t, this.middleware = t.middleware;
91
91
  }
92
- withMiddleware(...e) {
92
+ withMiddleware(...t) {
93
93
  const r = this.clone();
94
- return r.middleware = r.middleware.concat(...e), r;
94
+ return r.middleware = r.middleware.concat(...t), r;
95
95
  }
96
- withPreMiddleware(...e) {
97
- const r = e.map((n) => ({ pre: n }));
96
+ withPreMiddleware(...t) {
97
+ const r = t.map((i) => ({ pre: i }));
98
98
  return this.withMiddleware(...r);
99
99
  }
100
- withPostMiddleware(...e) {
101
- const r = e.map((n) => ({ post: n }));
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(e) {
115
- return e ? h.jsonRegex.test(e) : !1;
114
+ isJsonMime(t) {
115
+ return t ? h.jsonRegex.test(t) : !1;
116
116
  }
117
- async request(e, r) {
118
- const { url: n, init: i } = await this.createFetchParams(
119
- e,
117
+ async request(t, r) {
118
+ const { url: i, init: o } = await this.createFetchParams(
119
+ t,
120
120
  r
121
- ), a = await this.fetchApi(n, i);
121
+ ), a = await this.fetchApi(i, o);
122
122
  if (a && a.status >= 200 && a.status < 300)
123
123
  return a;
124
- throw new K(a, "Response returned an error code");
124
+ throw new G(a, "Response returned an error code");
125
125
  }
126
- async createFetchParams(e, r) {
127
- let n = this.configuration.basePath + e.path;
128
- e.query !== void 0 && Object.keys(e.query).length !== 0 && (n += "?" + this.configuration.queryParamsStringify(e.query));
129
- const i = Object.assign(
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
- e.headers
132
+ t.headers
133
133
  );
134
- Object.keys(i).forEach(
135
- (w) => i[w] === void 0 ? delete i[w] : {}
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: e.method,
139
- headers: i,
140
- body: e.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: e
146
+ context: t
147
147
  })
148
- }, E = {
148
+ }, b = {
149
149
  ...f,
150
- body: G(f.body) || f.body instanceof URLSearchParams || x(f.body) ? f.body : JSON.stringify(f.body)
150
+ body: x(f.body) || f.body instanceof URLSearchParams || k(f.body) ? f.body : JSON.stringify(f.body)
151
151
  };
152
- return { url: n, init: E };
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 e = this.constructor, r = new e(this.configuration);
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 g = h;
164
- p(g, "jsonRegex", new RegExp(
163
+ let l = h;
164
+ p(l, "jsonRegex", new RegExp(
165
165
  "^(:?application/json|[^;/ ]+/[^;/ ]+[+]json)[ ]*(:?;.*)?$",
166
166
  "i"
167
167
  ));
168
- function x(t) {
169
- return typeof Blob < "u" && t instanceof Blob;
168
+ function k(e) {
169
+ return typeof Blob < "u" && e instanceof Blob;
170
170
  }
171
- function G(t) {
172
- return typeof FormData < "u" && t instanceof FormData;
171
+ function x(e) {
172
+ return typeof FormData < "u" && e instanceof FormData;
173
173
  }
174
- class K extends Error {
175
- constructor(r, n) {
176
- super(n);
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 $ extends Error {
182
- constructor(r, n) {
183
- super(n);
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, n) {
190
- super(n);
189
+ constructor(r, i) {
190
+ super(i);
191
191
  p(this, "name", "RequiredError");
192
192
  this.field = r;
193
193
  }
194
194
  }
195
- const Fe = {
195
+ const qt = {
196
196
  csv: ",",
197
197
  ssv: " ",
198
198
  tsv: " ",
199
199
  pipes: "|"
200
200
  };
201
- function o(t, e) {
202
- const r = t[e];
201
+ function n(e, t) {
202
+ const r = e[t];
203
203
  return r != null;
204
204
  }
205
- function O(t, e = "") {
206
- return Object.keys(t).map((r) => T(r, t[r], e)).filter((r) => r.length > 0).join("&");
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(t, e, r = "") {
209
- const n = r + (r.length ? `[${t}]` : t);
210
- if (e instanceof Array) {
211
- const i = e.map((a) => encodeURIComponent(String(a))).join(`&${encodeURIComponent(n)}=`);
212
- return `${encodeURIComponent(n)}=${i}`;
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 (e instanceof Set) {
215
- const i = Array.from(e);
216
- return T(t, i, r);
214
+ if (t instanceof Set) {
215
+ const o = Array.from(t);
216
+ return T(e, o, r);
217
217
  }
218
- return e instanceof Date ? `${encodeURIComponent(n)}=${encodeURIComponent(
219
- e.toISOString()
220
- )}` : e instanceof Object ? O(e, n) : `${encodeURIComponent(n)}=${encodeURIComponent(
221
- String(e)
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 be(t, e) {
225
- return Object.keys(t).reduce(
226
- (r, n) => ({ ...r, [n]: e(t[n]) }),
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 Ee(t) {
231
- for (const e of t)
232
- if (e.contentType === "multipart/form-data")
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(e, r = (n) => n) {
238
- this.raw = e, this.transformer = r;
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 v {
245
- constructor(e) {
246
- this.raw = e;
244
+ class $ {
245
+ constructor(t) {
246
+ this.raw = t;
247
247
  }
248
248
  async value() {
249
249
  }
250
250
  }
251
- class Me {
252
- constructor(e) {
253
- this.raw = e;
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(e) {
261
- this.raw = e;
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 Le(t) {
268
- let e = !0;
269
- return e = e && "assetId" in t, e = e && "connectorEndpoint" in t, e = e && "participantId" in t, e = e && "title" in t, e = e && "creatorOrganizationName" in t, e = e && "isOwnConnector" in t, e;
270
- }
271
- function l(t) {
272
- return Q(t);
273
- }
274
- function Q(t, e) {
275
- return t == null ? t : {
276
- assetId: t.assetId,
277
- connectorEndpoint: t.connectorEndpoint,
278
- participantId: t.participantId,
279
- title: t.title,
280
- creatorOrganizationName: t.creatorOrganizationName,
281
- language: o(t, "language") ? t.language : void 0,
282
- description: o(t, "description") ? t.description : void 0,
283
- descriptionShortText: o(t, "descriptionShortText") ? t.descriptionShortText : void 0,
284
- isOwnConnector: t.isOwnConnector,
285
- publisherHomepage: o(t, "publisherHomepage") ? t.publisherHomepage : void 0,
286
- licenseUrl: o(t, "licenseUrl") ? t.licenseUrl : void 0,
287
- version: o(t, "version") ? t.version : void 0,
288
- keywords: o(t, "keywords") ? t.keywords : void 0,
289
- mediaType: o(t, "mediaType") ? t.mediaType : void 0,
290
- landingPageUrl: o(t, "landingPageUrl") ? t.landingPageUrl : void 0,
291
- httpDatasourceHintsProxyMethod: o(
292
- t,
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
- ) ? t.httpDatasourceHintsProxyMethod : void 0,
295
- httpDatasourceHintsProxyPath: o(
296
- t,
294
+ ) ? e.httpDatasourceHintsProxyMethod : void 0,
295
+ httpDatasourceHintsProxyPath: n(
296
+ e,
297
297
  "httpDatasourceHintsProxyPath"
298
- ) ? t.httpDatasourceHintsProxyPath : void 0,
299
- httpDatasourceHintsProxyQueryParams: o(
300
- t,
298
+ ) ? e.httpDatasourceHintsProxyPath : void 0,
299
+ httpDatasourceHintsProxyQueryParams: n(
300
+ e,
301
301
  "httpDatasourceHintsProxyQueryParams"
302
- ) ? t.httpDatasourceHintsProxyQueryParams : void 0,
303
- httpDatasourceHintsProxyBody: o(
304
- t,
302
+ ) ? e.httpDatasourceHintsProxyQueryParams : void 0,
303
+ httpDatasourceHintsProxyBody: n(
304
+ e,
305
305
  "httpDatasourceHintsProxyBody"
306
- ) ? t.httpDatasourceHintsProxyBody : void 0,
307
- dataCategory: o(t, "dataCategory") ? t.dataCategory : void 0,
308
- dataSubcategory: o(t, "dataSubcategory") ? t.dataSubcategory : void 0,
309
- dataModel: o(t, "dataModel") ? t.dataModel : void 0,
310
- geoReferenceMethod: o(t, "geoReferenceMethod") ? t.geoReferenceMethod : void 0,
311
- transportMode: o(t, "transportMode") ? t.transportMode : void 0,
312
- additionalProperties: o(t, "additionalProperties") ? t.additionalProperties : void 0,
313
- additionalJsonProperties: o(t, "additionalJsonProperties") ? t.additionalJsonProperties : void 0,
314
- privateProperties: o(t, "privateProperties") ? t.privateProperties : void 0,
315
- privateJsonProperties: o(t, "privateJsonProperties") ? t.privateJsonProperties : void 0,
316
- assetJsonLd: o(t, "assetJsonLd") ? t.assetJsonLd : void 0
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(t) {
320
- if (t !== void 0)
321
- return t === null ? null : {
322
- assetId: t.assetId,
323
- connectorEndpoint: t.connectorEndpoint,
324
- participantId: t.participantId,
325
- title: t.title,
326
- creatorOrganizationName: t.creatorOrganizationName,
327
- language: t.language,
328
- description: t.description,
329
- descriptionShortText: t.descriptionShortText,
330
- isOwnConnector: t.isOwnConnector,
331
- publisherHomepage: t.publisherHomepage,
332
- licenseUrl: t.licenseUrl,
333
- version: t.version,
334
- keywords: t.keywords,
335
- mediaType: t.mediaType,
336
- landingPageUrl: t.landingPageUrl,
337
- httpDatasourceHintsProxyMethod: t.httpDatasourceHintsProxyMethod,
338
- httpDatasourceHintsProxyPath: t.httpDatasourceHintsProxyPath,
339
- httpDatasourceHintsProxyQueryParams: t.httpDatasourceHintsProxyQueryParams,
340
- httpDatasourceHintsProxyBody: t.httpDatasourceHintsProxyBody,
341
- dataCategory: t.dataCategory,
342
- dataSubcategory: t.dataSubcategory,
343
- dataModel: t.dataModel,
344
- geoReferenceMethod: t.geoReferenceMethod,
345
- transportMode: t.transportMode,
346
- additionalProperties: t.additionalProperties,
347
- additionalJsonProperties: t.additionalJsonProperties,
348
- privateProperties: t.privateProperties,
349
- privateJsonProperties: t.privateJsonProperties,
350
- assetJsonLd: t.assetJsonLd
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 He(t) {
354
- let e = !0;
355
- return e = e && "assets" in t, e;
376
+ function vt(e) {
377
+ let t = !0;
378
+ return t = t && "assets" in e, t;
356
379
  }
357
- function V(t) {
358
- return B(t);
380
+ function V(e) {
381
+ return B(e);
359
382
  }
360
- function B(t, e) {
361
- return t == null ? t : {
362
- assets: t.assets.map(l)
383
+ function B(e, t) {
384
+ return e == null ? e : {
385
+ assets: e.assets.map(g)
363
386
  };
364
387
  }
365
- function ke(t) {
366
- if (t !== void 0)
367
- return t === null ? null : {
368
- assets: t.assets.map(m)
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 xe(t) {
372
- let e = !0;
373
- return e = e && "numActiveConsumingContractAgreements" in t, e;
394
+ function kt(e) {
395
+ let t = !0;
396
+ return t = t && "numActiveConsumingContractAgreements" in e, t;
374
397
  }
375
- function z(t) {
376
- return X(t);
398
+ function z(e) {
399
+ return X(e);
377
400
  }
378
- function X(t, e) {
379
- return t == null ? t : {
380
- numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
381
- maxActiveConsumingContractAgreements: o(
382
- t,
401
+ function X(e, t) {
402
+ return e == null ? e : {
403
+ numActiveConsumingContractAgreements: e.numActiveConsumingContractAgreements,
404
+ maxActiveConsumingContractAgreements: n(
405
+ e,
383
406
  "maxActiveConsumingContractAgreements"
384
- ) ? t.maxActiveConsumingContractAgreements : void 0
407
+ ) ? e.maxActiveConsumingContractAgreements : void 0
385
408
  };
386
409
  }
387
- function Ge(t) {
388
- if (t !== void 0)
389
- return t === null ? null : {
390
- numActiveConsumingContractAgreements: t.numActiveConsumingContractAgreements,
391
- maxActiveConsumingContractAgreements: t.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 Ke = {
417
+ const Gt = {
395
418
  Consuming: "CONSUMING",
396
419
  Providing: "PROVIDING"
397
420
  };
398
- function N(t) {
399
- return Y(t);
421
+ function N(e) {
422
+ return Y(e);
400
423
  }
401
- function Y(t, e) {
402
- return t;
424
+ function Y(e, t) {
425
+ return e;
403
426
  }
404
- function $e(t) {
405
- return t;
427
+ function Kt(e) {
428
+ return e;
406
429
  }
407
- const ve = {
430
+ const $t = {
408
431
  Running: "RUNNING",
409
432
  Ok: "OK",
410
433
  Error: "ERROR"
411
434
  };
412
- function W(t) {
413
- return Z(t);
435
+ function W(e) {
436
+ return Z(e);
414
437
  }
415
- function Z(t, e) {
416
- return t;
438
+ function Z(e, t) {
439
+ return e;
417
440
  }
418
- function _e(t) {
419
- return t;
441
+ function _t(e) {
442
+ return e;
420
443
  }
421
- function Qe(t) {
422
- let e = !0;
423
- return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
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 A(t) {
426
- return j(t);
448
+ function U(e) {
449
+ return j(e);
427
450
  }
428
- function j(t, e) {
429
- return t == null ? t : {
430
- name: t.name,
431
- code: t.code,
451
+ function j(e, t) {
452
+ return e == null ? e : {
453
+ name: e.name,
454
+ code: e.code,
432
455
  simplifiedState: W(
433
- t.simplifiedState
456
+ e.simplifiedState
434
457
  )
435
458
  };
436
459
  }
437
- function J(t) {
438
- if (t !== void 0)
439
- return t === null ? null : {
440
- name: t.name,
441
- code: t.code,
442
- simplifiedState: t.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 Ve(t) {
446
- let e = !0;
447
- return e = e && "transferProcessId" in t, e = e && "lastUpdatedDate" in t, e = e && "state" in t, e;
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 tt(t) {
450
- return et(t);
472
+ function ee(e) {
473
+ return te(e);
451
474
  }
452
- function et(t, e) {
453
- return t == null ? t : {
454
- transferProcessId: t.transferProcessId,
455
- lastUpdatedDate: new Date(t.lastUpdatedDate),
456
- state: A(t.state),
457
- errorMessage: o(t, "errorMessage") ? t.errorMessage : void 0
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 rt(t) {
461
- if (t !== void 0)
462
- return t === null ? null : {
463
- transferProcessId: t.transferProcessId,
464
- lastUpdatedDate: t.lastUpdatedDate.toISOString(),
465
- state: J(t.state),
466
- errorMessage: t.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 Be = {
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 nt(t) {
484
- return it(t);
506
+ function ne(e) {
507
+ return ie(e);
485
508
  }
486
- function it(t, e) {
487
- return t;
509
+ function ie(e, t) {
510
+ return e;
488
511
  }
489
- function ze(t) {
490
- return t;
512
+ function zt(e) {
513
+ return e;
491
514
  }
492
- const Xe = {
515
+ const Xt = {
493
516
  String: "STRING",
494
517
  StringList: "STRING_LIST",
495
518
  Json: "JSON"
496
519
  };
497
- function ot(t) {
498
- return at(t);
520
+ function oe(e) {
521
+ return ae(e);
499
522
  }
500
- function at(t, e) {
501
- return t;
523
+ function ae(e, t) {
524
+ return e;
502
525
  }
503
- function Ye(t) {
504
- return t;
526
+ function Yt(e) {
527
+ return e;
505
528
  }
506
- function We(t) {
507
- let e = !0;
508
- return e = e && "type" in t, e;
529
+ function Wt(e) {
530
+ let t = !0;
531
+ return t = t && "type" in e, t;
509
532
  }
510
- function st(t) {
511
- return ct(t);
533
+ function se(e) {
534
+ return ce(e);
512
535
  }
513
- function ct(t, e) {
514
- return t == null ? t : {
515
- type: ot(t.type),
516
- value: o(t, "value") ? t.value : void 0,
517
- valueList: o(t, "valueList") ? t.valueList : void 0
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 dt(t) {
521
- if (t !== void 0)
522
- return t === null ? null : {
523
- type: t.type,
524
- value: t.value,
525
- valueList: t.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 Ze(t) {
529
- let e = !0;
530
- return e = e && "left" in t, e = e && "operator" in t, e = e && "right" in t, e;
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 R(t) {
533
- return ut(t);
555
+ function J(e) {
556
+ return ue(e);
534
557
  }
535
- function ut(t, e) {
536
- return t == null ? t : {
537
- left: t.left,
538
- operator: nt(t.operator),
539
- right: st(t.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 U(t) {
543
- if (t !== void 0)
544
- return t === null ? null : {
545
- left: t.left,
546
- operator: t.operator,
547
- right: dt(t.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 je(t) {
551
- let e = !0;
552
- return e = e && "policyJsonLd" in t, e = e && "errors" in t, e;
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(t) {
555
- return pt(t);
577
+ function y(e) {
578
+ return pe(e);
556
579
  }
557
- function pt(t, e) {
558
- return t == null ? t : {
559
- policyJsonLd: t.policyJsonLd,
560
- constraints: o(t, "constraints") ? t.constraints.map(
561
- R
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: t.errors
586
+ errors: e.errors
564
587
  };
565
588
  }
566
- function P(t) {
567
- if (t !== void 0)
568
- return t === null ? null : {
569
- policyJsonLd: t.policyJsonLd,
570
- constraints: t.constraints === void 0 ? void 0 : t.constraints.map(
571
- U
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: t.errors
596
+ errors: e.errors
574
597
  };
575
598
  }
576
- function tr(t) {
577
- let e = !0;
578
- return e = e && "contractAgreementId" in t, e = e && "contractNegotiationId" in t, e = e && "direction" in t, e = e && "counterPartyAddress" in t, e = e && "counterPartyId" in t, e = e && "contractSigningDate" in t, e = e && "asset" in t, e = e && "contractPolicy" in t, e = e && "transferProcesses" in t, e;
579
- }
580
- function ft(t) {
581
- return gt(t);
582
- }
583
- function gt(t, e) {
584
- return t == null ? t : {
585
- contractAgreementId: t.contractAgreementId,
586
- contractNegotiationId: t.contractNegotiationId,
587
- direction: N(t.direction),
588
- counterPartyAddress: t.counterPartyAddress,
589
- counterPartyId: t.counterPartyId,
590
- contractSigningDate: new Date(t.contractSigningDate),
591
- asset: l(t.asset),
592
- contractPolicy: y(t.contractPolicy),
593
- transferProcesses: t.transferProcesses.map(
594
- tt
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 lt(t) {
599
- if (t !== void 0)
600
- return t === null ? null : {
601
- contractAgreementId: t.contractAgreementId,
602
- contractNegotiationId: t.contractNegotiationId,
603
- direction: t.direction,
604
- counterPartyAddress: t.counterPartyAddress,
605
- counterPartyId: t.counterPartyId,
606
- contractSigningDate: t.contractSigningDate.toISOString(),
607
- asset: m(t.asset),
608
- contractPolicy: P(t.contractPolicy),
609
- transferProcesses: t.transferProcesses.map(
610
- rt
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 er(t) {
615
- let e = !0;
616
- return e = e && "contractAgreements" in t, e;
637
+ function tr(e) {
638
+ let t = !0;
639
+ return t = t && "contractAgreements" in e, t;
617
640
  }
618
- function mt(t) {
619
- return yt(t);
641
+ function me(e) {
642
+ return ye(e);
620
643
  }
621
- function yt(t, e) {
622
- return t == null ? t : {
623
- contractAgreements: t.contractAgreements.map(
624
- ft
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(t) {
629
- if (t !== void 0)
630
- return t === null ? null : {
631
- contractAgreements: t.contractAgreements.map(
632
- lt
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 Pt(t) {
641
- return ht(t);
663
+ function Pe(e) {
664
+ return he(e);
642
665
  }
643
- function ht(t, e) {
644
- return t;
666
+ function he(e, t) {
667
+ return e;
645
668
  }
646
- function ir(t) {
647
- return t;
669
+ function ir(e) {
670
+ return e;
648
671
  }
649
- function or(t) {
672
+ function or(e) {
650
673
  return !0;
651
674
  }
652
- function wt(t) {
653
- return It(t);
675
+ function Ce(e) {
676
+ return Ie(e);
654
677
  }
655
- function It(t, e) {
656
- return t == null ? t : {
657
- type: o(t, "type") ? Pt(t.type) : void 0,
658
- value: o(t, "value") ? t.value : void 0,
659
- valueList: o(t, "valueList") ? t.valueList : void 0
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 Ct(t) {
663
- if (t !== void 0)
664
- return t === null ? null : {
665
- type: t.type,
666
- value: t.value,
667
- valueList: t.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 St(t) {
676
- return Dt(t);
698
+ function Se(e) {
699
+ return De(e);
677
700
  }
678
- function Dt(t, e) {
679
- return t;
701
+ function De(e, t) {
702
+ return e;
680
703
  }
681
- function sr(t) {
682
- return t;
704
+ function sr(e) {
705
+ return e;
683
706
  }
684
- function cr(t) {
685
- let e = !0;
686
- return e = e && "operandLeft" in t, e = e && "operator" in t, e = e && "operandRight" in t, e;
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 q(t) {
689
- return Ot(t);
711
+ function R(e) {
712
+ return Oe(e);
690
713
  }
691
- function Ot(t, e) {
692
- return t == null ? t : {
693
- operandLeft: t.operandLeft,
694
- operator: St(t.operator),
695
- operandRight: wt(t.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 F(t) {
699
- if (t !== void 0)
700
- return t === null ? null : {
701
- operandLeft: t.operandLeft,
702
- operator: t.operator,
703
- operandRight: Ct(t.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(t) {
707
- let e = !0;
708
- return e = e && "contractDefinitionId" in t, e = e && "accessPolicyId" in t, e = e && "contractPolicyId" in t, e = e && "assetSelector" in t, e;
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 Tt(t) {
711
- return Nt(t);
733
+ function Te(e) {
734
+ return Ne(e);
712
735
  }
713
- function Nt(t, e) {
714
- return t == null ? t : {
715
- contractDefinitionId: t.contractDefinitionId,
716
- accessPolicyId: t.accessPolicyId,
717
- contractPolicyId: t.contractPolicyId,
718
- assetSelector: t.assetSelector.map(
719
- q
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 At(t) {
724
- if (t !== void 0)
725
- return t === null ? null : {
726
- contractDefinitionId: t.contractDefinitionId,
727
- accessPolicyId: t.accessPolicyId,
728
- contractPolicyId: t.contractPolicyId,
729
- assetSelector: t.assetSelector.map(
730
- F
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(t) {
735
- let e = !0;
736
- return e = e && "contractDefinitions" in t, e;
757
+ function ur(e) {
758
+ let t = !0;
759
+ return t = t && "contractDefinitions" in e, t;
737
760
  }
738
- function Jt(t) {
739
- return Rt(t);
761
+ function Ae(e) {
762
+ return Je(e);
740
763
  }
741
- function Rt(t, e) {
742
- return t == null ? t : {
743
- contractDefinitions: t.contractDefinitions.map(
744
- Tt
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(t) {
749
- if (t !== void 0)
750
- return t === null ? null : {
751
- contractDefinitions: t.contractDefinitions.map(
752
- At
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(t) {
757
- let e = !0;
758
- return e = e && "contractDefinitionId" in t, e = e && "contractPolicyId" in t, e = e && "accessPolicyId" in t, e = e && "assetSelector" in t, e;
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 gr(t) {
761
- return Ut(t);
783
+ function lr(e) {
784
+ return Fe(e);
762
785
  }
763
- function Ut(t, e) {
764
- return t == null ? t : {
765
- contractDefinitionId: t.contractDefinitionId,
766
- contractPolicyId: t.contractPolicyId,
767
- accessPolicyId: t.accessPolicyId,
768
- assetSelector: t.assetSelector.map(
769
- q
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 qt(t) {
774
- if (t !== void 0)
775
- return t === null ? null : {
776
- contractDefinitionId: t.contractDefinitionId,
777
- contractPolicyId: t.contractPolicyId,
778
- accessPolicyId: t.accessPolicyId,
779
- assetSelector: t.assetSelector.map(
780
- F
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 lr(t) {
785
- let e = !0;
786
- return e = e && "counterPartyAddress" in t, e = e && "counterPartyParticipantId" in t, e = e && "contractOfferId" in t, e = e && "policyJsonLd" in t, e = e && "assetId" in t, e;
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(t) {
789
- return Ft(t);
811
+ function mr(e) {
812
+ return qe(e);
790
813
  }
791
- function Ft(t, e) {
792
- return t == null ? t : {
793
- counterPartyAddress: t.counterPartyAddress,
794
- counterPartyParticipantId: t.counterPartyParticipantId,
795
- contractOfferId: t.contractOfferId,
796
- policyJsonLd: t.policyJsonLd,
797
- assetId: t.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 bt(t) {
801
- if (t !== void 0)
802
- return t === null ? null : {
803
- counterPartyAddress: t.counterPartyAddress,
804
- counterPartyParticipantId: t.counterPartyParticipantId,
805
- contractOfferId: t.contractOfferId,
806
- policyJsonLd: t.policyJsonLd,
807
- assetId: t.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 Et(t) {
816
- return Mt(t);
838
+ function be(e) {
839
+ return Ee(e);
817
840
  }
818
- function Mt(t, e) {
819
- return t;
841
+ function Ee(e, t) {
842
+ return e;
820
843
  }
821
- function Pr(t) {
822
- return t;
844
+ function Pr(e) {
845
+ return e;
823
846
  }
824
- function hr(t) {
825
- let e = !0;
826
- return e = e && "name" in t, e = e && "code" in t, e = e && "simplifiedState" in t, e;
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 Lt(t) {
829
- return Ht(t);
851
+ function Me(e) {
852
+ return ve(e);
830
853
  }
831
- function Ht(t, e) {
832
- return t == null ? t : {
833
- name: t.name,
834
- code: t.code,
835
- simplifiedState: Et(
836
- t.simplifiedState
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 kt(t) {
841
- if (t !== void 0)
842
- return t === null ? null : {
843
- name: t.name,
844
- code: t.code,
845
- simplifiedState: t.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 wr(t) {
849
- let e = !0;
850
- return e = e && "tokenUrl" in t, e = e && "jwksUrl" in t, e;
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 xt(t) {
853
- return Gt(t);
875
+ function ke(e) {
876
+ return xe(e);
854
877
  }
855
- function Gt(t, e) {
856
- return t == null ? t : {
857
- tokenUrl: t.tokenUrl,
858
- jwksUrl: t.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 Kt(t) {
862
- if (t !== void 0)
863
- return t === null ? null : {
864
- tokenUrl: t.tokenUrl,
865
- jwksUrl: t.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(t) {
869
- let e = !0;
870
- return e = e && "url" in t, e = e && "tokenUrl" in t, e = e && "authorityId" in t, e;
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 $t(t) {
873
- return vt(t);
895
+ function Ke(e) {
896
+ return $e(e);
874
897
  }
875
- function vt(t, e) {
876
- return t == null ? t : {
877
- url: t.url,
878
- tokenUrl: t.tokenUrl,
879
- authorityId: t.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 _t(t) {
883
- if (t !== void 0)
884
- return t === null ? null : {
885
- url: t.url,
886
- tokenUrl: t.tokenUrl,
887
- authorityId: t.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 Cr(t) {
891
- let e = !0;
892
- return e = e && "numTotal" in t, e = e && "numRunning" in t, e = e && "numOk" in t, e = e && "numError" in t, e;
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(t) {
895
- return Qt(t);
917
+ function I(e) {
918
+ return Qe(e);
896
919
  }
897
- function Qt(t, e) {
898
- return t == null ? t : {
899
- numTotal: t.numTotal,
900
- numRunning: t.numRunning,
901
- numOk: t.numOk,
902
- numError: t.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 C(t) {
906
- if (t !== void 0)
907
- return t === null ? null : {
908
- numTotal: t.numTotal,
909
- numRunning: t.numRunning,
910
- numOk: t.numOk,
911
- numError: t.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(t) {
915
- let e = !0;
916
- return e = e && "numAssets" in t, e = e && "numPolicies" in t, e = e && "numContractDefinitions" in t, e = e && "numContractAgreementsConsuming" in t, e = e && "numContractAgreementsProviding" in t, e = e && "transferProcessesConsuming" in t, e = e && "transferProcessesProviding" in t, e = e && "connectorEndpoint" in t, e = e && "connectorParticipantId" in t, e = e && "connectorTitle" in t, e = e && "connectorDescription" in t, e = e && "connectorCuratorUrl" in t, e = e && "connectorCuratorName" in t, e = e && "connectorMaintainerUrl" in t, e = e && "connectorMaintainerName" in t, e;
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 Vt(t) {
919
- return Bt(t);
941
+ function Ve(e) {
942
+ return Be(e);
920
943
  }
921
- function Bt(t, e) {
922
- return t == null ? t : {
923
- numAssets: t.numAssets,
924
- numPolicies: t.numPolicies,
925
- numContractDefinitions: t.numContractDefinitions,
926
- numContractAgreementsConsuming: t.numContractAgreementsConsuming,
927
- numContractAgreementsProviding: t.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
- t.transferProcessesConsuming
952
+ e.transferProcessesConsuming
930
953
  ),
931
954
  transferProcessesProviding: I(
932
- t.transferProcessesProviding
955
+ e.transferProcessesProviding
933
956
  ),
934
- connectorEndpoint: t.connectorEndpoint,
935
- connectorParticipantId: t.connectorParticipantId,
936
- connectorTitle: t.connectorTitle,
937
- connectorDescription: t.connectorDescription,
938
- connectorCuratorUrl: t.connectorCuratorUrl,
939
- connectorCuratorName: t.connectorCuratorName,
940
- connectorMaintainerUrl: t.connectorMaintainerUrl,
941
- connectorMaintainerName: t.connectorMaintainerName,
942
- connectorDapsConfig: o(t, "connectorDapsConfig") ? xt(t.connectorDapsConfig) : void 0,
943
- connectorMiwConfig: o(t, "connectorMiwConfig") ? $t(t.connectorMiwConfig) : void 0
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(t) {
947
- if (t !== void 0)
948
- return t === null ? null : {
949
- numAssets: t.numAssets,
950
- numPolicies: t.numPolicies,
951
- numContractDefinitions: t.numContractDefinitions,
952
- numContractAgreementsConsuming: t.numContractAgreementsConsuming,
953
- numContractAgreementsProviding: t.numContractAgreementsProviding,
954
- transferProcessesConsuming: C(
955
- t.transferProcessesConsuming
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: C(
958
- t.transferProcessesProviding
980
+ transferProcessesProviding: w(
981
+ e.transferProcessesProviding
959
982
  ),
960
- connectorEndpoint: t.connectorEndpoint,
961
- connectorParticipantId: t.connectorParticipantId,
962
- connectorTitle: t.connectorTitle,
963
- connectorDescription: t.connectorDescription,
964
- connectorCuratorUrl: t.connectorCuratorUrl,
965
- connectorCuratorName: t.connectorCuratorName,
966
- connectorMaintainerUrl: t.connectorMaintainerUrl,
967
- connectorMaintainerName: t.connectorMaintainerName,
968
- connectorDapsConfig: Kt(
969
- t.connectorDapsConfig
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: _t(t.connectorMiwConfig)
994
+ connectorMiwConfig: _e(e.connectorMiwConfig)
972
995
  };
973
996
  }
974
- function Or(t) {
975
- let e = !0;
976
- return e = e && "id" in t, e = e && "lastUpdatedDate" in t, e;
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(t) {
979
- return zt(t);
1001
+ function d(e) {
1002
+ return ze(e);
980
1003
  }
981
- function zt(t, e) {
982
- return t == null ? t : {
983
- id: t.id,
984
- lastUpdatedDate: new Date(t.lastUpdatedDate)
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(t) {
988
- if (t !== void 0)
989
- return t === null ? null : {
990
- id: t.id,
991
- lastUpdatedDate: t.lastUpdatedDate.toISOString()
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(t) {
995
- let e = !0;
996
- return e = e && "contractAgreementId" in t, e = e && "transferProcessRequestJsonLd" in t, e;
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 Ar(t) {
999
- return Xt(t);
1021
+ function Ur(e) {
1022
+ return Xe(e);
1000
1023
  }
1001
- function Xt(t, e) {
1002
- return t == null ? t : {
1003
- contractAgreementId: t.contractAgreementId,
1004
- transferProcessRequestJsonLd: t.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 Yt(t) {
1008
- if (t !== void 0)
1009
- return t === null ? null : {
1010
- contractAgreementId: t.contractAgreementId,
1011
- transferProcessRequestJsonLd: t.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 Jr(t) {
1015
- let e = !0;
1016
- return e = e && "contractAgreementId" in t, e = e && "dataSinkProperties" in t, e = e && "transferProcessProperties" in t, e;
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 Rr(t) {
1019
- return Wt(t);
1041
+ function Jr(e) {
1042
+ return We(e);
1020
1043
  }
1021
- function Wt(t, e) {
1022
- return t == null ? t : {
1023
- contractAgreementId: t.contractAgreementId,
1024
- dataSinkProperties: t.dataSinkProperties,
1025
- transferProcessProperties: t.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 Zt(t) {
1029
- if (t !== void 0)
1030
- return t === null ? null : {
1031
- contractAgreementId: t.contractAgreementId,
1032
- dataSinkProperties: t.dataSinkProperties,
1033
- transferProcessProperties: t.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 Ur(t) {
1037
- let e = !0;
1038
- return e = e && "incomingTransferProcessCounts" in t, e = e && "outgoingTransferProcessCounts" in t, e;
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 jt(t) {
1041
- return te(t);
1063
+ function je(e) {
1064
+ return et(e);
1042
1065
  }
1043
- function te(t, e) {
1044
- return t == null ? t : {
1045
- incomingTransferProcessCounts: t.incomingTransferProcessCounts,
1046
- outgoingTransferProcessCounts: t.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 ee(t) {
1050
- if (t !== void 0)
1051
- return t === null ? null : {
1052
- incomingTransferProcessCounts: t.incomingTransferProcessCounts,
1053
- outgoingTransferProcessCounts: t.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 qr(t) {
1057
- let e = !0;
1058
- return e = e && "assetsCount" in t, e = e && "policiesCount" in t, e = e && "contractDefinitionsCount" in t, e = e && "contractAgreementsCount" in t, e = e && "transferProcessDto" in t, e;
1059
- }
1060
- function re(t) {
1061
- return ne(t);
1062
- }
1063
- function ne(t, e) {
1064
- return t == null ? t : {
1065
- assetsCount: t.assetsCount,
1066
- policiesCount: t.policiesCount,
1067
- contractDefinitionsCount: t.contractDefinitionsCount,
1068
- contractAgreementsCount: t.contractAgreementsCount,
1069
- transferProcessDto: jt(
1070
- t.transferProcessDto
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 Fr(t) {
1075
- if (t !== void 0)
1076
- return t === null ? null : {
1077
- assetsCount: t.assetsCount,
1078
- policiesCount: t.policiesCount,
1079
- contractDefinitionsCount: t.contractDefinitionsCount,
1080
- contractAgreementsCount: t.contractAgreementsCount,
1081
- transferProcessDto: ee(
1082
- t.transferProcessDto
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 br(t) {
1109
+ function Lr(e) {
1087
1110
  return !0;
1088
1111
  }
1089
- function ie(t) {
1090
- return oe(t);
1112
+ function it(e) {
1113
+ return ot(e);
1091
1114
  }
1092
- function oe(t, e) {
1093
- return t == null ? t : {
1094
- constraints: o(t, "constraints") ? t.constraints.map(
1095
- R
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 ae(t) {
1100
- if (t !== void 0)
1101
- return t === null ? null : {
1102
- constraints: t.constraints === void 0 ? void 0 : t.constraints.map(
1103
- U
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 Er(t) {
1108
- let e = !0;
1109
- return e = e && "policyDefinitionId" in t, e = e && "policy" in t, e;
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 Mr(t) {
1112
- return se(t);
1134
+ function Er(e) {
1135
+ return st(e);
1113
1136
  }
1114
- function se(t, e) {
1115
- return t == null ? t : {
1116
- policyDefinitionId: t.policyDefinitionId,
1117
- policy: ie(t.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 ce(t) {
1121
- if (t !== void 0)
1122
- return t === null ? null : {
1123
- policyDefinitionId: t.policyDefinitionId,
1124
- policy: ae(t.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 Lr(t) {
1128
- let e = !0;
1129
- return e = e && "policyDefinitionId" in t, e = e && "policy" in t, e;
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 de(t) {
1132
- return ue(t);
1154
+ function dt(e) {
1155
+ return ut(e);
1133
1156
  }
1134
- function ue(t, e) {
1135
- return t == null ? t : {
1136
- policyDefinitionId: t.policyDefinitionId,
1137
- policy: y(t.policy)
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 pe(t) {
1141
- if (t !== void 0)
1142
- return t === null ? null : {
1143
- policyDefinitionId: t.policyDefinitionId,
1144
- policy: P(t.policy)
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 Hr(t) {
1148
- let e = !0;
1149
- return e = e && "policies" in t, e;
1170
+ function vr(e) {
1171
+ let t = !0;
1172
+ return t = t && "policies" in e, t;
1150
1173
  }
1151
- function fe(t) {
1152
- return ge(t);
1174
+ function ft(e) {
1175
+ return lt(e);
1153
1176
  }
1154
- function ge(t, e) {
1155
- return t == null ? t : {
1156
- policies: t.policies.map(
1157
- de
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 kr(t) {
1162
- if (t !== void 0)
1163
- return t === null ? null : {
1164
- policies: t.policies.map(pe)
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 xr(t) {
1168
- let e = !0;
1169
- return e = e && "transferProcessId" in t, e = e && "createdDate" in t, e = e && "lastUpdatedDate" in t, e = e && "state" in t, e = e && "contractAgreementId" in t, e = e && "direction" in t, e = e && "counterPartyConnectorEndpoint" in t, e = e && "counterPartyParticipantId" in t, e = e && "assetName" in t, e = e && "assetId" in t, e;
1170
- }
1171
- function le(t) {
1172
- return me(t);
1173
- }
1174
- function me(t, e) {
1175
- return t == null ? t : {
1176
- transferProcessId: t.transferProcessId,
1177
- createdDate: new Date(t.createdDate),
1178
- lastUpdatedDate: new Date(t.lastUpdatedDate),
1179
- state: A(t.state),
1180
- contractAgreementId: t.contractAgreementId,
1181
- direction: N(t.direction),
1182
- counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
1183
- counterPartyParticipantId: t.counterPartyParticipantId,
1184
- assetName: t.assetName,
1185
- assetId: t.assetId,
1186
- errorMessage: o(t, "errorMessage") ? t.errorMessage : void 0
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 ye(t) {
1190
- if (t !== void 0)
1191
- return t === null ? null : {
1192
- transferProcessId: t.transferProcessId,
1193
- createdDate: t.createdDate.toISOString(),
1194
- lastUpdatedDate: t.lastUpdatedDate.toISOString(),
1195
- state: J(t.state),
1196
- contractAgreementId: t.contractAgreementId,
1197
- direction: t.direction,
1198
- counterPartyConnectorEndpoint: t.counterPartyConnectorEndpoint,
1199
- counterPartyParticipantId: t.counterPartyParticipantId,
1200
- assetName: t.assetName,
1201
- assetId: t.assetId,
1202
- errorMessage: t.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 Gr(t) {
1206
- let e = !0;
1207
- return e = e && "transferEntries" in t, e;
1228
+ function xr(e) {
1229
+ let t = !0;
1230
+ return t = t && "transferEntries" in e, t;
1208
1231
  }
1209
- function Pe(t) {
1210
- return he(t);
1232
+ function Pt(e) {
1233
+ return ht(e);
1211
1234
  }
1212
- function he(t, e) {
1213
- return t == null ? t : {
1214
- transferEntries: t.transferEntries.map(
1215
- le
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 Kr(t) {
1220
- if (t !== void 0)
1221
- return t === null ? null : {
1222
- transferEntries: t.transferEntries.map(
1223
- ye
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 $r(t) {
1228
- let e = !0;
1229
- return e = e && "id" in t, e = e && "dataAddressProperties" in t, e;
1230
- }
1231
- function vr(t) {
1232
- return we(t);
1233
- }
1234
- function we(t, e) {
1235
- return t == null ? t : {
1236
- id: t.id,
1237
- title: o(t, "title") ? t.title : void 0,
1238
- language: o(t, "language") ? t.language : void 0,
1239
- description: o(t, "description") ? t.description : void 0,
1240
- publisherHomepage: o(t, "publisherHomepage") ? t.publisherHomepage : void 0,
1241
- licenseUrl: o(t, "licenseUrl") ? t.licenseUrl : void 0,
1242
- version: o(t, "version") ? t.version : void 0,
1243
- keywords: o(t, "keywords") ? t.keywords : void 0,
1244
- mediaType: o(t, "mediaType") ? t.mediaType : void 0,
1245
- landingPageUrl: o(t, "landingPageUrl") ? t.landingPageUrl : void 0,
1246
- dataCategory: o(t, "dataCategory") ? t.dataCategory : void 0,
1247
- dataSubcategory: o(t, "dataSubcategory") ? t.dataSubcategory : void 0,
1248
- dataModel: o(t, "dataModel") ? t.dataModel : void 0,
1249
- geoReferenceMethod: o(t, "geoReferenceMethod") ? t.geoReferenceMethod : void 0,
1250
- transportMode: o(t, "transportMode") ? t.transportMode : void 0,
1251
- dataAddressProperties: t.dataAddressProperties,
1252
- additionalProperties: o(t, "additionalProperties") ? t.additionalProperties : void 0,
1253
- additionalJsonProperties: o(t, "additionalJsonProperties") ? t.additionalJsonProperties : void 0,
1254
- privateProperties: o(t, "privateProperties") ? t.privateProperties : void 0,
1255
- privateJsonProperties: o(t, "privateJsonProperties") ? t.privateJsonProperties : void 0
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 b(t) {
1259
- if (t !== void 0)
1260
- return t === null ? null : {
1261
- id: t.id,
1262
- title: t.title,
1263
- language: t.language,
1264
- description: t.description,
1265
- publisherHomepage: t.publisherHomepage,
1266
- licenseUrl: t.licenseUrl,
1267
- version: t.version,
1268
- keywords: t.keywords,
1269
- mediaType: t.mediaType,
1270
- landingPageUrl: t.landingPageUrl,
1271
- dataCategory: t.dataCategory,
1272
- dataSubcategory: t.dataSubcategory,
1273
- dataModel: t.dataModel,
1274
- geoReferenceMethod: t.geoReferenceMethod,
1275
- transportMode: t.transportMode,
1276
- dataAddressProperties: t.dataAddressProperties,
1277
- additionalProperties: t.additionalProperties,
1278
- additionalJsonProperties: t.additionalJsonProperties,
1279
- privateProperties: t.privateProperties,
1280
- privateJsonProperties: t.privateJsonProperties
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(t) {
1329
+ function _r(e) {
1284
1330
  return !0;
1285
1331
  }
1286
- function Qr(t) {
1287
- return Ie(t);
1288
- }
1289
- function Ie(t, e) {
1290
- return t == null ? t : {
1291
- title: o(t, "title") ? t.title : void 0,
1292
- language: o(t, "language") ? t.language : void 0,
1293
- description: o(t, "description") ? t.description : void 0,
1294
- publisherHomepage: o(t, "publisherHomepage") ? t.publisherHomepage : void 0,
1295
- licenseUrl: o(t, "licenseUrl") ? t.licenseUrl : void 0,
1296
- version: o(t, "version") ? t.version : void 0,
1297
- keywords: o(t, "keywords") ? t.keywords : void 0,
1298
- mediaType: o(t, "mediaType") ? t.mediaType : void 0,
1299
- landingPageUrl: o(t, "landingPageUrl") ? t.landingPageUrl : void 0,
1300
- dataCategory: o(t, "dataCategory") ? t.dataCategory : void 0,
1301
- dataSubcategory: o(t, "dataSubcategory") ? t.dataSubcategory : void 0,
1302
- dataModel: o(t, "dataModel") ? t.dataModel : void 0,
1303
- geoReferenceMethod: o(t, "geoReferenceMethod") ? t.geoReferenceMethod : void 0,
1304
- transportMode: o(t, "transportMode") ? t.transportMode : void 0,
1305
- additionalProperties: o(t, "additionalProperties") ? t.additionalProperties : void 0,
1306
- additionalJsonProperties: o(t, "additionalJsonProperties") ? t.additionalJsonProperties : void 0,
1307
- privateProperties: o(t, "privateProperties") ? t.privateProperties : void 0,
1308
- privateJsonProperties: o(t, "privateJsonProperties") ? t.privateJsonProperties : void 0
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 Ce(t) {
1312
- if (t !== void 0)
1313
- return t === null ? null : {
1314
- title: t.title,
1315
- language: t.language,
1316
- description: t.description,
1317
- publisherHomepage: t.publisherHomepage,
1318
- licenseUrl: t.licenseUrl,
1319
- version: t.version,
1320
- keywords: t.keywords,
1321
- mediaType: t.mediaType,
1322
- landingPageUrl: t.landingPageUrl,
1323
- dataCategory: t.dataCategory,
1324
- dataSubcategory: t.dataSubcategory,
1325
- dataModel: t.dataModel,
1326
- geoReferenceMethod: t.geoReferenceMethod,
1327
- transportMode: t.transportMode,
1328
- additionalProperties: t.additionalProperties,
1329
- additionalJsonProperties: t.additionalJsonProperties,
1330
- privateProperties: t.privateProperties,
1331
- privateJsonProperties: t.privateJsonProperties
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(t) {
1335
- let e = !0;
1336
- return e = e && "contractNegotiationId" in t, e = e && "createdAt" in t, e = e && "state" in t, e;
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(t) {
1339
- return Se(t);
1407
+ function S(e) {
1408
+ return St(e);
1340
1409
  }
1341
- function Se(t, e) {
1342
- return t == null ? t : {
1343
- contractNegotiationId: t.contractNegotiationId,
1344
- createdAt: new Date(t.createdAt),
1345
- contractAgreementId: o(t, "contractAgreementId") ? t.contractAgreementId : void 0,
1346
- state: Lt(t.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(t) {
1350
- if (t !== void 0)
1351
- return t === null ? null : {
1352
- contractNegotiationId: t.contractNegotiationId,
1353
- createdAt: t.createdAt.toISOString(),
1354
- contractAgreementId: t.contractAgreementId,
1355
- state: kt(t.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(t) {
1359
- let e = !0;
1360
- return e = e && "contractOfferId" in t, e = e && "policy" in t, e;
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 De(t) {
1363
- return Oe(t);
1431
+ function Dt(e) {
1432
+ return Ot(e);
1364
1433
  }
1365
- function Oe(t, e) {
1366
- return t == null ? t : {
1367
- contractOfferId: t.contractOfferId,
1368
- policy: y(t.policy)
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 Te(t) {
1372
- if (t !== void 0)
1373
- return t === null ? null : {
1374
- contractOfferId: t.contractOfferId,
1375
- policy: P(t.policy)
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(t) {
1379
- let e = !0;
1380
- return e = e && "endpoint" in t, e = e && "participantId" in t, e = e && "asset" in t, e = e && "contractOffers" in t, e;
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 Ne(t) {
1383
- return Ae(t);
1451
+ function Nt(e) {
1452
+ return Ut(e);
1384
1453
  }
1385
- function Ae(t, e) {
1386
- return t == null ? t : {
1387
- endpoint: t.endpoint,
1388
- participantId: t.participantId,
1389
- asset: l(t.asset),
1390
- contractOffers: t.contractOffers.map(
1391
- De
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(t) {
1396
- if (t !== void 0)
1397
- return t === null ? null : {
1398
- endpoint: t.endpoint,
1399
- participantId: t.participantId,
1400
- asset: m(t.asset),
1401
- contractOffers: t.contractOffers.map(
1402
- Te
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 Je extends g {
1475
+ class At extends l {
1407
1476
  /**
1408
1477
  * Available and used resources of a connector.
1409
1478
  */
1410
- async connectorLimitsRaw(e) {
1411
- const r = {}, n = {}, i = await this.request(
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: n,
1484
+ headers: i,
1416
1485
  query: r
1417
1486
  },
1418
- e
1487
+ t
1419
1488
  );
1420
1489
  return new c(
1421
- i,
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(e) {
1429
- return await (await this.connectorLimitsRaw(e)).value();
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(e, r) {
1436
- if (e.blobId === null || e.blobId === void 0)
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 (e.uiAssetCreateRequest === null || e.uiAssetCreateRequest === void 0)
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 n = {}, i = {};
1447
- i["Content-Type"] = "application/json";
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(e.blobId))
1521
+ encodeURIComponent(String(t.blobId))
1453
1522
  ),
1454
1523
  method: "POST",
1455
- headers: i,
1456
- query: n,
1457
- body: b(
1458
- e.uiAssetCreateRequest
1524
+ headers: o,
1525
+ query: i,
1526
+ body: L(
1527
+ t.uiAssetCreateRequest
1459
1528
  )
1460
1529
  },
1461
1530
  r
1462
1531
  );
1463
- return new v(a);
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(e, r) {
1470
- await this.fileUploadCreateAssetRaw(e, r);
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(e) {
1477
- const r = {}, n = {}, i = await this.request(
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: n,
1550
+ headers: i,
1482
1551
  query: r
1483
1552
  },
1484
- e
1553
+ t
1485
1554
  );
1486
- return this.isJsonMime(i.headers.get("content-type")) ? new c(i) : new _(i);
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(e) {
1493
- return await (await this.fileUploadRequestSasTokenRaw(e)).value();
1561
+ async fileUploadRequestSasToken(t) {
1562
+ return await (await this.fileUploadRequestSasTokenRaw(t)).value();
1494
1563
  }
1495
1564
  }
1496
- class Re extends g {
1565
+ class Jt extends l {
1497
1566
  /**
1498
1567
  * Create a new Asset
1499
1568
  */
1500
- async createAssetRaw(e, r) {
1501
- const n = {}, i = {};
1502
- i["Content-Type"] = "application/json";
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: i,
1508
- query: n,
1509
- body: b(
1510
- e.uiAssetCreateRequest
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(e = {}, r) {
1592
+ async createAsset(t = {}, r) {
1524
1593
  return await (await this.createAssetRaw(
1525
- e,
1594
+ t,
1526
1595
  r
1527
1596
  )).value();
1528
1597
  }
1529
1598
  /**
1530
1599
  * Create a new Contract Definition
1531
1600
  */
1532
- async createContractDefinitionRaw(e, r) {
1533
- const n = {}, i = {};
1534
- i["Content-Type"] = "application/json";
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: i,
1540
- query: n,
1541
- body: qt(
1542
- e.contractDefinitionRequest
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(e = {}, r) {
1624
+ async createContractDefinition(t = {}, r) {
1556
1625
  return await (await this.createContractDefinitionRaw(
1557
- e,
1626
+ t,
1558
1627
  r
1559
1628
  )).value();
1560
1629
  }
1561
1630
  /**
1562
1631
  * Create a new Policy Definition
1563
1632
  */
1564
- async createPolicyDefinitionRaw(e, r) {
1565
- const n = {}, i = {};
1566
- i["Content-Type"] = "application/json";
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: i,
1572
- query: n,
1573
- body: ce(
1574
- e.policyDefinitionCreateRequest
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(e = {}, r) {
1656
+ async createPolicyDefinition(t = {}, r) {
1588
1657
  return await (await this.createPolicyDefinitionRaw(
1589
- e,
1658
+ t,
1590
1659
  r
1591
1660
  )).value();
1592
1661
  }
1593
1662
  /**
1594
1663
  * Delete an Asset
1595
1664
  */
1596
- async deleteAssetRaw(e, r) {
1597
- if (e.assetId === null || e.assetId === void 0)
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 n = {}, i = {}, a = await this.request(
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(e.assetId))
1675
+ encodeURIComponent(String(t.assetId))
1607
1676
  ),
1608
1677
  method: "DELETE",
1609
- headers: i,
1610
- query: n
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(e, r) {
1691
+ async deleteAsset(t, r) {
1623
1692
  return await (await this.deleteAssetRaw(
1624
- e,
1693
+ t,
1625
1694
  r
1626
1695
  )).value();
1627
1696
  }
1628
1697
  /**
1629
1698
  * Delete a Contract Definition
1630
1699
  */
1631
- async deleteContractDefinitionRaw(e, r) {
1632
- if (e.contractDefinitionId === null || e.contractDefinitionId === void 0)
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 n = {}, i = {}, a = await this.request(
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(e.contractDefinitionId)
1711
+ String(t.contractDefinitionId)
1643
1712
  )
1644
1713
  ),
1645
1714
  method: "DELETE",
1646
- headers: i,
1647
- query: n
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(e, r) {
1728
+ async deleteContractDefinition(t, r) {
1660
1729
  return await (await this.deleteContractDefinitionRaw(
1661
- e,
1730
+ t,
1662
1731
  r
1663
1732
  )).value();
1664
1733
  }
1665
1734
  /**
1666
1735
  * Delete a Policy Definition
1667
1736
  */
1668
- async deletePolicyDefinitionRaw(e, r) {
1669
- if (e.policyId === null || e.policyId === void 0)
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 n = {}, i = {}, a = await this.request(
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(e.policyId))
1747
+ encodeURIComponent(String(t.policyId))
1679
1748
  ),
1680
1749
  method: "DELETE",
1681
- headers: i,
1682
- query: n
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(e, r) {
1763
+ async deletePolicyDefinition(t, r) {
1695
1764
  return await (await this.deletePolicyDefinitionRaw(
1696
- e,
1765
+ t,
1697
1766
  r
1698
1767
  )).value();
1699
1768
  }
1700
1769
  /**
1701
1770
  * Updates an Asset\'s metadata
1702
1771
  */
1703
- async editAssetMetadataRaw(e, r) {
1704
- if (e.assetId === null || e.assetId === void 0)
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 n = {}, i = {};
1710
- i["Content-Type"] = "application/json";
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(e.assetId))
1784
+ encodeURIComponent(String(t.assetId))
1716
1785
  ),
1717
1786
  method: "PUT",
1718
- headers: i,
1719
- query: n,
1720
- body: Ce(
1721
- e.uiAssetEditMetadataRequest
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(e, r) {
1803
+ async editAssetMetadata(t, r) {
1735
1804
  return await (await this.editAssetMetadataRaw(
1736
- e,
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(e) {
1744
- const r = {}, n = {}, i = await this.request(
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: n,
1817
+ headers: i,
1749
1818
  query: r
1750
1819
  },
1751
- e
1820
+ t
1752
1821
  );
1753
1822
  return new c(
1754
- i,
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(e) {
1762
- return await (await this.getAssetPageRaw(e)).value();
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(e, r) {
1768
- const n = {};
1769
- e.connectorEndpoint !== void 0 && (n.connectorEndpoint = e.connectorEndpoint);
1770
- const i = {}, a = await this.request(
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: i,
1775
- query: n
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(Ne)
1850
+ (s) => s.map(Nt)
1782
1851
  );
1783
1852
  }
1784
1853
  /**
1785
1854
  * Fetch a connector\'s data offers
1786
1855
  */
1787
- async getCatalogPageDataOffers(e = {}, r) {
1856
+ async getCatalogPageDataOffers(t = {}, r) {
1788
1857
  return await (await this.getCatalogPageDataOffersRaw(
1789
- e,
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(e) {
1797
- const r = {}, n = {}, i = await this.request(
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: n,
1870
+ headers: i,
1802
1871
  query: r
1803
1872
  },
1804
- e
1873
+ t
1805
1874
  );
1806
1875
  return new c(
1807
- i,
1808
- (a) => mt(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(e) {
1815
- return await (await this.getContractAgreementPageRaw(e)).value();
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(e) {
1821
- const r = {}, n = {}, i = await this.request(
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: n,
1894
+ headers: i,
1826
1895
  query: r
1827
1896
  },
1828
- e
1897
+ t
1829
1898
  );
1830
1899
  return new c(
1831
- i,
1832
- (a) => Jt(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(e) {
1839
- return await (await this.getContractDefinitionPageRaw(e)).value();
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(e, r) {
1845
- if (e.contractNegotiationId === null || e.contractNegotiationId === void 0)
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 n = {}, i = {}, a = await this.request(
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(e.contractNegotiationId)
1924
+ String(t.contractNegotiationId)
1856
1925
  )
1857
1926
  ),
1858
1927
  method: "GET",
1859
- headers: i,
1860
- query: n
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(e, r) {
1941
+ async getContractNegotiation(t, r) {
1873
1942
  return await (await this.getContractNegotiationRaw(
1874
- e,
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(e) {
1882
- const r = {}, n = {}, i = await this.request(
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: n,
1955
+ headers: i,
1887
1956
  query: r
1888
1957
  },
1889
- e
1958
+ t
1890
1959
  );
1891
1960
  return new c(
1892
- i,
1893
- (a) => Vt(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(e) {
1900
- return await (await this.getDashboardPageRaw(e)).value();
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(e) {
1906
- const r = {}, n = {}, i = await this.request(
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: n,
1979
+ headers: i,
1911
1980
  query: r
1912
1981
  },
1913
- e
1982
+ t
1914
1983
  );
1915
1984
  return new c(
1916
- i,
1917
- (a) => fe(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(e) {
1924
- return await (await this.getPolicyDefinitionPageRaw(e)).value();
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(e) {
1930
- const r = {}, n = {}, i = await this.request(
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: n,
2003
+ headers: i,
1935
2004
  query: r
1936
2005
  },
1937
- e
2006
+ t
1938
2007
  );
1939
2008
  return new c(
1940
- i,
1941
- (a) => Pe(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(e) {
1948
- return await (await this.getTransferHistoryPageRaw(e)).value();
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(e, r) {
1954
- if (e.transferProcessId === null || e.transferProcessId === void 0)
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 n = {}, i = {}, a = await this.request(
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(e.transferProcessId)
2033
+ String(t.transferProcessId)
1965
2034
  )
1966
2035
  ),
1967
2036
  method: "GET",
1968
- headers: i,
1969
- query: n
2037
+ headers: o,
2038
+ query: i
1970
2039
  },
1971
2040
  r
1972
2041
  );
1973
2042
  return new c(
1974
2043
  a,
1975
- (s) => l(s)
2044
+ (s) => g(s)
1976
2045
  );
1977
2046
  }
1978
2047
  /**
1979
2048
  * Queries a transfer process\' asset
1980
2049
  */
1981
- async getTransferProcessAsset(e, r) {
2050
+ async getTransferProcessAsset(t, r) {
1982
2051
  return await (await this.getTransferProcessAssetRaw(
1983
- e,
2052
+ t,
1984
2053
  r
1985
2054
  )).value();
1986
2055
  }
1987
2056
  /**
1988
2057
  * Initiate a new Contract Negotiation
1989
2058
  */
1990
- async initiateContractNegotiationRaw(e, r) {
1991
- const n = {}, i = {};
1992
- i["Content-Type"] = "application/json";
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: i,
1998
- query: n,
1999
- body: bt(
2000
- e.contractNegotiationRequest
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(e = {}, r) {
2082
+ async initiateContractNegotiation(t = {}, r) {
2014
2083
  return await (await this.initiateContractNegotiationRaw(
2015
- e,
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(e, r) {
2023
- const n = {}, i = {};
2024
- i["Content-Type"] = "application/json";
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: i,
2030
- query: n,
2031
- body: Yt(
2032
- e.initiateCustomTransferRequest
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(e = {}, r) {
2114
+ async initiateCustomTransfer(t = {}, r) {
2046
2115
  return await (await this.initiateCustomTransferRaw(
2047
- e,
2116
+ t,
2048
2117
  r
2049
2118
  )).value();
2050
2119
  }
2051
2120
  /**
2052
2121
  * Initiate a Transfer Process
2053
2122
  */
2054
- async initiateTransferRaw(e, r) {
2055
- const n = {}, i = {};
2056
- i["Content-Type"] = "application/json";
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: i,
2062
- query: n,
2063
- body: Zt(
2064
- e.initiateTransferRequest
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(e = {}, r) {
2146
+ async initiateTransfer(t = {}, r) {
2078
2147
  return await (await this.initiateTransferRaw(
2079
- e,
2148
+ t,
2080
2149
  r
2081
2150
  )).value();
2082
2151
  }
2083
2152
  }
2084
- class Ue extends g {
2153
+ class Ft extends l {
2085
2154
  /**
2086
2155
  * Basic KPIs about the running EDC Connector.
2087
2156
  */
2088
- async getKpisRaw(e) {
2089
- const r = {}, n = {}, i = await this.request(
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: n,
2162
+ headers: i,
2094
2163
  query: r
2095
2164
  },
2096
- e
2165
+ t
2097
2166
  );
2098
2167
  return new c(
2099
- i,
2100
- (a) => re(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(e) {
2107
- return await (await this.getKpisRaw(e)).value();
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(e) {
2113
- const r = {}, n = {}, i = await this.request(
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: n,
2186
+ headers: i,
2118
2187
  query: r
2119
2188
  },
2120
- e
2189
+ t
2121
2190
  );
2122
- return new c(i);
2191
+ return new c(o);
2123
2192
  }
2124
2193
  /**
2125
2194
  * List available functions in policies, prohibitions and obligations.
2126
2195
  */
2127
- async getSupportedFunctions(e) {
2128
- return await (await this.getSupportedFunctionsRaw(e)).value();
2196
+ async getSupportedFunctions(t) {
2197
+ return await (await this.getSupportedFunctionsRaw(t)).value();
2129
2198
  }
2130
2199
  }
2131
- function Wr(t) {
2132
- const e = new D({
2133
- basePath: t.managementApiUrl,
2200
+ function Wr(e) {
2201
+ const t = new D({
2202
+ basePath: e.managementApiUrl,
2134
2203
  headers: {
2135
- "X-Api-Key": t.managementApiKey ?? "ApiKeyDefaultValue"
2204
+ "X-Api-Key": e.managementApiKey ?? "ApiKeyDefaultValue"
2136
2205
  },
2137
2206
  credentials: "same-origin",
2138
- ...t.configOverrides
2207
+ ...e.configOverrides
2139
2208
  });
2140
2209
  return {
2141
- uiApi: new Re(e),
2142
- useCaseApi: new Ue(e),
2143
- enterpriseEditionApi: new Je(e)
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
- ke as AssetPageToJSON,
2150
- H as BASE_PATH,
2151
- g as BaseAPI,
2152
- Me as BlobApiResponse,
2153
- Fe as COLLECTION_FORMATS,
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
- Ge as ConnectorLimitsToJSON,
2158
- ft as ContractAgreementCardFromJSON,
2159
- gt as ContractAgreementCardFromJSONTyped,
2160
- lt as ContractAgreementCardToJSON,
2161
- Ke as ContractAgreementDirection,
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
- $e as ContractAgreementDirectionToJSON,
2165
- mt as ContractAgreementPageFromJSON,
2166
- yt as ContractAgreementPageFromJSONTyped,
2233
+ Kt as ContractAgreementDirectionToJSON,
2234
+ me as ContractAgreementPageFromJSON,
2235
+ ye as ContractAgreementPageFromJSONTyped,
2167
2236
  rr as ContractAgreementPageToJSON,
2168
- tt as ContractAgreementTransferProcessFromJSON,
2169
- et as ContractAgreementTransferProcessFromJSONTyped,
2170
- rt as ContractAgreementTransferProcessToJSON,
2171
- Tt as ContractDefinitionEntryFromJSON,
2172
- Nt as ContractDefinitionEntryFromJSONTyped,
2173
- At as ContractDefinitionEntryToJSON,
2174
- Jt as ContractDefinitionPageFromJSON,
2175
- Rt as ContractDefinitionPageFromJSONTyped,
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
- gr as ContractDefinitionRequestFromJSON,
2178
- Ut as ContractDefinitionRequestFromJSONTyped,
2179
- qt as ContractDefinitionRequestToJSON,
2246
+ lr as ContractDefinitionRequestFromJSON,
2247
+ Fe as ContractDefinitionRequestFromJSONTyped,
2248
+ Re as ContractDefinitionRequestToJSON,
2180
2249
  mr as ContractNegotiationRequestFromJSON,
2181
- Ft as ContractNegotiationRequestFromJSONTyped,
2182
- bt as ContractNegotiationRequestToJSON,
2250
+ qe as ContractNegotiationRequestFromJSONTyped,
2251
+ Le as ContractNegotiationRequestToJSON,
2183
2252
  yr as ContractNegotiationSimplifiedState,
2184
- Et as ContractNegotiationSimplifiedStateFromJSON,
2185
- Mt as ContractNegotiationSimplifiedStateFromJSONTyped,
2253
+ be as ContractNegotiationSimplifiedStateFromJSON,
2254
+ Ee as ContractNegotiationSimplifiedStateFromJSONTyped,
2186
2255
  Pr as ContractNegotiationSimplifiedStateToJSON,
2187
- Lt as ContractNegotiationStateFromJSON,
2188
- Ht as ContractNegotiationStateFromJSONTyped,
2189
- kt as ContractNegotiationStateToJSON,
2190
- xt as DashboardDapsConfigFromJSON,
2191
- Gt as DashboardDapsConfigFromJSONTyped,
2192
- Kt as DashboardDapsConfigToJSON,
2193
- $t as DashboardMiwConfigFromJSON,
2194
- vt as DashboardMiwConfigFromJSONTyped,
2195
- _t as DashboardMiwConfigToJSON,
2196
- Vt as DashboardPageFromJSON,
2197
- Bt as DashboardPageFromJSONTyped,
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
- Qt as DashboardTransferAmountsFromJSONTyped,
2201
- C as DashboardTransferAmountsToJSON,
2202
- k as DefaultConfig,
2203
- Je as EnterpriseEditionApi,
2204
- $ as FetchError,
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
- zt as IdResponseDtoFromJSONTyped,
2275
+ ze as IdResponseDtoFromJSONTyped,
2207
2276
  Tr as IdResponseDtoToJSON,
2208
- Ar as InitiateCustomTransferRequestFromJSON,
2209
- Xt as InitiateCustomTransferRequestFromJSONTyped,
2210
- Yt as InitiateCustomTransferRequestToJSON,
2211
- Rr as InitiateTransferRequestFromJSON,
2212
- Wt as InitiateTransferRequestFromJSONTyped,
2213
- Zt as InitiateTransferRequestToJSON,
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
- re as KpiResultFromJSON,
2216
- ne as KpiResultFromJSONTyped,
2217
- Fr as KpiResultToJSON,
2218
- Be as OperatorDto,
2219
- nt as OperatorDtoFromJSON,
2220
- it as OperatorDtoFromJSONTyped,
2221
- ze as OperatorDtoToJSON,
2222
- Mr as PolicyDefinitionCreateRequestFromJSON,
2223
- se as PolicyDefinitionCreateRequestFromJSONTyped,
2224
- ce as PolicyDefinitionCreateRequestToJSON,
2225
- de as PolicyDefinitionDtoFromJSON,
2226
- ue as PolicyDefinitionDtoFromJSONTyped,
2227
- pe as PolicyDefinitionDtoToJSON,
2228
- fe as PolicyDefinitionPageFromJSON,
2229
- ge as PolicyDefinitionPageFromJSONTyped,
2230
- kr as PolicyDefinitionPageToJSON,
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
- K as ResponseError,
2301
+ G as ResponseError,
2233
2302
  _ as TextApiResponse,
2234
- le as TransferHistoryEntryFromJSON,
2235
- me as TransferHistoryEntryFromJSONTyped,
2236
- ye as TransferHistoryEntryToJSON,
2237
- Pe as TransferHistoryPageFromJSON,
2238
- he as TransferHistoryPageFromJSONTyped,
2239
- Kr as TransferHistoryPageToJSON,
2240
- ve as TransferProcessSimplifiedState,
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
- _e as TransferProcessSimplifiedStateToJSON,
2244
- A as TransferProcessStateFromJSON,
2312
+ _t as TransferProcessSimplifiedStateToJSON,
2313
+ U as TransferProcessStateFromJSON,
2245
2314
  j as TransferProcessStateFromJSONTyped,
2246
- J as TransferProcessStateToJSON,
2247
- jt as TransferProcessStatesDtoFromJSON,
2248
- te as TransferProcessStatesDtoFromJSONTyped,
2249
- ee as TransferProcessStatesDtoToJSON,
2250
- Re as UIApi,
2251
- vr as UiAssetCreateRequestFromJSON,
2252
- we as UiAssetCreateRequestFromJSONTyped,
2253
- b as UiAssetCreateRequestToJSON,
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
- Ie as UiAssetEditMetadataRequestFromJSONTyped,
2256
- Ce as UiAssetEditMetadataRequestToJSON,
2257
- l as UiAssetFromJSON,
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
- Se as UiContractNegotiationFromJSONTyped,
2330
+ St as UiContractNegotiationFromJSONTyped,
2262
2331
  Br as UiContractNegotiationToJSON,
2263
- De as UiContractOfferFromJSON,
2264
- Oe as UiContractOfferFromJSONTyped,
2265
- Te as UiContractOfferToJSON,
2266
- q as UiCriterionFromJSON,
2267
- Ot as UiCriterionFromJSONTyped,
2268
- wt as UiCriterionLiteralFromJSON,
2269
- It as UiCriterionLiteralFromJSONTyped,
2270
- Ct as UiCriterionLiteralToJSON,
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
- Pt as UiCriterionLiteralTypeFromJSON,
2273
- ht as UiCriterionLiteralTypeFromJSONTyped,
2341
+ Pe as UiCriterionLiteralTypeFromJSON,
2342
+ he as UiCriterionLiteralTypeFromJSONTyped,
2274
2343
  ir as UiCriterionLiteralTypeToJSON,
2275
2344
  ar as UiCriterionOperator,
2276
- St as UiCriterionOperatorFromJSON,
2277
- Dt as UiCriterionOperatorFromJSONTyped,
2345
+ Se as UiCriterionOperatorFromJSON,
2346
+ De as UiCriterionOperatorFromJSONTyped,
2278
2347
  sr as UiCriterionOperatorToJSON,
2279
- F as UiCriterionToJSON,
2280
- Ne as UiDataOfferFromJSON,
2281
- Ae as UiDataOfferFromJSONTyped,
2348
+ q as UiCriterionToJSON,
2349
+ Nt as UiDataOfferFromJSON,
2350
+ Ut as UiDataOfferFromJSONTyped,
2282
2351
  Yr as UiDataOfferToJSON,
2283
- R as UiPolicyConstraintFromJSON,
2284
- ut as UiPolicyConstraintFromJSONTyped,
2285
- U as UiPolicyConstraintToJSON,
2286
- ie as UiPolicyCreateRequestFromJSON,
2287
- oe as UiPolicyCreateRequestFromJSONTyped,
2288
- ae as UiPolicyCreateRequestToJSON,
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
- pt as UiPolicyFromJSONTyped,
2291
- st as UiPolicyLiteralFromJSON,
2292
- ct as UiPolicyLiteralFromJSONTyped,
2293
- dt as UiPolicyLiteralToJSON,
2294
- Xe as UiPolicyLiteralType,
2295
- ot as UiPolicyLiteralTypeFromJSON,
2296
- at as UiPolicyLiteralTypeFromJSONTyped,
2297
- Ye as UiPolicyLiteralTypeToJSON,
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
- Ue as UseCaseApi,
2300
- v as VoidApiResponse,
2368
+ Ft as UseCaseApi,
2369
+ $ as VoidApiResponse,
2301
2370
  Wr as buildEdcClient,
2302
- Ee as canConsumeForm,
2303
- o as exists,
2304
- He as instanceOfAssetPage,
2305
- xe as instanceOfConnectorLimits,
2306
- tr as instanceOfContractAgreementCard,
2307
- er as instanceOfContractAgreementPage,
2308
- Ve as instanceOfContractAgreementTransferProcess,
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
- lr as instanceOfContractNegotiationRequest,
2381
+ gr as instanceOfContractNegotiationRequest,
2313
2382
  hr as instanceOfContractNegotiationState,
2314
- wr as instanceOfDashboardDapsConfig,
2383
+ Cr as instanceOfDashboardDapsConfig,
2315
2384
  Ir as instanceOfDashboardMiwConfig,
2316
2385
  Sr as instanceOfDashboardPage,
2317
- Cr as instanceOfDashboardTransferAmounts,
2386
+ wr as instanceOfDashboardTransferAmounts,
2318
2387
  Or as instanceOfIdResponseDto,
2319
2388
  Nr as instanceOfInitiateCustomTransferRequest,
2320
- Jr as instanceOfInitiateTransferRequest,
2321
- qr as instanceOfKpiResult,
2322
- Er as instanceOfPolicyDefinitionCreateRequest,
2323
- Lr as instanceOfPolicyDefinitionDto,
2324
- Hr as instanceOfPolicyDefinitionPage,
2325
- xr as instanceOfTransferHistoryEntry,
2326
- Gr as instanceOfTransferHistoryPage,
2327
- Qe as instanceOfTransferProcessState,
2328
- Ur as instanceOfTransferProcessStatesDto,
2329
- Le as instanceOfUiAsset,
2330
- $r as instanceOfUiAssetCreateRequest,
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
- je as instanceOfUiPolicy,
2338
- Ze as instanceOfUiPolicyConstraint,
2339
- br as instanceOfUiPolicyCreateRequest,
2340
- We as instanceOfUiPolicyLiteral,
2341
- be as mapValues,
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