@sovity.de/edc-client 10.5.1 → 12.0.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.
- package/README.md +22 -6
- package/dist/sovity-edc-client.d.ts +579 -202
- package/dist/sovity-edc-client.js +2782 -2331
- package/dist/sovity-edc-client.js.map +1 -1
- package/dist/sovity-edc-client.umd.cjs +1 -1
- package/dist/sovity-edc-client.umd.cjs.map +1 -1
- package/package.json +3 -3
|
@@ -21,7 +21,9 @@ export declare function AssetPageFromJSON(json: any): AssetPage;
|
|
|
21
21
|
|
|
22
22
|
export declare function AssetPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetPage;
|
|
23
23
|
|
|
24
|
-
export declare function AssetPageToJSON(
|
|
24
|
+
export declare function AssetPageToJSON(json: any): AssetPage;
|
|
25
|
+
|
|
26
|
+
export declare function AssetPageToJSONTyped(value?: AssetPage | null, ignoreDiscriminator?: boolean): any;
|
|
25
27
|
|
|
26
28
|
/**
|
|
27
29
|
* sovity EDC API Wrapper
|
|
@@ -80,6 +82,34 @@ export declare class BlobApiResponse {
|
|
|
80
82
|
*/
|
|
81
83
|
export declare function buildEdcClient(opts: EdcClientOptions): EdcClient;
|
|
82
84
|
|
|
85
|
+
/**
|
|
86
|
+
* Build information about the connector backend.
|
|
87
|
+
* @export
|
|
88
|
+
* @interface BuildInfo
|
|
89
|
+
*/
|
|
90
|
+
export declare interface BuildInfo {
|
|
91
|
+
/**
|
|
92
|
+
* Container build date. May be overridden.
|
|
93
|
+
* @type {string}
|
|
94
|
+
* @memberof BuildInfo
|
|
95
|
+
*/
|
|
96
|
+
buildDate: string;
|
|
97
|
+
/**
|
|
98
|
+
* Container build release version or a combination of last tag + commit hash. May be overridden.
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof BuildInfo
|
|
101
|
+
*/
|
|
102
|
+
buildVersion: string;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export declare function BuildInfoFromJSON(json: any): BuildInfo;
|
|
106
|
+
|
|
107
|
+
export declare function BuildInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): BuildInfo;
|
|
108
|
+
|
|
109
|
+
export declare function BuildInfoToJSON(json: any): BuildInfo;
|
|
110
|
+
|
|
111
|
+
export declare function BuildInfoToJSONTyped(value?: BuildInfo | null, ignoreDiscriminator?: boolean): any;
|
|
112
|
+
|
|
83
113
|
export declare function canConsumeForm(consumes: Consume[]): boolean;
|
|
84
114
|
|
|
85
115
|
/**
|
|
@@ -95,13 +125,13 @@ export declare interface CatalogFilterExpression {
|
|
|
95
125
|
*/
|
|
96
126
|
operandLeft: string;
|
|
97
127
|
/**
|
|
98
|
-
*
|
|
128
|
+
* Operator
|
|
99
129
|
* @type {CatalogFilterExpressionOperator}
|
|
100
130
|
* @memberof CatalogFilterExpression
|
|
101
131
|
*/
|
|
102
132
|
operator: CatalogFilterExpressionOperator;
|
|
103
133
|
/**
|
|
104
|
-
*
|
|
134
|
+
* Right Operand
|
|
105
135
|
* @type {CatalogFilterExpressionLiteral}
|
|
106
136
|
* @memberof CatalogFilterExpression
|
|
107
137
|
*/
|
|
@@ -142,7 +172,9 @@ export declare function CatalogFilterExpressionLiteralFromJSON(json: any): Catal
|
|
|
142
172
|
|
|
143
173
|
export declare function CatalogFilterExpressionLiteralFromJSONTyped(json: any, ignoreDiscriminator: boolean): CatalogFilterExpressionLiteral;
|
|
144
174
|
|
|
145
|
-
export declare function CatalogFilterExpressionLiteralToJSON(
|
|
175
|
+
export declare function CatalogFilterExpressionLiteralToJSON(json: any): CatalogFilterExpressionLiteral;
|
|
176
|
+
|
|
177
|
+
export declare function CatalogFilterExpressionLiteralToJSONTyped(value?: CatalogFilterExpressionLiteral | null, ignoreDiscriminator?: boolean): any;
|
|
146
178
|
|
|
147
179
|
/**
|
|
148
180
|
* Value type of a filter expression criterion
|
|
@@ -161,6 +193,8 @@ export declare function CatalogFilterExpressionLiteralTypeFromJSONTyped(json: an
|
|
|
161
193
|
|
|
162
194
|
export declare function CatalogFilterExpressionLiteralTypeToJSON(value?: CatalogFilterExpressionLiteralType | null): any;
|
|
163
195
|
|
|
196
|
+
export declare function CatalogFilterExpressionLiteralTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CatalogFilterExpressionLiteralType;
|
|
197
|
+
|
|
164
198
|
/**
|
|
165
199
|
* Operator for filter expressions
|
|
166
200
|
* @export
|
|
@@ -179,7 +213,11 @@ export declare function CatalogFilterExpressionOperatorFromJSONTyped(json: any,
|
|
|
179
213
|
|
|
180
214
|
export declare function CatalogFilterExpressionOperatorToJSON(value?: CatalogFilterExpressionOperator | null): any;
|
|
181
215
|
|
|
182
|
-
export declare function
|
|
216
|
+
export declare function CatalogFilterExpressionOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): CatalogFilterExpressionOperator;
|
|
217
|
+
|
|
218
|
+
export declare function CatalogFilterExpressionToJSON(json: any): CatalogFilterExpression;
|
|
219
|
+
|
|
220
|
+
export declare function CatalogFilterExpressionToJSONTyped(value?: CatalogFilterExpression | null, ignoreDiscriminator?: boolean): any;
|
|
183
221
|
|
|
184
222
|
/**
|
|
185
223
|
* Catalog query parameters
|
|
@@ -188,11 +226,17 @@ export declare function CatalogFilterExpressionToJSON(value?: CatalogFilterExpre
|
|
|
188
226
|
*/
|
|
189
227
|
export declare interface CatalogQuery {
|
|
190
228
|
/**
|
|
191
|
-
* Target EDC DSP endpoint URL
|
|
229
|
+
* Target EDC DSP endpoint URL. Can contain a queryParam 'participantId', which is provided by default in the Connector Endpoint in the EDC UI.
|
|
192
230
|
* @type {string}
|
|
193
231
|
* @memberof CatalogQuery
|
|
194
232
|
*/
|
|
195
233
|
connectorEndpoint: string;
|
|
234
|
+
/**
|
|
235
|
+
* Target EDC Participant ID. It is required if the connector endpoint does not contain the queryParam 'participantId'.
|
|
236
|
+
* @type {string}
|
|
237
|
+
* @memberof CatalogQuery
|
|
238
|
+
*/
|
|
239
|
+
participantId?: string;
|
|
196
240
|
/**
|
|
197
241
|
* Limit the number of results
|
|
198
242
|
* @type {number}
|
|
@@ -217,7 +261,9 @@ export declare function CatalogQueryFromJSON(json: any): CatalogQuery;
|
|
|
217
261
|
|
|
218
262
|
export declare function CatalogQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): CatalogQuery;
|
|
219
263
|
|
|
220
|
-
export declare function CatalogQueryToJSON(
|
|
264
|
+
export declare function CatalogQueryToJSON(json: any): CatalogQuery;
|
|
265
|
+
|
|
266
|
+
export declare function CatalogQueryToJSONTyped(value?: CatalogQuery | null, ignoreDiscriminator?: boolean): any;
|
|
221
267
|
|
|
222
268
|
/**
|
|
223
269
|
* Credentials for connecting to the EDC via the OAuth2 "Client Credentials" flow.
|
|
@@ -245,7 +291,7 @@ export declare class Configuration {
|
|
|
245
291
|
get queryParamsStringify(): (params: HTTPQuery) => string;
|
|
246
292
|
get username(): string | undefined;
|
|
247
293
|
get password(): string | undefined;
|
|
248
|
-
get apiKey(): ((name: string) => string) | undefined;
|
|
294
|
+
get apiKey(): ((name: string) => string | Promise<string>) | undefined;
|
|
249
295
|
get accessToken(): ((name?: string, scopes?: string[]) => string | Promise<string>) | undefined;
|
|
250
296
|
get headers(): HTTPHeaders | undefined;
|
|
251
297
|
get credentials(): RequestCredentials | undefined;
|
|
@@ -258,7 +304,7 @@ export declare interface ConfigurationParameters {
|
|
|
258
304
|
queryParamsStringify?: (params: HTTPQuery) => string;
|
|
259
305
|
username?: string;
|
|
260
306
|
password?: string;
|
|
261
|
-
apiKey?: string | ((name: string) => string);
|
|
307
|
+
apiKey?: string | Promise<string> | ((name: string) => string | Promise<string>);
|
|
262
308
|
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string | Promise<string>);
|
|
263
309
|
headers?: HTTPHeaders;
|
|
264
310
|
credentials?: RequestCredentials;
|
|
@@ -288,7 +334,9 @@ export declare function ConnectorLimitsFromJSON(json: any): ConnectorLimits;
|
|
|
288
334
|
|
|
289
335
|
export declare function ConnectorLimitsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectorLimits;
|
|
290
336
|
|
|
291
|
-
export declare function ConnectorLimitsToJSON(
|
|
337
|
+
export declare function ConnectorLimitsToJSON(json: any): ConnectorLimits;
|
|
338
|
+
|
|
339
|
+
export declare function ConnectorLimitsToJSONTyped(value?: ConnectorLimits | null, ignoreDiscriminator?: boolean): any;
|
|
292
340
|
|
|
293
341
|
export declare interface Consume {
|
|
294
342
|
contentType: string;
|
|
@@ -313,7 +361,7 @@ export declare interface ContractAgreementCard {
|
|
|
313
361
|
*/
|
|
314
362
|
contractNegotiationId: string;
|
|
315
363
|
/**
|
|
316
|
-
*
|
|
364
|
+
* Incoming vs Outgoing
|
|
317
365
|
* @type {ContractAgreementDirection}
|
|
318
366
|
* @memberof ContractAgreementCard
|
|
319
367
|
*/
|
|
@@ -337,13 +385,13 @@ export declare interface ContractAgreementCard {
|
|
|
337
385
|
*/
|
|
338
386
|
contractSigningDate: Date;
|
|
339
387
|
/**
|
|
340
|
-
*
|
|
388
|
+
* Asset details
|
|
341
389
|
* @type {UiAsset}
|
|
342
390
|
* @memberof ContractAgreementCard
|
|
343
391
|
*/
|
|
344
392
|
asset: UiAsset;
|
|
345
393
|
/**
|
|
346
|
-
*
|
|
394
|
+
* Contract Policy
|
|
347
395
|
* @type {UiPolicy}
|
|
348
396
|
* @memberof ContractAgreementCard
|
|
349
397
|
*/
|
|
@@ -355,13 +403,13 @@ export declare interface ContractAgreementCard {
|
|
|
355
403
|
*/
|
|
356
404
|
transferProcesses: Array<ContractAgreementTransferProcess>;
|
|
357
405
|
/**
|
|
358
|
-
*
|
|
406
|
+
* Contract Agreement's Termination Status
|
|
359
407
|
* @type {ContractTerminationStatus}
|
|
360
408
|
* @memberof ContractAgreementCard
|
|
361
409
|
*/
|
|
362
410
|
terminationStatus: ContractTerminationStatus;
|
|
363
411
|
/**
|
|
364
|
-
*
|
|
412
|
+
* Contract Agreement's Metadata
|
|
365
413
|
* @type {ContractAgreementTerminationInfo}
|
|
366
414
|
* @memberof ContractAgreementCard
|
|
367
415
|
*/
|
|
@@ -372,7 +420,9 @@ export declare function ContractAgreementCardFromJSON(json: any): ContractAgreem
|
|
|
372
420
|
|
|
373
421
|
export declare function ContractAgreementCardFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementCard;
|
|
374
422
|
|
|
375
|
-
export declare function ContractAgreementCardToJSON(
|
|
423
|
+
export declare function ContractAgreementCardToJSON(json: any): ContractAgreementCard;
|
|
424
|
+
|
|
425
|
+
export declare function ContractAgreementCardToJSONTyped(value?: ContractAgreementCard | null, ignoreDiscriminator?: boolean): any;
|
|
376
426
|
|
|
377
427
|
/**
|
|
378
428
|
* Whether the contract agreement is incoming or outgoing
|
|
@@ -391,6 +441,8 @@ export declare function ContractAgreementDirectionFromJSONTyped(json: any, ignor
|
|
|
391
441
|
|
|
392
442
|
export declare function ContractAgreementDirectionToJSON(value?: ContractAgreementDirection | null): any;
|
|
393
443
|
|
|
444
|
+
export declare function ContractAgreementDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): ContractAgreementDirection;
|
|
445
|
+
|
|
394
446
|
/**
|
|
395
447
|
* Data as required by the UI's Contract Agreement Page
|
|
396
448
|
* @export
|
|
@@ -416,7 +468,7 @@ export declare function ContractAgreementPageFromJSONTyped(json: any, ignoreDisc
|
|
|
416
468
|
*/
|
|
417
469
|
export declare interface ContractAgreementPageQuery {
|
|
418
470
|
/**
|
|
419
|
-
*
|
|
471
|
+
* Optionally filter the resulting contract agreements by their termination status.
|
|
420
472
|
* @type {ContractTerminationStatus}
|
|
421
473
|
* @memberof ContractAgreementPageQuery
|
|
422
474
|
*/
|
|
@@ -427,9 +479,13 @@ export declare function ContractAgreementPageQueryFromJSON(json: any): ContractA
|
|
|
427
479
|
|
|
428
480
|
export declare function ContractAgreementPageQueryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementPageQuery;
|
|
429
481
|
|
|
430
|
-
export declare function ContractAgreementPageQueryToJSON(
|
|
482
|
+
export declare function ContractAgreementPageQueryToJSON(json: any): ContractAgreementPageQuery;
|
|
431
483
|
|
|
432
|
-
export declare function
|
|
484
|
+
export declare function ContractAgreementPageQueryToJSONTyped(value?: ContractAgreementPageQuery | null, ignoreDiscriminator?: boolean): any;
|
|
485
|
+
|
|
486
|
+
export declare function ContractAgreementPageToJSON(json: any): ContractAgreementPage;
|
|
487
|
+
|
|
488
|
+
export declare function ContractAgreementPageToJSONTyped(value?: ContractAgreementPage | null, ignoreDiscriminator?: boolean): any;
|
|
433
489
|
|
|
434
490
|
/**
|
|
435
491
|
* Contract's agreement metadata
|
|
@@ -456,7 +512,7 @@ export declare interface ContractAgreementTerminationInfo {
|
|
|
456
512
|
*/
|
|
457
513
|
detail: string;
|
|
458
514
|
/**
|
|
459
|
-
*
|
|
515
|
+
* Indicates whether the termination comes from this EDC or the counterparty EDC.
|
|
460
516
|
* @type {ContractTerminatedBy}
|
|
461
517
|
* @memberof ContractAgreementTerminationInfo
|
|
462
518
|
*/
|
|
@@ -467,7 +523,9 @@ export declare function ContractAgreementTerminationInfoFromJSON(json: any): Con
|
|
|
467
523
|
|
|
468
524
|
export declare function ContractAgreementTerminationInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementTerminationInfo;
|
|
469
525
|
|
|
470
|
-
export declare function ContractAgreementTerminationInfoToJSON(
|
|
526
|
+
export declare function ContractAgreementTerminationInfoToJSON(json: any): ContractAgreementTerminationInfo;
|
|
527
|
+
|
|
528
|
+
export declare function ContractAgreementTerminationInfoToJSONTyped(value?: ContractAgreementTerminationInfo | null, ignoreDiscriminator?: boolean): any;
|
|
471
529
|
|
|
472
530
|
/**
|
|
473
531
|
* A Contract Agreement's Transfer Process
|
|
@@ -488,7 +546,7 @@ export declare interface ContractAgreementTransferProcess {
|
|
|
488
546
|
*/
|
|
489
547
|
lastUpdatedDate: Date;
|
|
490
548
|
/**
|
|
491
|
-
*
|
|
549
|
+
* Current State
|
|
492
550
|
* @type {TransferProcessState}
|
|
493
551
|
* @memberof ContractAgreementTransferProcess
|
|
494
552
|
*/
|
|
@@ -505,7 +563,9 @@ export declare function ContractAgreementTransferProcessFromJSON(json: any): Con
|
|
|
505
563
|
|
|
506
564
|
export declare function ContractAgreementTransferProcessFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractAgreementTransferProcess;
|
|
507
565
|
|
|
508
|
-
export declare function ContractAgreementTransferProcessToJSON(
|
|
566
|
+
export declare function ContractAgreementTransferProcessToJSON(json: any): ContractAgreementTransferProcess;
|
|
567
|
+
|
|
568
|
+
export declare function ContractAgreementTransferProcessToJSONTyped(value?: ContractAgreementTransferProcess | null, ignoreDiscriminator?: boolean): any;
|
|
509
569
|
|
|
510
570
|
/**
|
|
511
571
|
* Contract Definition List Entry for Contract Definition Page
|
|
@@ -543,7 +603,9 @@ export declare function ContractDefinitionEntryFromJSON(json: any): ContractDefi
|
|
|
543
603
|
|
|
544
604
|
export declare function ContractDefinitionEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractDefinitionEntry;
|
|
545
605
|
|
|
546
|
-
export declare function ContractDefinitionEntryToJSON(
|
|
606
|
+
export declare function ContractDefinitionEntryToJSON(json: any): ContractDefinitionEntry;
|
|
607
|
+
|
|
608
|
+
export declare function ContractDefinitionEntryToJSONTyped(value?: ContractDefinitionEntry | null, ignoreDiscriminator?: boolean): any;
|
|
547
609
|
|
|
548
610
|
/**
|
|
549
611
|
*
|
|
@@ -563,7 +625,9 @@ export declare function ContractDefinitionPageFromJSON(json: any): ContractDefin
|
|
|
563
625
|
|
|
564
626
|
export declare function ContractDefinitionPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractDefinitionPage;
|
|
565
627
|
|
|
566
|
-
export declare function ContractDefinitionPageToJSON(
|
|
628
|
+
export declare function ContractDefinitionPageToJSON(json: any): ContractDefinitionPage;
|
|
629
|
+
|
|
630
|
+
export declare function ContractDefinitionPageToJSONTyped(value?: ContractDefinitionPage | null, ignoreDiscriminator?: boolean): any;
|
|
567
631
|
|
|
568
632
|
/**
|
|
569
633
|
* Data for creating a Contract Definition
|
|
@@ -601,7 +665,9 @@ export declare function ContractDefinitionRequestFromJSON(json: any): ContractDe
|
|
|
601
665
|
|
|
602
666
|
export declare function ContractDefinitionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractDefinitionRequest;
|
|
603
667
|
|
|
604
|
-
export declare function ContractDefinitionRequestToJSON(
|
|
668
|
+
export declare function ContractDefinitionRequestToJSON(json: any): ContractDefinitionRequest;
|
|
669
|
+
|
|
670
|
+
export declare function ContractDefinitionRequestToJSONTyped(value?: ContractDefinitionRequest | null, ignoreDiscriminator?: boolean): any;
|
|
605
671
|
|
|
606
672
|
/**
|
|
607
673
|
* Data for initiating a Contract Negotiation
|
|
@@ -610,17 +676,17 @@ export declare function ContractDefinitionRequestToJSON(value?: ContractDefiniti
|
|
|
610
676
|
*/
|
|
611
677
|
export declare interface ContractNegotiationRequest {
|
|
612
678
|
/**
|
|
613
|
-
* Counter Party
|
|
679
|
+
* Counter Party Id
|
|
614
680
|
* @type {string}
|
|
615
681
|
* @memberof ContractNegotiationRequest
|
|
616
682
|
*/
|
|
617
|
-
|
|
683
|
+
counterPartyId: string;
|
|
618
684
|
/**
|
|
619
|
-
* Counter Party
|
|
685
|
+
* Counter Party Address
|
|
620
686
|
* @type {string}
|
|
621
687
|
* @memberof ContractNegotiationRequest
|
|
622
688
|
*/
|
|
623
|
-
|
|
689
|
+
counterPartyAddress: string;
|
|
624
690
|
/**
|
|
625
691
|
* Contract Offer Dto
|
|
626
692
|
* @type {string}
|
|
@@ -645,7 +711,9 @@ export declare function ContractNegotiationRequestFromJSON(json: any): ContractN
|
|
|
645
711
|
|
|
646
712
|
export declare function ContractNegotiationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractNegotiationRequest;
|
|
647
713
|
|
|
648
|
-
export declare function ContractNegotiationRequestToJSON(
|
|
714
|
+
export declare function ContractNegotiationRequestToJSON(json: any): ContractNegotiationRequest;
|
|
715
|
+
|
|
716
|
+
export declare function ContractNegotiationRequestToJSONTyped(value?: ContractNegotiationRequest | null, ignoreDiscriminator?: boolean): any;
|
|
649
717
|
|
|
650
718
|
/**
|
|
651
719
|
* Simplified Contract Negotiation State to be used in UI
|
|
@@ -665,6 +733,8 @@ export declare function ContractNegotiationSimplifiedStateFromJSONTyped(json: an
|
|
|
665
733
|
|
|
666
734
|
export declare function ContractNegotiationSimplifiedStateToJSON(value?: ContractNegotiationSimplifiedState | null): any;
|
|
667
735
|
|
|
736
|
+
export declare function ContractNegotiationSimplifiedStateToJSONTyped(value: any, ignoreDiscriminator: boolean): ContractNegotiationSimplifiedState;
|
|
737
|
+
|
|
668
738
|
/**
|
|
669
739
|
* Contract Negotiation State interpreted
|
|
670
740
|
* @export
|
|
@@ -684,7 +754,7 @@ export declare interface ContractNegotiationState {
|
|
|
684
754
|
*/
|
|
685
755
|
code: number;
|
|
686
756
|
/**
|
|
687
|
-
*
|
|
757
|
+
* Whether we are running, in an error state or done.
|
|
688
758
|
* @type {ContractNegotiationSimplifiedState}
|
|
689
759
|
* @memberof ContractNegotiationState
|
|
690
760
|
*/
|
|
@@ -695,7 +765,9 @@ export declare function ContractNegotiationStateFromJSON(json: any): ContractNeg
|
|
|
695
765
|
|
|
696
766
|
export declare function ContractNegotiationStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractNegotiationState;
|
|
697
767
|
|
|
698
|
-
export declare function ContractNegotiationStateToJSON(
|
|
768
|
+
export declare function ContractNegotiationStateToJSON(json: any): ContractNegotiationState;
|
|
769
|
+
|
|
770
|
+
export declare function ContractNegotiationStateToJSONTyped(value?: ContractNegotiationState | null, ignoreDiscriminator?: boolean): any;
|
|
699
771
|
|
|
700
772
|
/**
|
|
701
773
|
* Whether the contract termination was initiated by this EDC or a counterparty EDC.
|
|
@@ -714,6 +786,8 @@ export declare function ContractTerminatedByFromJSONTyped(json: any, ignoreDiscr
|
|
|
714
786
|
|
|
715
787
|
export declare function ContractTerminatedByToJSON(value?: ContractTerminatedBy | null): any;
|
|
716
788
|
|
|
789
|
+
export declare function ContractTerminatedByToJSONTyped(value: any, ignoreDiscriminator: boolean): ContractTerminatedBy;
|
|
790
|
+
|
|
717
791
|
/**
|
|
718
792
|
* Data for terminating a Contract Agreement
|
|
719
793
|
* @export
|
|
@@ -738,7 +812,9 @@ export declare function ContractTerminationRequestFromJSON(json: any): ContractT
|
|
|
738
812
|
|
|
739
813
|
export declare function ContractTerminationRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractTerminationRequest;
|
|
740
814
|
|
|
741
|
-
export declare function ContractTerminationRequestToJSON(
|
|
815
|
+
export declare function ContractTerminationRequestToJSON(json: any): ContractTerminationRequest;
|
|
816
|
+
|
|
817
|
+
export declare function ContractTerminationRequestToJSONTyped(value?: ContractTerminationRequest | null, ignoreDiscriminator?: boolean): any;
|
|
742
818
|
|
|
743
819
|
/**
|
|
744
820
|
* The contract termination status
|
|
@@ -757,6 +833,8 @@ export declare function ContractTerminationStatusFromJSONTyped(json: any, ignore
|
|
|
757
833
|
|
|
758
834
|
export declare function ContractTerminationStatusToJSON(value?: ContractTerminationStatus | null): any;
|
|
759
835
|
|
|
836
|
+
export declare function ContractTerminationStatusToJSONTyped(value: any, ignoreDiscriminator: boolean): ContractTerminationStatus;
|
|
837
|
+
|
|
760
838
|
export declare interface CreateAssetRequest {
|
|
761
839
|
uiAssetCreateRequest?: UiAssetCreateRequest;
|
|
762
840
|
}
|
|
@@ -766,7 +844,7 @@ export declare interface CreateContractDefinitionRequest {
|
|
|
766
844
|
}
|
|
767
845
|
|
|
768
846
|
export declare interface CreateDataOfferRequest {
|
|
769
|
-
|
|
847
|
+
dataOfferCreateRequest?: DataOfferCreateRequest;
|
|
770
848
|
}
|
|
771
849
|
|
|
772
850
|
export declare interface CreatePolicyDefinitionRequest {
|
|
@@ -778,62 +856,78 @@ export declare interface CreatePolicyDefinitionV2Request {
|
|
|
778
856
|
}
|
|
779
857
|
|
|
780
858
|
/**
|
|
781
|
-
*
|
|
859
|
+
* Managed Identity Wallet (MIW) Config
|
|
782
860
|
* @export
|
|
783
|
-
* @interface
|
|
861
|
+
* @interface DashboardCxDidConfig
|
|
784
862
|
*/
|
|
785
|
-
export declare interface
|
|
863
|
+
export declare interface DashboardCxDidConfig {
|
|
786
864
|
/**
|
|
787
|
-
*
|
|
865
|
+
* My DID / edc.iam.issuer.id
|
|
788
866
|
* @type {string}
|
|
789
|
-
* @memberof
|
|
867
|
+
* @memberof DashboardCxDidConfig
|
|
790
868
|
*/
|
|
791
|
-
|
|
869
|
+
myDid: string;
|
|
792
870
|
/**
|
|
793
|
-
*
|
|
871
|
+
* Wallet Token Url / edc.iam.sts.oauth.token.url
|
|
794
872
|
* @type {string}
|
|
795
|
-
* @memberof
|
|
873
|
+
* @memberof DashboardCxDidConfig
|
|
796
874
|
*/
|
|
797
|
-
|
|
875
|
+
walletTokenUrl: string;
|
|
876
|
+
/**
|
|
877
|
+
* Trusted VC Issuer / edc.iam.trusted-issuer.cofinity.id
|
|
878
|
+
* @type {string}
|
|
879
|
+
* @memberof DashboardCxDidConfig
|
|
880
|
+
*/
|
|
881
|
+
trustedVcIssuer: string;
|
|
882
|
+
/**
|
|
883
|
+
* BDRS Url / tx.iam.iatp.bdrs.server.url
|
|
884
|
+
* @type {string}
|
|
885
|
+
* @memberof DashboardCxDidConfig
|
|
886
|
+
*/
|
|
887
|
+
bdrsUrl: string;
|
|
888
|
+
/**
|
|
889
|
+
* STS DIM Url / edc.iam.sts.dim.url
|
|
890
|
+
* @type {string}
|
|
891
|
+
* @memberof DashboardCxDidConfig
|
|
892
|
+
*/
|
|
893
|
+
dimUrl: string;
|
|
798
894
|
}
|
|
799
895
|
|
|
800
|
-
export declare function
|
|
896
|
+
export declare function DashboardCxDidConfigFromJSON(json: any): DashboardCxDidConfig;
|
|
801
897
|
|
|
802
|
-
export declare function
|
|
898
|
+
export declare function DashboardCxDidConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardCxDidConfig;
|
|
803
899
|
|
|
804
|
-
export declare function
|
|
900
|
+
export declare function DashboardCxDidConfigToJSON(json: any): DashboardCxDidConfig;
|
|
901
|
+
|
|
902
|
+
export declare function DashboardCxDidConfigToJSONTyped(value?: DashboardCxDidConfig | null, ignoreDiscriminator?: boolean): any;
|
|
805
903
|
|
|
806
904
|
/**
|
|
807
|
-
*
|
|
905
|
+
* DAPS Config
|
|
808
906
|
* @export
|
|
809
|
-
* @interface
|
|
907
|
+
* @interface DashboardDapsConfig
|
|
810
908
|
*/
|
|
811
|
-
export declare interface
|
|
812
|
-
/**
|
|
813
|
-
* Your Connector's MIW's URL
|
|
814
|
-
* @type {string}
|
|
815
|
-
* @memberof DashboardMiwConfig
|
|
816
|
-
*/
|
|
817
|
-
url: string;
|
|
909
|
+
export declare interface DashboardDapsConfig {
|
|
818
910
|
/**
|
|
819
|
-
* Your Connector's
|
|
911
|
+
* Your Connector's DAPS Token URL
|
|
820
912
|
* @type {string}
|
|
821
|
-
* @memberof
|
|
913
|
+
* @memberof DashboardDapsConfig
|
|
822
914
|
*/
|
|
823
915
|
tokenUrl: string;
|
|
824
916
|
/**
|
|
825
|
-
* Your Connector's
|
|
917
|
+
* Your Connector's DAPS JWKS URL
|
|
826
918
|
* @type {string}
|
|
827
|
-
* @memberof
|
|
919
|
+
* @memberof DashboardDapsConfig
|
|
828
920
|
*/
|
|
829
|
-
|
|
921
|
+
jwksUrl: string;
|
|
830
922
|
}
|
|
831
923
|
|
|
832
|
-
export declare function
|
|
924
|
+
export declare function DashboardDapsConfigFromJSON(json: any): DashboardDapsConfig;
|
|
833
925
|
|
|
834
|
-
export declare function
|
|
926
|
+
export declare function DashboardDapsConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardDapsConfig;
|
|
835
927
|
|
|
836
|
-
export declare function
|
|
928
|
+
export declare function DashboardDapsConfigToJSON(json: any): DashboardDapsConfig;
|
|
929
|
+
|
|
930
|
+
export declare function DashboardDapsConfigToJSONTyped(value?: DashboardDapsConfig | null, ignoreDiscriminator?: boolean): any;
|
|
837
931
|
|
|
838
932
|
/**
|
|
839
933
|
* Data as required by the UI's Dashboard Page
|
|
@@ -872,17 +966,23 @@ export declare interface DashboardPage {
|
|
|
872
966
|
*/
|
|
873
967
|
numContractAgreementsProviding: number;
|
|
874
968
|
/**
|
|
875
|
-
*
|
|
969
|
+
* Consuming Transfer Process Amounts
|
|
876
970
|
* @type {DashboardTransferAmounts}
|
|
877
971
|
* @memberof DashboardPage
|
|
878
972
|
*/
|
|
879
973
|
transferProcessesConsuming: DashboardTransferAmounts;
|
|
880
974
|
/**
|
|
881
|
-
*
|
|
975
|
+
* Providing Transfer Process Amounts
|
|
882
976
|
* @type {DashboardTransferAmounts}
|
|
883
977
|
* @memberof DashboardPage
|
|
884
978
|
*/
|
|
885
979
|
transferProcessesProviding: DashboardTransferAmounts;
|
|
980
|
+
/**
|
|
981
|
+
* Your Connector's Management API URL for API Users
|
|
982
|
+
* @type {string}
|
|
983
|
+
* @memberof DashboardPage
|
|
984
|
+
*/
|
|
985
|
+
managementApiUrlShownInDashboard: string;
|
|
886
986
|
/**
|
|
887
987
|
* Your Connector's Connector Endpoint
|
|
888
988
|
* @type {string}
|
|
@@ -932,24 +1032,26 @@ export declare interface DashboardPage {
|
|
|
932
1032
|
*/
|
|
933
1033
|
connectorMaintainerName: string;
|
|
934
1034
|
/**
|
|
935
|
-
*
|
|
1035
|
+
* Your Connector's DAPS Configuration (if present)
|
|
936
1036
|
* @type {DashboardDapsConfig}
|
|
937
1037
|
* @memberof DashboardPage
|
|
938
1038
|
*/
|
|
939
1039
|
connectorDapsConfig?: DashboardDapsConfig;
|
|
940
1040
|
/**
|
|
941
|
-
*
|
|
942
|
-
* @type {
|
|
1041
|
+
* Your Connector's Catena-X Web-DID Configuration (if present)
|
|
1042
|
+
* @type {DashboardCxDidConfig}
|
|
943
1043
|
* @memberof DashboardPage
|
|
944
1044
|
*/
|
|
945
|
-
|
|
1045
|
+
connectorCxDidConfig?: DashboardCxDidConfig;
|
|
946
1046
|
}
|
|
947
1047
|
|
|
948
1048
|
export declare function DashboardPageFromJSON(json: any): DashboardPage;
|
|
949
1049
|
|
|
950
1050
|
export declare function DashboardPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardPage;
|
|
951
1051
|
|
|
952
|
-
export declare function DashboardPageToJSON(
|
|
1052
|
+
export declare function DashboardPageToJSON(json: any): DashboardPage;
|
|
1053
|
+
|
|
1054
|
+
export declare function DashboardPageToJSONTyped(value?: DashboardPage | null, ignoreDiscriminator?: boolean): any;
|
|
953
1055
|
|
|
954
1056
|
/**
|
|
955
1057
|
* Number of Transfer Processes for given direction.
|
|
@@ -987,50 +1089,67 @@ export declare function DashboardTransferAmountsFromJSON(json: any): DashboardTr
|
|
|
987
1089
|
|
|
988
1090
|
export declare function DashboardTransferAmountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardTransferAmounts;
|
|
989
1091
|
|
|
990
|
-
export declare function DashboardTransferAmountsToJSON(
|
|
1092
|
+
export declare function DashboardTransferAmountsToJSON(json: any): DashboardTransferAmounts;
|
|
1093
|
+
|
|
1094
|
+
export declare function DashboardTransferAmountsToJSONTyped(value?: DashboardTransferAmounts | null, ignoreDiscriminator?: boolean): any;
|
|
991
1095
|
|
|
992
1096
|
/**
|
|
993
1097
|
* Request to create a data offer
|
|
994
1098
|
* @export
|
|
995
|
-
* @interface
|
|
1099
|
+
* @interface DataOfferCreateRequest
|
|
996
1100
|
*/
|
|
997
|
-
export declare interface
|
|
1101
|
+
export declare interface DataOfferCreateRequest {
|
|
998
1102
|
/**
|
|
999
|
-
*
|
|
1103
|
+
* The asset to create
|
|
1000
1104
|
* @type {UiAssetCreateRequest}
|
|
1001
|
-
* @memberof
|
|
1105
|
+
* @memberof DataOfferCreateRequest
|
|
1002
1106
|
*/
|
|
1003
|
-
|
|
1107
|
+
asset: UiAssetCreateRequest;
|
|
1004
1108
|
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {
|
|
1007
|
-
* @memberof
|
|
1109
|
+
*
|
|
1110
|
+
* @type {DataOfferPublishType}
|
|
1111
|
+
* @memberof DataOfferCreateRequest
|
|
1008
1112
|
*/
|
|
1009
|
-
|
|
1113
|
+
publishType: DataOfferPublishType;
|
|
1010
1114
|
/**
|
|
1011
|
-
*
|
|
1115
|
+
* Policy Expression. Only relevant if policyType is 'RESTRICTED'
|
|
1012
1116
|
* @type {UiPolicyExpression}
|
|
1013
|
-
* @memberof
|
|
1117
|
+
* @memberof DataOfferCreateRequest
|
|
1014
1118
|
*/
|
|
1015
|
-
|
|
1119
|
+
policyExpression?: UiPolicyExpression;
|
|
1016
1120
|
}
|
|
1017
1121
|
|
|
1018
|
-
export declare function
|
|
1122
|
+
export declare function DataOfferCreateRequestFromJSON(json: any): DataOfferCreateRequest;
|
|
1123
|
+
|
|
1124
|
+
export declare function DataOfferCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataOfferCreateRequest;
|
|
1125
|
+
|
|
1126
|
+
export declare function DataOfferCreateRequestToJSON(json: any): DataOfferCreateRequest;
|
|
1019
1127
|
|
|
1020
|
-
export declare function
|
|
1128
|
+
export declare function DataOfferCreateRequestToJSONTyped(value?: DataOfferCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1021
1129
|
|
|
1022
1130
|
/**
|
|
1131
|
+
* Decides whether the data offer is to be published published:
|
|
1132
|
+
* * `DONT_PUBLISH` - Data offer is not published. Only an asset is created.
|
|
1133
|
+
* * `PUBLISH_UNRESTRICTED` - Creates the asset and publishes it using the always-true policy.
|
|
1134
|
+
* * `PUBLISH_RESTRICTED` - Creates the asset and publishes it with a newly created policy definition with the given policy expression
|
|
1135
|
+
*
|
|
1023
1136
|
* @export
|
|
1024
1137
|
*/
|
|
1025
|
-
export declare const
|
|
1138
|
+
export declare const DataOfferPublishType: {
|
|
1026
1139
|
readonly DontPublish: "DONT_PUBLISH";
|
|
1027
1140
|
readonly PublishUnrestricted: "PUBLISH_UNRESTRICTED";
|
|
1028
1141
|
readonly PublishRestricted: "PUBLISH_RESTRICTED";
|
|
1029
1142
|
};
|
|
1030
1143
|
|
|
1031
|
-
export declare type
|
|
1144
|
+
export declare type DataOfferPublishType = (typeof DataOfferPublishType)[keyof typeof DataOfferPublishType];
|
|
1145
|
+
|
|
1146
|
+
export declare function DataOfferPublishTypeFromJSON(json: any): DataOfferPublishType;
|
|
1147
|
+
|
|
1148
|
+
export declare function DataOfferPublishTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataOfferPublishType;
|
|
1149
|
+
|
|
1150
|
+
export declare function DataOfferPublishTypeToJSON(value?: DataOfferPublishType | null): any;
|
|
1032
1151
|
|
|
1033
|
-
export declare function
|
|
1152
|
+
export declare function DataOfferPublishTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DataOfferPublishType;
|
|
1034
1153
|
|
|
1035
1154
|
/**
|
|
1036
1155
|
* Differentiate 'Live' Data Offers that have a real data source from 'On Request' Data Offers that contain only a contact email address for requesting an individual data offer.
|
|
@@ -1049,6 +1168,8 @@ export declare function DataSourceAvailabilityFromJSONTyped(json: any, ignoreDis
|
|
|
1049
1168
|
|
|
1050
1169
|
export declare function DataSourceAvailabilityToJSON(value?: DataSourceAvailability | null): any;
|
|
1051
1170
|
|
|
1171
|
+
export declare function DataSourceAvailabilityToJSONTyped(value: any, ignoreDiscriminator: boolean): DataSourceAvailability;
|
|
1172
|
+
|
|
1052
1173
|
/**
|
|
1053
1174
|
* Supported Data Source Types by UiDataSource
|
|
1054
1175
|
* @export
|
|
@@ -1067,6 +1188,8 @@ export declare function DataSourceTypeFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
1067
1188
|
|
|
1068
1189
|
export declare function DataSourceTypeToJSON(value?: DataSourceType | null): any;
|
|
1069
1190
|
|
|
1191
|
+
export declare function DataSourceTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DataSourceType;
|
|
1192
|
+
|
|
1070
1193
|
export declare const DefaultConfig: Configuration;
|
|
1071
1194
|
|
|
1072
1195
|
export declare interface DeleteAssetRequest {
|
|
@@ -1168,6 +1291,7 @@ export declare interface FileUploadCreateAssetRequest {
|
|
|
1168
1291
|
}
|
|
1169
1292
|
|
|
1170
1293
|
export declare interface GetCatalogPageDataOffersRequest {
|
|
1294
|
+
participantId?: string;
|
|
1171
1295
|
connectorEndpoint?: string;
|
|
1172
1296
|
}
|
|
1173
1297
|
|
|
@@ -1230,7 +1354,9 @@ export declare function IdAvailabilityResponseFromJSON(json: any): IdAvailabilit
|
|
|
1230
1354
|
|
|
1231
1355
|
export declare function IdAvailabilityResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdAvailabilityResponse;
|
|
1232
1356
|
|
|
1233
|
-
export declare function IdAvailabilityResponseToJSON(
|
|
1357
|
+
export declare function IdAvailabilityResponseToJSON(json: any): IdAvailabilityResponse;
|
|
1358
|
+
|
|
1359
|
+
export declare function IdAvailabilityResponseToJSONTyped(value?: IdAvailabilityResponse | null, ignoreDiscriminator?: boolean): any;
|
|
1234
1360
|
|
|
1235
1361
|
/**
|
|
1236
1362
|
* Marks the operation as successful
|
|
@@ -1256,7 +1382,9 @@ export declare function IdResponseDtoFromJSON(json: any): IdResponseDto;
|
|
|
1256
1382
|
|
|
1257
1383
|
export declare function IdResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdResponseDto;
|
|
1258
1384
|
|
|
1259
|
-
export declare function IdResponseDtoToJSON(
|
|
1385
|
+
export declare function IdResponseDtoToJSON(json: any): IdResponseDto;
|
|
1386
|
+
|
|
1387
|
+
export declare function IdResponseDtoToJSONTyped(value?: IdResponseDto | null, ignoreDiscriminator?: boolean): any;
|
|
1260
1388
|
|
|
1261
1389
|
export declare interface InitiateContractNegotiationRequest {
|
|
1262
1390
|
contractNegotiationRequest?: ContractNegotiationRequest;
|
|
@@ -1290,7 +1418,9 @@ export declare function InitiateCustomTransferRequestFromJSON(json: any): Initia
|
|
|
1290
1418
|
|
|
1291
1419
|
export declare function InitiateCustomTransferRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InitiateCustomTransferRequest;
|
|
1292
1420
|
|
|
1293
|
-
export declare function InitiateCustomTransferRequestToJSON(
|
|
1421
|
+
export declare function InitiateCustomTransferRequestToJSON(json: any): InitiateCustomTransferRequest;
|
|
1422
|
+
|
|
1423
|
+
export declare function InitiateCustomTransferRequestToJSONTyped(value?: InitiateCustomTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1294
1424
|
|
|
1295
1425
|
export declare interface InitiateTransferOperationRequest {
|
|
1296
1426
|
initiateTransferRequest?: InitiateTransferRequest;
|
|
@@ -1308,6 +1438,12 @@ export declare interface InitiateTransferRequest {
|
|
|
1308
1438
|
* @memberof InitiateTransferRequest
|
|
1309
1439
|
*/
|
|
1310
1440
|
contractAgreementId: string;
|
|
1441
|
+
/**
|
|
1442
|
+
* Transfer Type. Used to select a compatible DataPlane. Examples are 'HttpData-PUSH', 'HttpData-PULL'. Not to be confused with the 'type' of the data source, or the 'type' of the data sink found in the 'properties'
|
|
1443
|
+
* @type {string}
|
|
1444
|
+
* @memberof InitiateTransferRequest
|
|
1445
|
+
*/
|
|
1446
|
+
transferType: string;
|
|
1311
1447
|
/**
|
|
1312
1448
|
* Data Sink / Data Address
|
|
1313
1449
|
* @type {{ [key: string]: string; }}
|
|
@@ -1330,7 +1466,9 @@ export declare function InitiateTransferRequestFromJSON(json: any): InitiateTran
|
|
|
1330
1466
|
|
|
1331
1467
|
export declare function InitiateTransferRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InitiateTransferRequest;
|
|
1332
1468
|
|
|
1333
|
-
export declare function InitiateTransferRequestToJSON(
|
|
1469
|
+
export declare function InitiateTransferRequestToJSON(json: any): InitiateTransferRequest;
|
|
1470
|
+
|
|
1471
|
+
export declare function InitiateTransferRequestToJSONTyped(value?: InitiateTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1334
1472
|
|
|
1335
1473
|
export declare type InitOverrideFunction = (requestContext: {
|
|
1336
1474
|
init: HTTPRequestInit;
|
|
@@ -1340,257 +1478,306 @@ export declare type InitOverrideFunction = (requestContext: {
|
|
|
1340
1478
|
/**
|
|
1341
1479
|
* Check if a given object implements the AssetPage interface.
|
|
1342
1480
|
*/
|
|
1343
|
-
export declare function instanceOfAssetPage(value:
|
|
1481
|
+
export declare function instanceOfAssetPage(value: any): value is AssetPage;
|
|
1482
|
+
|
|
1483
|
+
/**
|
|
1484
|
+
* Check if a given object implements the BuildInfo interface.
|
|
1485
|
+
*/
|
|
1486
|
+
export declare function instanceOfBuildInfo(value: any): value is BuildInfo;
|
|
1344
1487
|
|
|
1345
1488
|
/**
|
|
1346
1489
|
* Check if a given object implements the CatalogFilterExpression interface.
|
|
1347
1490
|
*/
|
|
1348
|
-
export declare function instanceOfCatalogFilterExpression(value:
|
|
1491
|
+
export declare function instanceOfCatalogFilterExpression(value: any): value is CatalogFilterExpression;
|
|
1349
1492
|
|
|
1350
1493
|
/**
|
|
1351
1494
|
* Check if a given object implements the CatalogFilterExpressionLiteral interface.
|
|
1352
1495
|
*/
|
|
1353
|
-
export declare function instanceOfCatalogFilterExpressionLiteral(value:
|
|
1496
|
+
export declare function instanceOfCatalogFilterExpressionLiteral(value: any): value is CatalogFilterExpressionLiteral;
|
|
1497
|
+
|
|
1498
|
+
export declare function instanceOfCatalogFilterExpressionLiteralType(value: any): boolean;
|
|
1499
|
+
|
|
1500
|
+
export declare function instanceOfCatalogFilterExpressionOperator(value: any): boolean;
|
|
1354
1501
|
|
|
1355
1502
|
/**
|
|
1356
1503
|
* Check if a given object implements the CatalogQuery interface.
|
|
1357
1504
|
*/
|
|
1358
|
-
export declare function instanceOfCatalogQuery(value:
|
|
1505
|
+
export declare function instanceOfCatalogQuery(value: any): value is CatalogQuery;
|
|
1359
1506
|
|
|
1360
1507
|
/**
|
|
1361
1508
|
* Check if a given object implements the ConnectorLimits interface.
|
|
1362
1509
|
*/
|
|
1363
|
-
export declare function instanceOfConnectorLimits(value:
|
|
1510
|
+
export declare function instanceOfConnectorLimits(value: any): value is ConnectorLimits;
|
|
1364
1511
|
|
|
1365
1512
|
/**
|
|
1366
1513
|
* Check if a given object implements the ContractAgreementCard interface.
|
|
1367
1514
|
*/
|
|
1368
|
-
export declare function instanceOfContractAgreementCard(value:
|
|
1515
|
+
export declare function instanceOfContractAgreementCard(value: any): value is ContractAgreementCard;
|
|
1516
|
+
|
|
1517
|
+
export declare function instanceOfContractAgreementDirection(value: any): boolean;
|
|
1369
1518
|
|
|
1370
1519
|
/**
|
|
1371
1520
|
* Check if a given object implements the ContractAgreementPage interface.
|
|
1372
1521
|
*/
|
|
1373
|
-
export declare function instanceOfContractAgreementPage(value:
|
|
1522
|
+
export declare function instanceOfContractAgreementPage(value: any): value is ContractAgreementPage;
|
|
1374
1523
|
|
|
1375
1524
|
/**
|
|
1376
1525
|
* Check if a given object implements the ContractAgreementPageQuery interface.
|
|
1377
1526
|
*/
|
|
1378
|
-
export declare function instanceOfContractAgreementPageQuery(value:
|
|
1527
|
+
export declare function instanceOfContractAgreementPageQuery(value: any): value is ContractAgreementPageQuery;
|
|
1379
1528
|
|
|
1380
1529
|
/**
|
|
1381
1530
|
* Check if a given object implements the ContractAgreementTerminationInfo interface.
|
|
1382
1531
|
*/
|
|
1383
|
-
export declare function instanceOfContractAgreementTerminationInfo(value:
|
|
1532
|
+
export declare function instanceOfContractAgreementTerminationInfo(value: any): value is ContractAgreementTerminationInfo;
|
|
1384
1533
|
|
|
1385
1534
|
/**
|
|
1386
1535
|
* Check if a given object implements the ContractAgreementTransferProcess interface.
|
|
1387
1536
|
*/
|
|
1388
|
-
export declare function instanceOfContractAgreementTransferProcess(value:
|
|
1537
|
+
export declare function instanceOfContractAgreementTransferProcess(value: any): value is ContractAgreementTransferProcess;
|
|
1389
1538
|
|
|
1390
1539
|
/**
|
|
1391
1540
|
* Check if a given object implements the ContractDefinitionEntry interface.
|
|
1392
1541
|
*/
|
|
1393
|
-
export declare function instanceOfContractDefinitionEntry(value:
|
|
1542
|
+
export declare function instanceOfContractDefinitionEntry(value: any): value is ContractDefinitionEntry;
|
|
1394
1543
|
|
|
1395
1544
|
/**
|
|
1396
1545
|
* Check if a given object implements the ContractDefinitionPage interface.
|
|
1397
1546
|
*/
|
|
1398
|
-
export declare function instanceOfContractDefinitionPage(value:
|
|
1547
|
+
export declare function instanceOfContractDefinitionPage(value: any): value is ContractDefinitionPage;
|
|
1399
1548
|
|
|
1400
1549
|
/**
|
|
1401
1550
|
* Check if a given object implements the ContractDefinitionRequest interface.
|
|
1402
1551
|
*/
|
|
1403
|
-
export declare function instanceOfContractDefinitionRequest(value:
|
|
1552
|
+
export declare function instanceOfContractDefinitionRequest(value: any): value is ContractDefinitionRequest;
|
|
1404
1553
|
|
|
1405
1554
|
/**
|
|
1406
1555
|
* Check if a given object implements the ContractNegotiationRequest interface.
|
|
1407
1556
|
*/
|
|
1408
|
-
export declare function instanceOfContractNegotiationRequest(value:
|
|
1557
|
+
export declare function instanceOfContractNegotiationRequest(value: any): value is ContractNegotiationRequest;
|
|
1558
|
+
|
|
1559
|
+
export declare function instanceOfContractNegotiationSimplifiedState(value: any): boolean;
|
|
1409
1560
|
|
|
1410
1561
|
/**
|
|
1411
1562
|
* Check if a given object implements the ContractNegotiationState interface.
|
|
1412
1563
|
*/
|
|
1413
|
-
export declare function instanceOfContractNegotiationState(value:
|
|
1564
|
+
export declare function instanceOfContractNegotiationState(value: any): value is ContractNegotiationState;
|
|
1565
|
+
|
|
1566
|
+
export declare function instanceOfContractTerminatedBy(value: any): boolean;
|
|
1414
1567
|
|
|
1415
1568
|
/**
|
|
1416
1569
|
* Check if a given object implements the ContractTerminationRequest interface.
|
|
1417
1570
|
*/
|
|
1418
|
-
export declare function instanceOfContractTerminationRequest(value:
|
|
1571
|
+
export declare function instanceOfContractTerminationRequest(value: any): value is ContractTerminationRequest;
|
|
1572
|
+
|
|
1573
|
+
export declare function instanceOfContractTerminationStatus(value: any): boolean;
|
|
1419
1574
|
|
|
1420
1575
|
/**
|
|
1421
|
-
* Check if a given object implements the
|
|
1576
|
+
* Check if a given object implements the DashboardCxDidConfig interface.
|
|
1422
1577
|
*/
|
|
1423
|
-
export declare function
|
|
1578
|
+
export declare function instanceOfDashboardCxDidConfig(value: any): value is DashboardCxDidConfig;
|
|
1424
1579
|
|
|
1425
1580
|
/**
|
|
1426
|
-
* Check if a given object implements the
|
|
1581
|
+
* Check if a given object implements the DashboardDapsConfig interface.
|
|
1427
1582
|
*/
|
|
1428
|
-
export declare function
|
|
1583
|
+
export declare function instanceOfDashboardDapsConfig(value: any): value is DashboardDapsConfig;
|
|
1429
1584
|
|
|
1430
1585
|
/**
|
|
1431
1586
|
* Check if a given object implements the DashboardPage interface.
|
|
1432
1587
|
*/
|
|
1433
|
-
export declare function instanceOfDashboardPage(value:
|
|
1588
|
+
export declare function instanceOfDashboardPage(value: any): value is DashboardPage;
|
|
1434
1589
|
|
|
1435
1590
|
/**
|
|
1436
1591
|
* Check if a given object implements the DashboardTransferAmounts interface.
|
|
1437
1592
|
*/
|
|
1438
|
-
export declare function instanceOfDashboardTransferAmounts(value:
|
|
1593
|
+
export declare function instanceOfDashboardTransferAmounts(value: any): value is DashboardTransferAmounts;
|
|
1439
1594
|
|
|
1440
1595
|
/**
|
|
1441
|
-
* Check if a given object implements the
|
|
1596
|
+
* Check if a given object implements the DataOfferCreateRequest interface.
|
|
1442
1597
|
*/
|
|
1443
|
-
export declare function
|
|
1598
|
+
export declare function instanceOfDataOfferCreateRequest(value: any): value is DataOfferCreateRequest;
|
|
1599
|
+
|
|
1600
|
+
export declare function instanceOfDataOfferPublishType(value: any): boolean;
|
|
1601
|
+
|
|
1602
|
+
export declare function instanceOfDataSourceAvailability(value: any): boolean;
|
|
1603
|
+
|
|
1604
|
+
export declare function instanceOfDataSourceType(value: any): boolean;
|
|
1444
1605
|
|
|
1445
1606
|
/**
|
|
1446
1607
|
* Check if a given object implements the IdAvailabilityResponse interface.
|
|
1447
1608
|
*/
|
|
1448
|
-
export declare function instanceOfIdAvailabilityResponse(value:
|
|
1609
|
+
export declare function instanceOfIdAvailabilityResponse(value: any): value is IdAvailabilityResponse;
|
|
1449
1610
|
|
|
1450
1611
|
/**
|
|
1451
1612
|
* Check if a given object implements the IdResponseDto interface.
|
|
1452
1613
|
*/
|
|
1453
|
-
export declare function instanceOfIdResponseDto(value:
|
|
1614
|
+
export declare function instanceOfIdResponseDto(value: any): value is IdResponseDto;
|
|
1454
1615
|
|
|
1455
1616
|
/**
|
|
1456
1617
|
* Check if a given object implements the InitiateCustomTransferRequest interface.
|
|
1457
1618
|
*/
|
|
1458
|
-
export declare function instanceOfInitiateCustomTransferRequest(value:
|
|
1619
|
+
export declare function instanceOfInitiateCustomTransferRequest(value: any): value is InitiateCustomTransferRequest;
|
|
1459
1620
|
|
|
1460
1621
|
/**
|
|
1461
1622
|
* Check if a given object implements the InitiateTransferRequest interface.
|
|
1462
1623
|
*/
|
|
1463
|
-
export declare function instanceOfInitiateTransferRequest(value:
|
|
1624
|
+
export declare function instanceOfInitiateTransferRequest(value: any): value is InitiateTransferRequest;
|
|
1464
1625
|
|
|
1465
1626
|
/**
|
|
1466
1627
|
* Check if a given object implements the KpiResult interface.
|
|
1467
1628
|
*/
|
|
1468
|
-
export declare function instanceOfKpiResult(value:
|
|
1629
|
+
export declare function instanceOfKpiResult(value: any): value is KpiResult;
|
|
1630
|
+
|
|
1631
|
+
export declare function instanceOfOperatorDto(value: any): boolean;
|
|
1469
1632
|
|
|
1470
1633
|
/**
|
|
1471
1634
|
* Check if a given object implements the PolicyDefinitionCreateDto interface.
|
|
1472
1635
|
*/
|
|
1473
|
-
export declare function instanceOfPolicyDefinitionCreateDto(value:
|
|
1636
|
+
export declare function instanceOfPolicyDefinitionCreateDto(value: any): value is PolicyDefinitionCreateDto;
|
|
1474
1637
|
|
|
1475
1638
|
/**
|
|
1476
1639
|
* Check if a given object implements the PolicyDefinitionCreateRequest interface.
|
|
1477
1640
|
*/
|
|
1478
|
-
export declare function instanceOfPolicyDefinitionCreateRequest(value:
|
|
1641
|
+
export declare function instanceOfPolicyDefinitionCreateRequest(value: any): value is PolicyDefinitionCreateRequest;
|
|
1479
1642
|
|
|
1480
1643
|
/**
|
|
1481
1644
|
* Check if a given object implements the PolicyDefinitionDto interface.
|
|
1482
1645
|
*/
|
|
1483
|
-
export declare function instanceOfPolicyDefinitionDto(value:
|
|
1646
|
+
export declare function instanceOfPolicyDefinitionDto(value: any): value is PolicyDefinitionDto;
|
|
1484
1647
|
|
|
1485
1648
|
/**
|
|
1486
1649
|
* Check if a given object implements the PolicyDefinitionPage interface.
|
|
1487
1650
|
*/
|
|
1488
|
-
export declare function instanceOfPolicyDefinitionPage(value:
|
|
1651
|
+
export declare function instanceOfPolicyDefinitionPage(value: any): value is PolicyDefinitionPage;
|
|
1489
1652
|
|
|
1490
1653
|
/**
|
|
1491
1654
|
* Check if a given object implements the SecretValue interface.
|
|
1492
1655
|
*/
|
|
1493
|
-
export declare function instanceOfSecretValue(value:
|
|
1656
|
+
export declare function instanceOfSecretValue(value: any): value is SecretValue;
|
|
1494
1657
|
|
|
1495
1658
|
/**
|
|
1496
1659
|
* Check if a given object implements the TransferHistoryEntry interface.
|
|
1497
1660
|
*/
|
|
1498
|
-
export declare function instanceOfTransferHistoryEntry(value:
|
|
1661
|
+
export declare function instanceOfTransferHistoryEntry(value: any): value is TransferHistoryEntry;
|
|
1499
1662
|
|
|
1500
1663
|
/**
|
|
1501
1664
|
* Check if a given object implements the TransferHistoryPage interface.
|
|
1502
1665
|
*/
|
|
1503
|
-
export declare function instanceOfTransferHistoryPage(value:
|
|
1666
|
+
export declare function instanceOfTransferHistoryPage(value: any): value is TransferHistoryPage;
|
|
1667
|
+
|
|
1668
|
+
export declare function instanceOfTransferProcessSimplifiedState(value: any): boolean;
|
|
1504
1669
|
|
|
1505
1670
|
/**
|
|
1506
1671
|
* Check if a given object implements the TransferProcessState interface.
|
|
1507
1672
|
*/
|
|
1508
|
-
export declare function instanceOfTransferProcessState(value:
|
|
1673
|
+
export declare function instanceOfTransferProcessState(value: any): value is TransferProcessState;
|
|
1509
1674
|
|
|
1510
1675
|
/**
|
|
1511
1676
|
* Check if a given object implements the TransferProcessStatesDto interface.
|
|
1512
1677
|
*/
|
|
1513
|
-
export declare function instanceOfTransferProcessStatesDto(value:
|
|
1678
|
+
export declare function instanceOfTransferProcessStatesDto(value: any): value is TransferProcessStatesDto;
|
|
1514
1679
|
|
|
1515
1680
|
/**
|
|
1516
1681
|
* Check if a given object implements the UiAsset interface.
|
|
1517
1682
|
*/
|
|
1518
|
-
export declare function instanceOfUiAsset(value:
|
|
1683
|
+
export declare function instanceOfUiAsset(value: any): value is UiAsset;
|
|
1519
1684
|
|
|
1520
1685
|
/**
|
|
1521
1686
|
* Check if a given object implements the UiAssetCreateRequest interface.
|
|
1522
1687
|
*/
|
|
1523
|
-
export declare function instanceOfUiAssetCreateRequest(value:
|
|
1688
|
+
export declare function instanceOfUiAssetCreateRequest(value: any): value is UiAssetCreateRequest;
|
|
1524
1689
|
|
|
1525
1690
|
/**
|
|
1526
1691
|
* Check if a given object implements the UiAssetEditRequest interface.
|
|
1527
1692
|
*/
|
|
1528
|
-
export declare function instanceOfUiAssetEditRequest(value:
|
|
1693
|
+
export declare function instanceOfUiAssetEditRequest(value: any): value is UiAssetEditRequest;
|
|
1694
|
+
|
|
1695
|
+
/**
|
|
1696
|
+
* Check if a given object implements the UiConfig interface.
|
|
1697
|
+
*/
|
|
1698
|
+
export declare function instanceOfUiConfig(value: any): value is UiConfig;
|
|
1699
|
+
|
|
1700
|
+
export declare function instanceOfUiConfigFeature(value: any): boolean;
|
|
1701
|
+
|
|
1702
|
+
/**
|
|
1703
|
+
* Check if a given object implements the UiConfigPreconfiguredCounterparty interface.
|
|
1704
|
+
*/
|
|
1705
|
+
export declare function instanceOfUiConfigPreconfiguredCounterparty(value: any): value is UiConfigPreconfiguredCounterparty;
|
|
1529
1706
|
|
|
1530
1707
|
/**
|
|
1531
1708
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
1532
1709
|
*/
|
|
1533
|
-
export declare function instanceOfUiContractNegotiation(value:
|
|
1710
|
+
export declare function instanceOfUiContractNegotiation(value: any): value is UiContractNegotiation;
|
|
1534
1711
|
|
|
1535
1712
|
/**
|
|
1536
1713
|
* Check if a given object implements the UiContractOffer interface.
|
|
1537
1714
|
*/
|
|
1538
|
-
export declare function instanceOfUiContractOffer(value:
|
|
1715
|
+
export declare function instanceOfUiContractOffer(value: any): value is UiContractOffer;
|
|
1539
1716
|
|
|
1540
1717
|
/**
|
|
1541
1718
|
* Check if a given object implements the UiCriterion interface.
|
|
1542
1719
|
*/
|
|
1543
|
-
export declare function instanceOfUiCriterion(value:
|
|
1720
|
+
export declare function instanceOfUiCriterion(value: any): value is UiCriterion;
|
|
1544
1721
|
|
|
1545
1722
|
/**
|
|
1546
1723
|
* Check if a given object implements the UiCriterionLiteral interface.
|
|
1547
1724
|
*/
|
|
1548
|
-
export declare function instanceOfUiCriterionLiteral(value:
|
|
1725
|
+
export declare function instanceOfUiCriterionLiteral(value: any): value is UiCriterionLiteral;
|
|
1726
|
+
|
|
1727
|
+
export declare function instanceOfUiCriterionLiteralType(value: any): boolean;
|
|
1728
|
+
|
|
1729
|
+
export declare function instanceOfUiCriterionOperator(value: any): boolean;
|
|
1549
1730
|
|
|
1550
1731
|
/**
|
|
1551
1732
|
* Check if a given object implements the UiDataOffer interface.
|
|
1552
1733
|
*/
|
|
1553
|
-
export declare function instanceOfUiDataOffer(value:
|
|
1734
|
+
export declare function instanceOfUiDataOffer(value: any): value is UiDataOffer;
|
|
1554
1735
|
|
|
1555
1736
|
/**
|
|
1556
1737
|
* Check if a given object implements the UiDataSource interface.
|
|
1557
1738
|
*/
|
|
1558
|
-
export declare function instanceOfUiDataSource(value:
|
|
1739
|
+
export declare function instanceOfUiDataSource(value: any): value is UiDataSource;
|
|
1559
1740
|
|
|
1560
1741
|
/**
|
|
1561
1742
|
* Check if a given object implements the UiDataSourceHttpData interface.
|
|
1562
1743
|
*/
|
|
1563
|
-
export declare function instanceOfUiDataSourceHttpData(value:
|
|
1744
|
+
export declare function instanceOfUiDataSourceHttpData(value: any): value is UiDataSourceHttpData;
|
|
1745
|
+
|
|
1746
|
+
export declare function instanceOfUiDataSourceHttpDataMethod(value: any): boolean;
|
|
1564
1747
|
|
|
1565
1748
|
/**
|
|
1566
1749
|
* Check if a given object implements the UiDataSourceOnRequest interface.
|
|
1567
1750
|
*/
|
|
1568
|
-
export declare function instanceOfUiDataSourceOnRequest(value:
|
|
1751
|
+
export declare function instanceOfUiDataSourceOnRequest(value: any): value is UiDataSourceOnRequest;
|
|
1569
1752
|
|
|
1570
1753
|
/**
|
|
1571
1754
|
* Check if a given object implements the UiPolicy interface.
|
|
1572
1755
|
*/
|
|
1573
|
-
export declare function instanceOfUiPolicy(value:
|
|
1756
|
+
export declare function instanceOfUiPolicy(value: any): value is UiPolicy;
|
|
1574
1757
|
|
|
1575
1758
|
/**
|
|
1576
1759
|
* Check if a given object implements the UiPolicyConstraint interface.
|
|
1577
1760
|
*/
|
|
1578
|
-
export declare function instanceOfUiPolicyConstraint(value:
|
|
1761
|
+
export declare function instanceOfUiPolicyConstraint(value: any): value is UiPolicyConstraint;
|
|
1579
1762
|
|
|
1580
1763
|
/**
|
|
1581
1764
|
* Check if a given object implements the UiPolicyCreateRequest interface.
|
|
1582
1765
|
*/
|
|
1583
|
-
export declare function instanceOfUiPolicyCreateRequest(value:
|
|
1766
|
+
export declare function instanceOfUiPolicyCreateRequest(value: any): value is UiPolicyCreateRequest;
|
|
1584
1767
|
|
|
1585
1768
|
/**
|
|
1586
1769
|
* Check if a given object implements the UiPolicyExpression interface.
|
|
1587
1770
|
*/
|
|
1588
|
-
export declare function instanceOfUiPolicyExpression(value:
|
|
1771
|
+
export declare function instanceOfUiPolicyExpression(value: any): value is UiPolicyExpression;
|
|
1772
|
+
|
|
1773
|
+
export declare function instanceOfUiPolicyExpressionType(value: any): boolean;
|
|
1589
1774
|
|
|
1590
1775
|
/**
|
|
1591
1776
|
* Check if a given object implements the UiPolicyLiteral interface.
|
|
1592
1777
|
*/
|
|
1593
|
-
export declare function instanceOfUiPolicyLiteral(value:
|
|
1778
|
+
export declare function instanceOfUiPolicyLiteral(value: any): value is UiPolicyLiteral;
|
|
1779
|
+
|
|
1780
|
+
export declare function instanceOfUiPolicyLiteralType(value: any): boolean;
|
|
1594
1781
|
|
|
1595
1782
|
export declare interface IsAssetIdAvailableRequest {
|
|
1596
1783
|
assetId: string;
|
|
@@ -1644,7 +1831,7 @@ export declare interface KpiResult {
|
|
|
1644
1831
|
*/
|
|
1645
1832
|
contractAgreementsCount: number;
|
|
1646
1833
|
/**
|
|
1647
|
-
*
|
|
1834
|
+
* Counts of incoming and outgoing TransferProcesses and status
|
|
1648
1835
|
* @type {TransferProcessStatesDto}
|
|
1649
1836
|
* @memberof KpiResult
|
|
1650
1837
|
*/
|
|
@@ -1655,7 +1842,9 @@ export declare function KpiResultFromJSON(json: any): KpiResult;
|
|
|
1655
1842
|
|
|
1656
1843
|
export declare function KpiResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): KpiResult;
|
|
1657
1844
|
|
|
1658
|
-
export declare function KpiResultToJSON(
|
|
1845
|
+
export declare function KpiResultToJSON(json: any): KpiResult;
|
|
1846
|
+
|
|
1847
|
+
export declare function KpiResultToJSONTyped(value?: KpiResult | null, ignoreDiscriminator?: boolean): any;
|
|
1659
1848
|
|
|
1660
1849
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
1661
1850
|
|
|
@@ -1694,6 +1883,8 @@ export declare function OperatorDtoFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
1694
1883
|
|
|
1695
1884
|
export declare function OperatorDtoToJSON(value?: OperatorDto | null): any;
|
|
1696
1885
|
|
|
1886
|
+
export declare function OperatorDtoToJSONTyped(value: any, ignoreDiscriminator: boolean): OperatorDto;
|
|
1887
|
+
|
|
1697
1888
|
/**
|
|
1698
1889
|
* Create a Policy Definition
|
|
1699
1890
|
* @export
|
|
@@ -1707,7 +1898,7 @@ export declare interface PolicyDefinitionCreateDto {
|
|
|
1707
1898
|
*/
|
|
1708
1899
|
policyDefinitionId: string;
|
|
1709
1900
|
/**
|
|
1710
|
-
*
|
|
1901
|
+
* Policy Expression
|
|
1711
1902
|
* @type {UiPolicyExpression}
|
|
1712
1903
|
* @memberof PolicyDefinitionCreateDto
|
|
1713
1904
|
*/
|
|
@@ -1718,7 +1909,9 @@ export declare function PolicyDefinitionCreateDtoFromJSON(json: any): PolicyDefi
|
|
|
1718
1909
|
|
|
1719
1910
|
export declare function PolicyDefinitionCreateDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionCreateDto;
|
|
1720
1911
|
|
|
1721
|
-
export declare function PolicyDefinitionCreateDtoToJSON(
|
|
1912
|
+
export declare function PolicyDefinitionCreateDtoToJSON(json: any): PolicyDefinitionCreateDto;
|
|
1913
|
+
|
|
1914
|
+
export declare function PolicyDefinitionCreateDtoToJSONTyped(value?: PolicyDefinitionCreateDto | null, ignoreDiscriminator?: boolean): any;
|
|
1722
1915
|
|
|
1723
1916
|
/**
|
|
1724
1917
|
* [Deprecated] Create a Policy Definition. Use PolicyDefinitionCreateDto
|
|
@@ -1733,7 +1926,7 @@ export declare interface PolicyDefinitionCreateRequest {
|
|
|
1733
1926
|
*/
|
|
1734
1927
|
policyDefinitionId: string;
|
|
1735
1928
|
/**
|
|
1736
|
-
*
|
|
1929
|
+
* [Deprecated] Conjunction of constraints (simplified UiPolicyExpression)
|
|
1737
1930
|
* @type {UiPolicyCreateRequest}
|
|
1738
1931
|
* @memberof PolicyDefinitionCreateRequest
|
|
1739
1932
|
* @deprecated
|
|
@@ -1745,7 +1938,9 @@ export declare function PolicyDefinitionCreateRequestFromJSON(json: any): Policy
|
|
|
1745
1938
|
|
|
1746
1939
|
export declare function PolicyDefinitionCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionCreateRequest;
|
|
1747
1940
|
|
|
1748
|
-
export declare function PolicyDefinitionCreateRequestToJSON(
|
|
1941
|
+
export declare function PolicyDefinitionCreateRequestToJSON(json: any): PolicyDefinitionCreateRequest;
|
|
1942
|
+
|
|
1943
|
+
export declare function PolicyDefinitionCreateRequestToJSONTyped(value?: PolicyDefinitionCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1749
1944
|
|
|
1750
1945
|
/**
|
|
1751
1946
|
* Policy Definition as required for the Policy Definition Page
|
|
@@ -1760,7 +1955,7 @@ export declare interface PolicyDefinitionDto {
|
|
|
1760
1955
|
*/
|
|
1761
1956
|
policyDefinitionId: string;
|
|
1762
1957
|
/**
|
|
1763
|
-
*
|
|
1958
|
+
* Policy Contents
|
|
1764
1959
|
* @type {UiPolicy}
|
|
1765
1960
|
* @memberof PolicyDefinitionDto
|
|
1766
1961
|
*/
|
|
@@ -1771,7 +1966,9 @@ export declare function PolicyDefinitionDtoFromJSON(json: any): PolicyDefinition
|
|
|
1771
1966
|
|
|
1772
1967
|
export declare function PolicyDefinitionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionDto;
|
|
1773
1968
|
|
|
1774
|
-
export declare function PolicyDefinitionDtoToJSON(
|
|
1969
|
+
export declare function PolicyDefinitionDtoToJSON(json: any): PolicyDefinitionDto;
|
|
1970
|
+
|
|
1971
|
+
export declare function PolicyDefinitionDtoToJSONTyped(value?: PolicyDefinitionDto | null, ignoreDiscriminator?: boolean): any;
|
|
1775
1972
|
|
|
1776
1973
|
/**
|
|
1777
1974
|
* All data for the policy definition page as required by the UI
|
|
@@ -1791,7 +1988,9 @@ export declare function PolicyDefinitionPageFromJSON(json: any): PolicyDefinitio
|
|
|
1791
1988
|
|
|
1792
1989
|
export declare function PolicyDefinitionPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionPage;
|
|
1793
1990
|
|
|
1794
|
-
export declare function PolicyDefinitionPageToJSON(
|
|
1991
|
+
export declare function PolicyDefinitionPageToJSON(json: any): PolicyDefinitionPage;
|
|
1992
|
+
|
|
1993
|
+
export declare function PolicyDefinitionPageToJSONTyped(value?: PolicyDefinitionPage | null, ignoreDiscriminator?: boolean): any;
|
|
1795
1994
|
|
|
1796
1995
|
export declare interface QueryCatalogRequest {
|
|
1797
1996
|
catalogQuery: CatalogQuery;
|
|
@@ -1838,8 +2037,8 @@ export declare interface ResponseTransformer<T> {
|
|
|
1838
2037
|
|
|
1839
2038
|
declare namespace runtime {
|
|
1840
2039
|
export {
|
|
1841
|
-
exists,
|
|
1842
2040
|
querystring,
|
|
2041
|
+
exists,
|
|
1843
2042
|
mapValues,
|
|
1844
2043
|
canConsumeForm,
|
|
1845
2044
|
BASE_PATH,
|
|
@@ -1900,7 +2099,9 @@ export declare function SecretValueFromJSON(json: any): SecretValue;
|
|
|
1900
2099
|
|
|
1901
2100
|
export declare function SecretValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretValue;
|
|
1902
2101
|
|
|
1903
|
-
export declare function SecretValueToJSON(
|
|
2102
|
+
export declare function SecretValueToJSON(json: any): SecretValue;
|
|
2103
|
+
|
|
2104
|
+
export declare function SecretValueToJSONTyped(value?: SecretValue | null, ignoreDiscriminator?: boolean): any;
|
|
1904
2105
|
|
|
1905
2106
|
export declare interface TerminateContractAgreementRequest {
|
|
1906
2107
|
contractAgreementId: string;
|
|
@@ -1938,7 +2139,7 @@ export declare interface TransferHistoryEntry {
|
|
|
1938
2139
|
*/
|
|
1939
2140
|
lastUpdatedDate: Date;
|
|
1940
2141
|
/**
|
|
1941
|
-
*
|
|
2142
|
+
* Transfer History State
|
|
1942
2143
|
* @type {TransferProcessState}
|
|
1943
2144
|
* @memberof TransferHistoryEntry
|
|
1944
2145
|
*/
|
|
@@ -1950,7 +2151,7 @@ export declare interface TransferHistoryEntry {
|
|
|
1950
2151
|
*/
|
|
1951
2152
|
contractAgreementId: string;
|
|
1952
2153
|
/**
|
|
1953
|
-
*
|
|
2154
|
+
* Incoming vs Outgoing
|
|
1954
2155
|
* @type {ContractAgreementDirection}
|
|
1955
2156
|
* @memberof TransferHistoryEntry
|
|
1956
2157
|
*/
|
|
@@ -1991,7 +2192,9 @@ export declare function TransferHistoryEntryFromJSON(json: any): TransferHistory
|
|
|
1991
2192
|
|
|
1992
2193
|
export declare function TransferHistoryEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferHistoryEntry;
|
|
1993
2194
|
|
|
1994
|
-
export declare function TransferHistoryEntryToJSON(
|
|
2195
|
+
export declare function TransferHistoryEntryToJSON(json: any): TransferHistoryEntry;
|
|
2196
|
+
|
|
2197
|
+
export declare function TransferHistoryEntryToJSONTyped(value?: TransferHistoryEntry | null, ignoreDiscriminator?: boolean): any;
|
|
1995
2198
|
|
|
1996
2199
|
/**
|
|
1997
2200
|
* Data as required by the UI's Transfer History Page
|
|
@@ -2011,7 +2214,9 @@ export declare function TransferHistoryPageFromJSON(json: any): TransferHistoryP
|
|
|
2011
2214
|
|
|
2012
2215
|
export declare function TransferHistoryPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferHistoryPage;
|
|
2013
2216
|
|
|
2014
|
-
export declare function TransferHistoryPageToJSON(
|
|
2217
|
+
export declare function TransferHistoryPageToJSON(json: any): TransferHistoryPage;
|
|
2218
|
+
|
|
2219
|
+
export declare function TransferHistoryPageToJSONTyped(value?: TransferHistoryPage | null, ignoreDiscriminator?: boolean): any;
|
|
2015
2220
|
|
|
2016
2221
|
/**
|
|
2017
2222
|
* Simplified Transfer Process State to be used in UI
|
|
@@ -2031,6 +2236,8 @@ export declare function TransferProcessSimplifiedStateFromJSONTyped(json: any, i
|
|
|
2031
2236
|
|
|
2032
2237
|
export declare function TransferProcessSimplifiedStateToJSON(value?: TransferProcessSimplifiedState | null): any;
|
|
2033
2238
|
|
|
2239
|
+
export declare function TransferProcessSimplifiedStateToJSONTyped(value: any, ignoreDiscriminator: boolean): TransferProcessSimplifiedState;
|
|
2240
|
+
|
|
2034
2241
|
/**
|
|
2035
2242
|
* Transfer Process State interpreted
|
|
2036
2243
|
* @export
|
|
@@ -2050,7 +2257,7 @@ export declare interface TransferProcessState {
|
|
|
2050
2257
|
*/
|
|
2051
2258
|
code: number;
|
|
2052
2259
|
/**
|
|
2053
|
-
*
|
|
2260
|
+
* Whether we are running, in an error state or done.
|
|
2054
2261
|
* @type {TransferProcessSimplifiedState}
|
|
2055
2262
|
* @memberof TransferProcessState
|
|
2056
2263
|
*/
|
|
@@ -2062,7 +2269,7 @@ export declare function TransferProcessStateFromJSON(json: any): TransferProcess
|
|
|
2062
2269
|
export declare function TransferProcessStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessState;
|
|
2063
2270
|
|
|
2064
2271
|
/**
|
|
2065
|
-
*
|
|
2272
|
+
*
|
|
2066
2273
|
* @export
|
|
2067
2274
|
* @interface TransferProcessStatesDto
|
|
2068
2275
|
*/
|
|
@@ -2089,14 +2296,26 @@ export declare function TransferProcessStatesDtoFromJSON(json: any): TransferPro
|
|
|
2089
2296
|
|
|
2090
2297
|
export declare function TransferProcessStatesDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessStatesDto;
|
|
2091
2298
|
|
|
2092
|
-
export declare function TransferProcessStatesDtoToJSON(
|
|
2299
|
+
export declare function TransferProcessStatesDtoToJSON(json: any): TransferProcessStatesDto;
|
|
2093
2300
|
|
|
2094
|
-
export declare function
|
|
2301
|
+
export declare function TransferProcessStatesDtoToJSONTyped(value?: TransferProcessStatesDto | null, ignoreDiscriminator?: boolean): any;
|
|
2302
|
+
|
|
2303
|
+
export declare function TransferProcessStateToJSON(json: any): TransferProcessState;
|
|
2304
|
+
|
|
2305
|
+
export declare function TransferProcessStateToJSONTyped(value?: TransferProcessState | null, ignoreDiscriminator?: boolean): any;
|
|
2095
2306
|
|
|
2096
2307
|
/**
|
|
2097
2308
|
*
|
|
2098
2309
|
*/
|
|
2099
2310
|
export declare class UIApi extends runtime.BaseAPI {
|
|
2311
|
+
/**
|
|
2312
|
+
* Get the build version info
|
|
2313
|
+
*/
|
|
2314
|
+
buildInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BuildInfo>>;
|
|
2315
|
+
/**
|
|
2316
|
+
* Get the build version info
|
|
2317
|
+
*/
|
|
2318
|
+
buildInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuildInfo>;
|
|
2100
2319
|
/**
|
|
2101
2320
|
* Create a new Asset
|
|
2102
2321
|
*/
|
|
@@ -2123,10 +2342,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2123
2342
|
createDataOffer(requestParameters?: CreateDataOfferRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2124
2343
|
/**
|
|
2125
2344
|
* [Deprecated] Create a new Policy Definition from a list of constraints. Use createPolicyDefinitionV2 instead.
|
|
2345
|
+
* @deprecated
|
|
2126
2346
|
*/
|
|
2127
2347
|
createPolicyDefinitionRaw(requestParameters: CreatePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2128
2348
|
/**
|
|
2129
2349
|
* [Deprecated] Create a new Policy Definition from a list of constraints. Use createPolicyDefinitionV2 instead.
|
|
2350
|
+
* @deprecated
|
|
2130
2351
|
*/
|
|
2131
2352
|
createPolicyDefinition(requestParameters?: CreatePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2132
2353
|
/**
|
|
@@ -2305,6 +2526,14 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2305
2526
|
* Terminates a contract agreement designated by its contract agreement id.
|
|
2306
2527
|
*/
|
|
2307
2528
|
terminateContractAgreement(requestParameters: TerminateContractAgreementRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2529
|
+
/**
|
|
2530
|
+
* Get the UI configuration
|
|
2531
|
+
*/
|
|
2532
|
+
uiConfigRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<UiConfig>>;
|
|
2533
|
+
/**
|
|
2534
|
+
* Get the UI configuration
|
|
2535
|
+
*/
|
|
2536
|
+
uiConfig(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UiConfig>;
|
|
2308
2537
|
}
|
|
2309
2538
|
|
|
2310
2539
|
/**
|
|
@@ -2314,7 +2543,7 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2314
2543
|
*/
|
|
2315
2544
|
export declare interface UiAsset {
|
|
2316
2545
|
/**
|
|
2317
|
-
*
|
|
2546
|
+
* 'Live' vs 'On Request'
|
|
2318
2547
|
* @type {DataSourceAvailability}
|
|
2319
2548
|
* @memberof UiAsset
|
|
2320
2549
|
*/
|
|
@@ -2574,7 +2803,7 @@ export declare interface UiAsset {
|
|
|
2574
2803
|
*/
|
|
2575
2804
|
export declare interface UiAssetCreateRequest {
|
|
2576
2805
|
/**
|
|
2577
|
-
*
|
|
2806
|
+
* Data Source
|
|
2578
2807
|
* @type {UiDataSource}
|
|
2579
2808
|
* @memberof UiAssetCreateRequest
|
|
2580
2809
|
*/
|
|
@@ -2759,7 +2988,9 @@ export declare function UiAssetCreateRequestFromJSON(json: any): UiAssetCreateRe
|
|
|
2759
2988
|
|
|
2760
2989
|
export declare function UiAssetCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetCreateRequest;
|
|
2761
2990
|
|
|
2762
|
-
export declare function UiAssetCreateRequestToJSON(
|
|
2991
|
+
export declare function UiAssetCreateRequestToJSON(json: any): UiAssetCreateRequest;
|
|
2992
|
+
|
|
2993
|
+
export declare function UiAssetCreateRequestToJSONTyped(value?: UiAssetCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
2763
2994
|
|
|
2764
2995
|
/**
|
|
2765
2996
|
* Type-safe data offer metadata for editing an asset as supported by the sovity product landscape. Contains extension points.
|
|
@@ -2768,7 +2999,7 @@ export declare function UiAssetCreateRequestToJSON(value?: UiAssetCreateRequest
|
|
|
2768
2999
|
*/
|
|
2769
3000
|
export declare interface UiAssetEditRequest {
|
|
2770
3001
|
/**
|
|
2771
|
-
*
|
|
3002
|
+
* Data Source
|
|
2772
3003
|
* @type {UiDataSource}
|
|
2773
3004
|
* @memberof UiAssetEditRequest
|
|
2774
3005
|
*/
|
|
@@ -2947,13 +3178,123 @@ export declare function UiAssetEditRequestFromJSON(json: any): UiAssetEditReques
|
|
|
2947
3178
|
|
|
2948
3179
|
export declare function UiAssetEditRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetEditRequest;
|
|
2949
3180
|
|
|
2950
|
-
export declare function UiAssetEditRequestToJSON(
|
|
3181
|
+
export declare function UiAssetEditRequestToJSON(json: any): UiAssetEditRequest;
|
|
3182
|
+
|
|
3183
|
+
export declare function UiAssetEditRequestToJSONTyped(value?: UiAssetEditRequest | null, ignoreDiscriminator?: boolean): any;
|
|
2951
3184
|
|
|
2952
3185
|
export declare function UiAssetFromJSON(json: any): UiAsset;
|
|
2953
3186
|
|
|
2954
3187
|
export declare function UiAssetFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAsset;
|
|
2955
3188
|
|
|
2956
|
-
export declare function UiAssetToJSON(
|
|
3189
|
+
export declare function UiAssetToJSON(json: any): UiAsset;
|
|
3190
|
+
|
|
3191
|
+
export declare function UiAssetToJSONTyped(value?: UiAsset | null, ignoreDiscriminator?: boolean): any;
|
|
3192
|
+
|
|
3193
|
+
/**
|
|
3194
|
+
* UI Config
|
|
3195
|
+
* @export
|
|
3196
|
+
* @interface UiConfig
|
|
3197
|
+
*/
|
|
3198
|
+
export declare interface UiConfig {
|
|
3199
|
+
/**
|
|
3200
|
+
* Enabled features
|
|
3201
|
+
* @type {Array<UiConfigFeature>}
|
|
3202
|
+
* @memberof UiConfig
|
|
3203
|
+
*/
|
|
3204
|
+
features: Array<UiConfigFeature>;
|
|
3205
|
+
/**
|
|
3206
|
+
* Pre-configured Counterparty Connectors
|
|
3207
|
+
* @type {Array<UiConfigPreconfiguredCounterparty>}
|
|
3208
|
+
* @memberof UiConfig
|
|
3209
|
+
*/
|
|
3210
|
+
preconfiguredCounterparties: Array<UiConfigPreconfiguredCounterparty>;
|
|
3211
|
+
/**
|
|
3212
|
+
* Logout URL
|
|
3213
|
+
* @type {string}
|
|
3214
|
+
* @memberof UiConfig
|
|
3215
|
+
*/
|
|
3216
|
+
logoutUrl?: string;
|
|
3217
|
+
/**
|
|
3218
|
+
* Documentation URL
|
|
3219
|
+
* @type {string}
|
|
3220
|
+
* @memberof UiConfig
|
|
3221
|
+
*/
|
|
3222
|
+
documentationUrl?: string;
|
|
3223
|
+
/**
|
|
3224
|
+
* Support URL
|
|
3225
|
+
* @type {string}
|
|
3226
|
+
* @memberof UiConfig
|
|
3227
|
+
*/
|
|
3228
|
+
supportUrl?: string;
|
|
3229
|
+
/**
|
|
3230
|
+
* Privacy Policy URL
|
|
3231
|
+
* @type {string}
|
|
3232
|
+
* @memberof UiConfig
|
|
3233
|
+
*/
|
|
3234
|
+
privacyPolicyUrl?: string;
|
|
3235
|
+
/**
|
|
3236
|
+
* Legal Notice URL
|
|
3237
|
+
* @type {string}
|
|
3238
|
+
* @memberof UiConfig
|
|
3239
|
+
*/
|
|
3240
|
+
legalNoticeUrl?: string;
|
|
3241
|
+
}
|
|
3242
|
+
|
|
3243
|
+
/**
|
|
3244
|
+
* Enabled UI Features
|
|
3245
|
+
* @export
|
|
3246
|
+
*/
|
|
3247
|
+
export declare const UiConfigFeature: {
|
|
3248
|
+
readonly ConnectorLimits: "CONNECTOR_LIMITS";
|
|
3249
|
+
readonly OpenSourceMarketing: "OPEN_SOURCE_MARKETING";
|
|
3250
|
+
readonly EeBasicMarketing: "EE_BASIC_MARKETING";
|
|
3251
|
+
};
|
|
3252
|
+
|
|
3253
|
+
export declare type UiConfigFeature = (typeof UiConfigFeature)[keyof typeof UiConfigFeature];
|
|
3254
|
+
|
|
3255
|
+
export declare function UiConfigFeatureFromJSON(json: any): UiConfigFeature;
|
|
3256
|
+
|
|
3257
|
+
export declare function UiConfigFeatureFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigFeature;
|
|
3258
|
+
|
|
3259
|
+
export declare function UiConfigFeatureToJSON(value?: UiConfigFeature | null): any;
|
|
3260
|
+
|
|
3261
|
+
export declare function UiConfigFeatureToJSONTyped(value: any, ignoreDiscriminator: boolean): UiConfigFeature;
|
|
3262
|
+
|
|
3263
|
+
export declare function UiConfigFromJSON(json: any): UiConfig;
|
|
3264
|
+
|
|
3265
|
+
export declare function UiConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfig;
|
|
3266
|
+
|
|
3267
|
+
/**
|
|
3268
|
+
* Pre-configured counterparty for the Catalog
|
|
3269
|
+
* @export
|
|
3270
|
+
* @interface UiConfigPreconfiguredCounterparty
|
|
3271
|
+
*/
|
|
3272
|
+
export declare interface UiConfigPreconfiguredCounterparty {
|
|
3273
|
+
/**
|
|
3274
|
+
* Participant ID
|
|
3275
|
+
* @type {string}
|
|
3276
|
+
* @memberof UiConfigPreconfiguredCounterparty
|
|
3277
|
+
*/
|
|
3278
|
+
participantId: string;
|
|
3279
|
+
/**
|
|
3280
|
+
* Connector Endpoint
|
|
3281
|
+
* @type {string}
|
|
3282
|
+
* @memberof UiConfigPreconfiguredCounterparty
|
|
3283
|
+
*/
|
|
3284
|
+
connectorEndpoint: string;
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
export declare function UiConfigPreconfiguredCounterpartyFromJSON(json: any): UiConfigPreconfiguredCounterparty;
|
|
3288
|
+
|
|
3289
|
+
export declare function UiConfigPreconfiguredCounterpartyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiConfigPreconfiguredCounterparty;
|
|
3290
|
+
|
|
3291
|
+
export declare function UiConfigPreconfiguredCounterpartyToJSON(json: any): UiConfigPreconfiguredCounterparty;
|
|
3292
|
+
|
|
3293
|
+
export declare function UiConfigPreconfiguredCounterpartyToJSONTyped(value?: UiConfigPreconfiguredCounterparty | null, ignoreDiscriminator?: boolean): any;
|
|
3294
|
+
|
|
3295
|
+
export declare function UiConfigToJSON(json: any): UiConfig;
|
|
3296
|
+
|
|
3297
|
+
export declare function UiConfigToJSONTyped(value?: UiConfig | null, ignoreDiscriminator?: boolean): any;
|
|
2957
3298
|
|
|
2958
3299
|
/**
|
|
2959
3300
|
* Contract Negotiation Information
|
|
@@ -2980,7 +3321,7 @@ export declare interface UiContractNegotiation {
|
|
|
2980
3321
|
*/
|
|
2981
3322
|
contractAgreementId?: string;
|
|
2982
3323
|
/**
|
|
2983
|
-
*
|
|
3324
|
+
* State of the Contract Negotiation state machine
|
|
2984
3325
|
* @type {ContractNegotiationState}
|
|
2985
3326
|
* @memberof UiContractNegotiation
|
|
2986
3327
|
*/
|
|
@@ -2991,7 +3332,9 @@ export declare function UiContractNegotiationFromJSON(json: any): UiContractNego
|
|
|
2991
3332
|
|
|
2992
3333
|
export declare function UiContractNegotiationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiContractNegotiation;
|
|
2993
3334
|
|
|
2994
|
-
export declare function UiContractNegotiationToJSON(
|
|
3335
|
+
export declare function UiContractNegotiationToJSON(json: any): UiContractNegotiation;
|
|
3336
|
+
|
|
3337
|
+
export declare function UiContractNegotiationToJSONTyped(value?: UiContractNegotiation | null, ignoreDiscriminator?: boolean): any;
|
|
2995
3338
|
|
|
2996
3339
|
/**
|
|
2997
3340
|
* Catalog Data Offer's Contract Offer as required by the UI
|
|
@@ -3006,7 +3349,7 @@ export declare interface UiContractOffer {
|
|
|
3006
3349
|
*/
|
|
3007
3350
|
contractOfferId: string;
|
|
3008
3351
|
/**
|
|
3009
|
-
*
|
|
3352
|
+
* Policy
|
|
3010
3353
|
* @type {UiPolicy}
|
|
3011
3354
|
* @memberof UiContractOffer
|
|
3012
3355
|
*/
|
|
@@ -3017,7 +3360,9 @@ export declare function UiContractOfferFromJSON(json: any): UiContractOffer;
|
|
|
3017
3360
|
|
|
3018
3361
|
export declare function UiContractOfferFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiContractOffer;
|
|
3019
3362
|
|
|
3020
|
-
export declare function UiContractOfferToJSON(
|
|
3363
|
+
export declare function UiContractOfferToJSON(json: any): UiContractOffer;
|
|
3364
|
+
|
|
3365
|
+
export declare function UiContractOfferToJSONTyped(value?: UiContractOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3021
3366
|
|
|
3022
3367
|
/**
|
|
3023
3368
|
* Contract Definition Criterion as supported by the UI
|
|
@@ -3032,13 +3377,13 @@ export declare interface UiCriterion {
|
|
|
3032
3377
|
*/
|
|
3033
3378
|
operandLeft: string;
|
|
3034
3379
|
/**
|
|
3035
|
-
*
|
|
3380
|
+
* Operator
|
|
3036
3381
|
* @type {UiCriterionOperator}
|
|
3037
3382
|
* @memberof UiCriterion
|
|
3038
3383
|
*/
|
|
3039
3384
|
operator: UiCriterionOperator;
|
|
3040
3385
|
/**
|
|
3041
|
-
*
|
|
3386
|
+
* Right Operand
|
|
3042
3387
|
* @type {UiCriterionLiteral}
|
|
3043
3388
|
* @memberof UiCriterion
|
|
3044
3389
|
*/
|
|
@@ -3079,7 +3424,9 @@ export declare function UiCriterionLiteralFromJSON(json: any): UiCriterionLitera
|
|
|
3079
3424
|
|
|
3080
3425
|
export declare function UiCriterionLiteralFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiCriterionLiteral;
|
|
3081
3426
|
|
|
3082
|
-
export declare function UiCriterionLiteralToJSON(
|
|
3427
|
+
export declare function UiCriterionLiteralToJSON(json: any): UiCriterionLiteral;
|
|
3428
|
+
|
|
3429
|
+
export declare function UiCriterionLiteralToJSONTyped(value?: UiCriterionLiteral | null, ignoreDiscriminator?: boolean): any;
|
|
3083
3430
|
|
|
3084
3431
|
/**
|
|
3085
3432
|
* Value type of an asset selector criterion right expression value
|
|
@@ -3098,6 +3445,8 @@ export declare function UiCriterionLiteralTypeFromJSONTyped(json: any, ignoreDis
|
|
|
3098
3445
|
|
|
3099
3446
|
export declare function UiCriterionLiteralTypeToJSON(value?: UiCriterionLiteralType | null): any;
|
|
3100
3447
|
|
|
3448
|
+
export declare function UiCriterionLiteralTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiCriterionLiteralType;
|
|
3449
|
+
|
|
3101
3450
|
/**
|
|
3102
3451
|
* Operator for constraints
|
|
3103
3452
|
* @export
|
|
@@ -3116,7 +3465,11 @@ export declare function UiCriterionOperatorFromJSONTyped(json: any, ignoreDiscri
|
|
|
3116
3465
|
|
|
3117
3466
|
export declare function UiCriterionOperatorToJSON(value?: UiCriterionOperator | null): any;
|
|
3118
3467
|
|
|
3119
|
-
export declare function
|
|
3468
|
+
export declare function UiCriterionOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): UiCriterionOperator;
|
|
3469
|
+
|
|
3470
|
+
export declare function UiCriterionToJSON(json: any): UiCriterion;
|
|
3471
|
+
|
|
3472
|
+
export declare function UiCriterionToJSONTyped(value?: UiCriterion | null, ignoreDiscriminator?: boolean): any;
|
|
3120
3473
|
|
|
3121
3474
|
/**
|
|
3122
3475
|
* Catalog Data Offer as required by the UI
|
|
@@ -3137,7 +3490,7 @@ export declare interface UiDataOffer {
|
|
|
3137
3490
|
*/
|
|
3138
3491
|
participantId: string;
|
|
3139
3492
|
/**
|
|
3140
|
-
*
|
|
3493
|
+
* Asset Information
|
|
3141
3494
|
* @type {UiAsset}
|
|
3142
3495
|
* @memberof UiDataOffer
|
|
3143
3496
|
*/
|
|
@@ -3154,7 +3507,9 @@ export declare function UiDataOfferFromJSON(json: any): UiDataOffer;
|
|
|
3154
3507
|
|
|
3155
3508
|
export declare function UiDataOfferFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataOffer;
|
|
3156
3509
|
|
|
3157
|
-
export declare function UiDataOfferToJSON(
|
|
3510
|
+
export declare function UiDataOfferToJSON(json: any): UiDataOffer;
|
|
3511
|
+
|
|
3512
|
+
export declare function UiDataOfferToJSONTyped(value?: UiDataOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3158
3513
|
|
|
3159
3514
|
/**
|
|
3160
3515
|
* Type-safe data source as supported by the sovity product landscape. Contains extension points for using custom data address properties.
|
|
@@ -3163,19 +3518,19 @@ export declare function UiDataOfferToJSON(value?: UiDataOffer | null): any;
|
|
|
3163
3518
|
*/
|
|
3164
3519
|
export declare interface UiDataSource {
|
|
3165
3520
|
/**
|
|
3166
|
-
*
|
|
3521
|
+
* Data Address Type.
|
|
3167
3522
|
* @type {DataSourceType}
|
|
3168
3523
|
* @memberof UiDataSource
|
|
3169
3524
|
*/
|
|
3170
3525
|
type: DataSourceType;
|
|
3171
3526
|
/**
|
|
3172
|
-
*
|
|
3527
|
+
* Only for type HTTP_DATA
|
|
3173
3528
|
* @type {UiDataSourceHttpData}
|
|
3174
3529
|
* @memberof UiDataSource
|
|
3175
3530
|
*/
|
|
3176
3531
|
httpData?: UiDataSourceHttpData;
|
|
3177
3532
|
/**
|
|
3178
|
-
*
|
|
3533
|
+
* Only for type ON_REQUEST
|
|
3179
3534
|
* @type {UiDataSourceOnRequest}
|
|
3180
3535
|
* @memberof UiDataSource
|
|
3181
3536
|
*/
|
|
@@ -3201,7 +3556,7 @@ export declare function UiDataSourceFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
3201
3556
|
*/
|
|
3202
3557
|
export declare interface UiDataSourceHttpData {
|
|
3203
3558
|
/**
|
|
3204
|
-
*
|
|
3559
|
+
* HTTP Request Method
|
|
3205
3560
|
* @type {UiDataSourceHttpDataMethod}
|
|
3206
3561
|
* @memberof UiDataSourceHttpData
|
|
3207
3562
|
*/
|
|
@@ -3225,7 +3580,7 @@ export declare interface UiDataSourceHttpData {
|
|
|
3225
3580
|
*/
|
|
3226
3581
|
authHeaderName?: string;
|
|
3227
3582
|
/**
|
|
3228
|
-
*
|
|
3583
|
+
* Auth Header value.
|
|
3229
3584
|
* @type {SecretValue}
|
|
3230
3585
|
* @memberof UiDataSourceHttpData
|
|
3231
3586
|
*/
|
|
@@ -3289,7 +3644,11 @@ export declare function UiDataSourceHttpDataMethodFromJSONTyped(json: any, ignor
|
|
|
3289
3644
|
|
|
3290
3645
|
export declare function UiDataSourceHttpDataMethodToJSON(value?: UiDataSourceHttpDataMethod | null): any;
|
|
3291
3646
|
|
|
3292
|
-
export declare function
|
|
3647
|
+
export declare function UiDataSourceHttpDataMethodToJSONTyped(value: any, ignoreDiscriminator: boolean): UiDataSourceHttpDataMethod;
|
|
3648
|
+
|
|
3649
|
+
export declare function UiDataSourceHttpDataToJSON(json: any): UiDataSourceHttpData;
|
|
3650
|
+
|
|
3651
|
+
export declare function UiDataSourceHttpDataToJSONTyped(value?: UiDataSourceHttpData | null, ignoreDiscriminator?: boolean): any;
|
|
3293
3652
|
|
|
3294
3653
|
/**
|
|
3295
3654
|
* ON_REQUEST type Data Source.
|
|
@@ -3315,9 +3674,13 @@ export declare function UiDataSourceOnRequestFromJSON(json: any): UiDataSourceOn
|
|
|
3315
3674
|
|
|
3316
3675
|
export declare function UiDataSourceOnRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSourceOnRequest;
|
|
3317
3676
|
|
|
3318
|
-
export declare function UiDataSourceOnRequestToJSON(
|
|
3677
|
+
export declare function UiDataSourceOnRequestToJSON(json: any): UiDataSourceOnRequest;
|
|
3319
3678
|
|
|
3320
|
-
export declare function
|
|
3679
|
+
export declare function UiDataSourceOnRequestToJSONTyped(value?: UiDataSourceOnRequest | null, ignoreDiscriminator?: boolean): any;
|
|
3680
|
+
|
|
3681
|
+
export declare function UiDataSourceToJSON(json: any): UiDataSource;
|
|
3682
|
+
|
|
3683
|
+
export declare function UiDataSourceToJSONTyped(value?: UiDataSource | null, ignoreDiscriminator?: boolean): any;
|
|
3321
3684
|
|
|
3322
3685
|
/**
|
|
3323
3686
|
* Type-Safe OpenAPI generator friendly ODLR policy subset as endorsed by sovity.
|
|
@@ -3332,7 +3695,7 @@ export declare interface UiPolicy {
|
|
|
3332
3695
|
*/
|
|
3333
3696
|
policyJsonLd: string;
|
|
3334
3697
|
/**
|
|
3335
|
-
*
|
|
3698
|
+
* Policy expression
|
|
3336
3699
|
* @type {UiPolicyExpression}
|
|
3337
3700
|
* @memberof UiPolicy
|
|
3338
3701
|
*/
|
|
@@ -3358,13 +3721,13 @@ export declare interface UiPolicyConstraint {
|
|
|
3358
3721
|
*/
|
|
3359
3722
|
left: string;
|
|
3360
3723
|
/**
|
|
3361
|
-
*
|
|
3724
|
+
* Operator, e.g. EQ
|
|
3362
3725
|
* @type {OperatorDto}
|
|
3363
3726
|
* @memberof UiPolicyConstraint
|
|
3364
3727
|
*/
|
|
3365
3728
|
operator: OperatorDto;
|
|
3366
3729
|
/**
|
|
3367
|
-
*
|
|
3730
|
+
* Right side of the expression
|
|
3368
3731
|
* @type {UiPolicyLiteral}
|
|
3369
3732
|
* @memberof UiPolicyConstraint
|
|
3370
3733
|
*/
|
|
@@ -3375,7 +3738,9 @@ export declare function UiPolicyConstraintFromJSON(json: any): UiPolicyConstrain
|
|
|
3375
3738
|
|
|
3376
3739
|
export declare function UiPolicyConstraintFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyConstraint;
|
|
3377
3740
|
|
|
3378
|
-
export declare function UiPolicyConstraintToJSON(
|
|
3741
|
+
export declare function UiPolicyConstraintToJSON(json: any): UiPolicyConstraint;
|
|
3742
|
+
|
|
3743
|
+
export declare function UiPolicyConstraintToJSONTyped(value?: UiPolicyConstraint | null, ignoreDiscriminator?: boolean): any;
|
|
3379
3744
|
|
|
3380
3745
|
/**
|
|
3381
3746
|
* [Deprecated] Conjunction of constraints (simplified UiPolicyExpression)
|
|
@@ -3387,7 +3752,6 @@ export declare interface UiPolicyCreateRequest {
|
|
|
3387
3752
|
* Conjunction of required constraints
|
|
3388
3753
|
* @type {Array<UiPolicyConstraint>}
|
|
3389
3754
|
* @memberof UiPolicyCreateRequest
|
|
3390
|
-
* @deprecated
|
|
3391
3755
|
*/
|
|
3392
3756
|
constraints?: Array<UiPolicyConstraint>;
|
|
3393
3757
|
}
|
|
@@ -3396,7 +3760,9 @@ export declare function UiPolicyCreateRequestFromJSON(json: any): UiPolicyCreate
|
|
|
3396
3760
|
|
|
3397
3761
|
export declare function UiPolicyCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyCreateRequest;
|
|
3398
3762
|
|
|
3399
|
-
export declare function UiPolicyCreateRequestToJSON(
|
|
3763
|
+
export declare function UiPolicyCreateRequestToJSON(json: any): UiPolicyCreateRequest;
|
|
3764
|
+
|
|
3765
|
+
export declare function UiPolicyCreateRequestToJSONTyped(value?: UiPolicyCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
3400
3766
|
|
|
3401
3767
|
/**
|
|
3402
3768
|
* ODRL constraint as supported by the sovity product landscape
|
|
@@ -3405,7 +3771,7 @@ export declare function UiPolicyCreateRequestToJSON(value?: UiPolicyCreateReques
|
|
|
3405
3771
|
*/
|
|
3406
3772
|
export declare interface UiPolicyExpression {
|
|
3407
3773
|
/**
|
|
3408
|
-
*
|
|
3774
|
+
* Expression type
|
|
3409
3775
|
* @type {UiPolicyExpressionType}
|
|
3410
3776
|
* @memberof UiPolicyExpression
|
|
3411
3777
|
*/
|
|
@@ -3417,7 +3783,7 @@ export declare interface UiPolicyExpression {
|
|
|
3417
3783
|
*/
|
|
3418
3784
|
expressions?: Array<UiPolicyExpression>;
|
|
3419
3785
|
/**
|
|
3420
|
-
*
|
|
3786
|
+
* Only for type CONSTRAINT. A single constraint.
|
|
3421
3787
|
* @type {UiPolicyConstraint}
|
|
3422
3788
|
* @memberof UiPolicyExpression
|
|
3423
3789
|
*/
|
|
@@ -3428,7 +3794,9 @@ export declare function UiPolicyExpressionFromJSON(json: any): UiPolicyExpressio
|
|
|
3428
3794
|
|
|
3429
3795
|
export declare function UiPolicyExpressionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyExpression;
|
|
3430
3796
|
|
|
3431
|
-
export declare function UiPolicyExpressionToJSON(
|
|
3797
|
+
export declare function UiPolicyExpressionToJSON(json: any): UiPolicyExpression;
|
|
3798
|
+
|
|
3799
|
+
export declare function UiPolicyExpressionToJSONTyped(value?: UiPolicyExpression | null, ignoreDiscriminator?: boolean): any;
|
|
3432
3800
|
|
|
3433
3801
|
/**
|
|
3434
3802
|
* Ui Policy Expression types:
|
|
@@ -3436,6 +3804,7 @@ export declare function UiPolicyExpressionToJSON(value?: UiPolicyExpression | nu
|
|
|
3436
3804
|
* * `AND` - Conjunction of several expressions. Evaluates to true iff all child expressions are true.
|
|
3437
3805
|
* * `OR` - Disjunction of several expressions. Evaluates to true iff at least one child expression is true.
|
|
3438
3806
|
* * `XONE` - XONE operation. Evaluates to true iff exactly one child expression is true.
|
|
3807
|
+
*
|
|
3439
3808
|
* @export
|
|
3440
3809
|
*/
|
|
3441
3810
|
export declare const UiPolicyExpressionType: {
|
|
@@ -3454,6 +3823,8 @@ export declare function UiPolicyExpressionTypeFromJSONTyped(json: any, ignoreDis
|
|
|
3454
3823
|
|
|
3455
3824
|
export declare function UiPolicyExpressionTypeToJSON(value?: UiPolicyExpressionType | null): any;
|
|
3456
3825
|
|
|
3826
|
+
export declare function UiPolicyExpressionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiPolicyExpressionType;
|
|
3827
|
+
|
|
3457
3828
|
export declare function UiPolicyFromJSON(json: any): UiPolicy;
|
|
3458
3829
|
|
|
3459
3830
|
export declare function UiPolicyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicy;
|
|
@@ -3465,7 +3836,7 @@ export declare function UiPolicyFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
3465
3836
|
*/
|
|
3466
3837
|
export declare interface UiPolicyLiteral {
|
|
3467
3838
|
/**
|
|
3468
|
-
*
|
|
3839
|
+
* Value Type
|
|
3469
3840
|
* @type {UiPolicyLiteralType}
|
|
3470
3841
|
* @memberof UiPolicyLiteral
|
|
3471
3842
|
*/
|
|
@@ -3488,7 +3859,9 @@ export declare function UiPolicyLiteralFromJSON(json: any): UiPolicyLiteral;
|
|
|
3488
3859
|
|
|
3489
3860
|
export declare function UiPolicyLiteralFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyLiteral;
|
|
3490
3861
|
|
|
3491
|
-
export declare function UiPolicyLiteralToJSON(
|
|
3862
|
+
export declare function UiPolicyLiteralToJSON(json: any): UiPolicyLiteral;
|
|
3863
|
+
|
|
3864
|
+
export declare function UiPolicyLiteralToJSONTyped(value?: UiPolicyLiteral | null, ignoreDiscriminator?: boolean): any;
|
|
3492
3865
|
|
|
3493
3866
|
/**
|
|
3494
3867
|
* Supported Types of values for the right hand side of an expression
|
|
@@ -3508,7 +3881,11 @@ export declare function UiPolicyLiteralTypeFromJSONTyped(json: any, ignoreDiscri
|
|
|
3508
3881
|
|
|
3509
3882
|
export declare function UiPolicyLiteralTypeToJSON(value?: UiPolicyLiteralType | null): any;
|
|
3510
3883
|
|
|
3511
|
-
export declare function
|
|
3884
|
+
export declare function UiPolicyLiteralTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiPolicyLiteralType;
|
|
3885
|
+
|
|
3886
|
+
export declare function UiPolicyToJSON(json: any): UiPolicy;
|
|
3887
|
+
|
|
3888
|
+
export declare function UiPolicyToJSONTyped(value?: UiPolicy | null, ignoreDiscriminator?: boolean): any;
|
|
3512
3889
|
|
|
3513
3890
|
/**
|
|
3514
3891
|
*
|