@sovity.de/edc-client 10.5.1 → 11.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 +447 -202
- package/dist/sovity-edc-client.js +2710 -2373
- 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 +1 -1
|
@@ -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;
|
|
483
|
+
|
|
484
|
+
export declare function ContractAgreementPageQueryToJSONTyped(value?: ContractAgreementPageQuery | null, ignoreDiscriminator?: boolean): any;
|
|
485
|
+
|
|
486
|
+
export declare function ContractAgreementPageToJSON(json: any): ContractAgreementPage;
|
|
431
487
|
|
|
432
|
-
export declare function
|
|
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;
|
|
899
|
+
|
|
900
|
+
export declare function DashboardCxDidConfigToJSON(json: any): DashboardCxDidConfig;
|
|
803
901
|
|
|
804
|
-
export declare function
|
|
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;
|
|
925
|
+
|
|
926
|
+
export declare function DashboardDapsConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardDapsConfig;
|
|
833
927
|
|
|
834
|
-
export declare function
|
|
928
|
+
export declare function DashboardDapsConfigToJSON(json: any): DashboardDapsConfig;
|
|
835
929
|
|
|
836
|
-
export declare function
|
|
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,13 +966,13 @@ 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
|
*/
|
|
@@ -932,24 +1026,26 @@ export declare interface DashboardPage {
|
|
|
932
1026
|
*/
|
|
933
1027
|
connectorMaintainerName: string;
|
|
934
1028
|
/**
|
|
935
|
-
*
|
|
1029
|
+
* Your Connector's DAPS Configuration (if present)
|
|
936
1030
|
* @type {DashboardDapsConfig}
|
|
937
1031
|
* @memberof DashboardPage
|
|
938
1032
|
*/
|
|
939
1033
|
connectorDapsConfig?: DashboardDapsConfig;
|
|
940
1034
|
/**
|
|
941
|
-
*
|
|
942
|
-
* @type {
|
|
1035
|
+
* Your Connector's Catena-X Web-DID Configuration (if present)
|
|
1036
|
+
* @type {DashboardCxDidConfig}
|
|
943
1037
|
* @memberof DashboardPage
|
|
944
1038
|
*/
|
|
945
|
-
|
|
1039
|
+
connectorCxDidConfig?: DashboardCxDidConfig;
|
|
946
1040
|
}
|
|
947
1041
|
|
|
948
1042
|
export declare function DashboardPageFromJSON(json: any): DashboardPage;
|
|
949
1043
|
|
|
950
1044
|
export declare function DashboardPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardPage;
|
|
951
1045
|
|
|
952
|
-
export declare function DashboardPageToJSON(
|
|
1046
|
+
export declare function DashboardPageToJSON(json: any): DashboardPage;
|
|
1047
|
+
|
|
1048
|
+
export declare function DashboardPageToJSONTyped(value?: DashboardPage | null, ignoreDiscriminator?: boolean): any;
|
|
953
1049
|
|
|
954
1050
|
/**
|
|
955
1051
|
* Number of Transfer Processes for given direction.
|
|
@@ -987,50 +1083,67 @@ export declare function DashboardTransferAmountsFromJSON(json: any): DashboardTr
|
|
|
987
1083
|
|
|
988
1084
|
export declare function DashboardTransferAmountsFromJSONTyped(json: any, ignoreDiscriminator: boolean): DashboardTransferAmounts;
|
|
989
1085
|
|
|
990
|
-
export declare function DashboardTransferAmountsToJSON(
|
|
1086
|
+
export declare function DashboardTransferAmountsToJSON(json: any): DashboardTransferAmounts;
|
|
1087
|
+
|
|
1088
|
+
export declare function DashboardTransferAmountsToJSONTyped(value?: DashboardTransferAmounts | null, ignoreDiscriminator?: boolean): any;
|
|
991
1089
|
|
|
992
1090
|
/**
|
|
993
1091
|
* Request to create a data offer
|
|
994
1092
|
* @export
|
|
995
|
-
* @interface
|
|
1093
|
+
* @interface DataOfferCreateRequest
|
|
996
1094
|
*/
|
|
997
|
-
export declare interface
|
|
1095
|
+
export declare interface DataOfferCreateRequest {
|
|
998
1096
|
/**
|
|
999
|
-
*
|
|
1097
|
+
* The asset to create
|
|
1000
1098
|
* @type {UiAssetCreateRequest}
|
|
1001
|
-
* @memberof
|
|
1099
|
+
* @memberof DataOfferCreateRequest
|
|
1002
1100
|
*/
|
|
1003
|
-
|
|
1101
|
+
asset: UiAssetCreateRequest;
|
|
1004
1102
|
/**
|
|
1005
|
-
*
|
|
1006
|
-
* @type {
|
|
1007
|
-
* @memberof
|
|
1103
|
+
*
|
|
1104
|
+
* @type {DataOfferPublishType}
|
|
1105
|
+
* @memberof DataOfferCreateRequest
|
|
1008
1106
|
*/
|
|
1009
|
-
|
|
1107
|
+
publishType: DataOfferPublishType;
|
|
1010
1108
|
/**
|
|
1011
|
-
*
|
|
1109
|
+
* Policy Expression. Only relevant if policyType is 'RESTRICTED'
|
|
1012
1110
|
* @type {UiPolicyExpression}
|
|
1013
|
-
* @memberof
|
|
1111
|
+
* @memberof DataOfferCreateRequest
|
|
1014
1112
|
*/
|
|
1015
|
-
|
|
1113
|
+
policyExpression?: UiPolicyExpression;
|
|
1016
1114
|
}
|
|
1017
1115
|
|
|
1018
|
-
export declare function
|
|
1116
|
+
export declare function DataOfferCreateRequestFromJSON(json: any): DataOfferCreateRequest;
|
|
1019
1117
|
|
|
1020
|
-
export declare function
|
|
1118
|
+
export declare function DataOfferCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataOfferCreateRequest;
|
|
1119
|
+
|
|
1120
|
+
export declare function DataOfferCreateRequestToJSON(json: any): DataOfferCreateRequest;
|
|
1121
|
+
|
|
1122
|
+
export declare function DataOfferCreateRequestToJSONTyped(value?: DataOfferCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1021
1123
|
|
|
1022
1124
|
/**
|
|
1125
|
+
* Decides whether the data offer is to be published published:
|
|
1126
|
+
* * `DONT_PUBLISH` - Data offer is not published. Only an asset is created.
|
|
1127
|
+
* * `PUBLISH_UNRESTRICTED` - Creates the asset and publishes it using the always-true policy.
|
|
1128
|
+
* * `PUBLISH_RESTRICTED` - Creates the asset and publishes it with a newly created policy definition with the given policy expression
|
|
1129
|
+
*
|
|
1023
1130
|
* @export
|
|
1024
1131
|
*/
|
|
1025
|
-
export declare const
|
|
1132
|
+
export declare const DataOfferPublishType: {
|
|
1026
1133
|
readonly DontPublish: "DONT_PUBLISH";
|
|
1027
1134
|
readonly PublishUnrestricted: "PUBLISH_UNRESTRICTED";
|
|
1028
1135
|
readonly PublishRestricted: "PUBLISH_RESTRICTED";
|
|
1029
1136
|
};
|
|
1030
1137
|
|
|
1031
|
-
export declare type
|
|
1138
|
+
export declare type DataOfferPublishType = (typeof DataOfferPublishType)[keyof typeof DataOfferPublishType];
|
|
1139
|
+
|
|
1140
|
+
export declare function DataOfferPublishTypeFromJSON(json: any): DataOfferPublishType;
|
|
1032
1141
|
|
|
1033
|
-
export declare function
|
|
1142
|
+
export declare function DataOfferPublishTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataOfferPublishType;
|
|
1143
|
+
|
|
1144
|
+
export declare function DataOfferPublishTypeToJSON(value?: DataOfferPublishType | null): any;
|
|
1145
|
+
|
|
1146
|
+
export declare function DataOfferPublishTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DataOfferPublishType;
|
|
1034
1147
|
|
|
1035
1148
|
/**
|
|
1036
1149
|
* 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 +1162,8 @@ export declare function DataSourceAvailabilityFromJSONTyped(json: any, ignoreDis
|
|
|
1049
1162
|
|
|
1050
1163
|
export declare function DataSourceAvailabilityToJSON(value?: DataSourceAvailability | null): any;
|
|
1051
1164
|
|
|
1165
|
+
export declare function DataSourceAvailabilityToJSONTyped(value: any, ignoreDiscriminator: boolean): DataSourceAvailability;
|
|
1166
|
+
|
|
1052
1167
|
/**
|
|
1053
1168
|
* Supported Data Source Types by UiDataSource
|
|
1054
1169
|
* @export
|
|
@@ -1067,6 +1182,8 @@ export declare function DataSourceTypeFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
1067
1182
|
|
|
1068
1183
|
export declare function DataSourceTypeToJSON(value?: DataSourceType | null): any;
|
|
1069
1184
|
|
|
1185
|
+
export declare function DataSourceTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DataSourceType;
|
|
1186
|
+
|
|
1070
1187
|
export declare const DefaultConfig: Configuration;
|
|
1071
1188
|
|
|
1072
1189
|
export declare interface DeleteAssetRequest {
|
|
@@ -1168,6 +1285,7 @@ export declare interface FileUploadCreateAssetRequest {
|
|
|
1168
1285
|
}
|
|
1169
1286
|
|
|
1170
1287
|
export declare interface GetCatalogPageDataOffersRequest {
|
|
1288
|
+
participantId?: string;
|
|
1171
1289
|
connectorEndpoint?: string;
|
|
1172
1290
|
}
|
|
1173
1291
|
|
|
@@ -1230,7 +1348,9 @@ export declare function IdAvailabilityResponseFromJSON(json: any): IdAvailabilit
|
|
|
1230
1348
|
|
|
1231
1349
|
export declare function IdAvailabilityResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdAvailabilityResponse;
|
|
1232
1350
|
|
|
1233
|
-
export declare function IdAvailabilityResponseToJSON(
|
|
1351
|
+
export declare function IdAvailabilityResponseToJSON(json: any): IdAvailabilityResponse;
|
|
1352
|
+
|
|
1353
|
+
export declare function IdAvailabilityResponseToJSONTyped(value?: IdAvailabilityResponse | null, ignoreDiscriminator?: boolean): any;
|
|
1234
1354
|
|
|
1235
1355
|
/**
|
|
1236
1356
|
* Marks the operation as successful
|
|
@@ -1256,7 +1376,9 @@ export declare function IdResponseDtoFromJSON(json: any): IdResponseDto;
|
|
|
1256
1376
|
|
|
1257
1377
|
export declare function IdResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdResponseDto;
|
|
1258
1378
|
|
|
1259
|
-
export declare function IdResponseDtoToJSON(
|
|
1379
|
+
export declare function IdResponseDtoToJSON(json: any): IdResponseDto;
|
|
1380
|
+
|
|
1381
|
+
export declare function IdResponseDtoToJSONTyped(value?: IdResponseDto | null, ignoreDiscriminator?: boolean): any;
|
|
1260
1382
|
|
|
1261
1383
|
export declare interface InitiateContractNegotiationRequest {
|
|
1262
1384
|
contractNegotiationRequest?: ContractNegotiationRequest;
|
|
@@ -1290,7 +1412,9 @@ export declare function InitiateCustomTransferRequestFromJSON(json: any): Initia
|
|
|
1290
1412
|
|
|
1291
1413
|
export declare function InitiateCustomTransferRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InitiateCustomTransferRequest;
|
|
1292
1414
|
|
|
1293
|
-
export declare function InitiateCustomTransferRequestToJSON(
|
|
1415
|
+
export declare function InitiateCustomTransferRequestToJSON(json: any): InitiateCustomTransferRequest;
|
|
1416
|
+
|
|
1417
|
+
export declare function InitiateCustomTransferRequestToJSONTyped(value?: InitiateCustomTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1294
1418
|
|
|
1295
1419
|
export declare interface InitiateTransferOperationRequest {
|
|
1296
1420
|
initiateTransferRequest?: InitiateTransferRequest;
|
|
@@ -1308,6 +1432,12 @@ export declare interface InitiateTransferRequest {
|
|
|
1308
1432
|
* @memberof InitiateTransferRequest
|
|
1309
1433
|
*/
|
|
1310
1434
|
contractAgreementId: string;
|
|
1435
|
+
/**
|
|
1436
|
+
* 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'
|
|
1437
|
+
* @type {string}
|
|
1438
|
+
* @memberof InitiateTransferRequest
|
|
1439
|
+
*/
|
|
1440
|
+
transferType: string;
|
|
1311
1441
|
/**
|
|
1312
1442
|
* Data Sink / Data Address
|
|
1313
1443
|
* @type {{ [key: string]: string; }}
|
|
@@ -1330,7 +1460,9 @@ export declare function InitiateTransferRequestFromJSON(json: any): InitiateTran
|
|
|
1330
1460
|
|
|
1331
1461
|
export declare function InitiateTransferRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): InitiateTransferRequest;
|
|
1332
1462
|
|
|
1333
|
-
export declare function InitiateTransferRequestToJSON(
|
|
1463
|
+
export declare function InitiateTransferRequestToJSON(json: any): InitiateTransferRequest;
|
|
1464
|
+
|
|
1465
|
+
export declare function InitiateTransferRequestToJSONTyped(value?: InitiateTransferRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1334
1466
|
|
|
1335
1467
|
export declare type InitOverrideFunction = (requestContext: {
|
|
1336
1468
|
init: HTTPRequestInit;
|
|
@@ -1340,257 +1472,294 @@ export declare type InitOverrideFunction = (requestContext: {
|
|
|
1340
1472
|
/**
|
|
1341
1473
|
* Check if a given object implements the AssetPage interface.
|
|
1342
1474
|
*/
|
|
1343
|
-
export declare function instanceOfAssetPage(value:
|
|
1475
|
+
export declare function instanceOfAssetPage(value: any): value is AssetPage;
|
|
1476
|
+
|
|
1477
|
+
/**
|
|
1478
|
+
* Check if a given object implements the BuildInfo interface.
|
|
1479
|
+
*/
|
|
1480
|
+
export declare function instanceOfBuildInfo(value: any): value is BuildInfo;
|
|
1344
1481
|
|
|
1345
1482
|
/**
|
|
1346
1483
|
* Check if a given object implements the CatalogFilterExpression interface.
|
|
1347
1484
|
*/
|
|
1348
|
-
export declare function instanceOfCatalogFilterExpression(value:
|
|
1485
|
+
export declare function instanceOfCatalogFilterExpression(value: any): value is CatalogFilterExpression;
|
|
1349
1486
|
|
|
1350
1487
|
/**
|
|
1351
1488
|
* Check if a given object implements the CatalogFilterExpressionLiteral interface.
|
|
1352
1489
|
*/
|
|
1353
|
-
export declare function instanceOfCatalogFilterExpressionLiteral(value:
|
|
1490
|
+
export declare function instanceOfCatalogFilterExpressionLiteral(value: any): value is CatalogFilterExpressionLiteral;
|
|
1491
|
+
|
|
1492
|
+
export declare function instanceOfCatalogFilterExpressionLiteralType(value: any): boolean;
|
|
1493
|
+
|
|
1494
|
+
export declare function instanceOfCatalogFilterExpressionOperator(value: any): boolean;
|
|
1354
1495
|
|
|
1355
1496
|
/**
|
|
1356
1497
|
* Check if a given object implements the CatalogQuery interface.
|
|
1357
1498
|
*/
|
|
1358
|
-
export declare function instanceOfCatalogQuery(value:
|
|
1499
|
+
export declare function instanceOfCatalogQuery(value: any): value is CatalogQuery;
|
|
1359
1500
|
|
|
1360
1501
|
/**
|
|
1361
1502
|
* Check if a given object implements the ConnectorLimits interface.
|
|
1362
1503
|
*/
|
|
1363
|
-
export declare function instanceOfConnectorLimits(value:
|
|
1504
|
+
export declare function instanceOfConnectorLimits(value: any): value is ConnectorLimits;
|
|
1364
1505
|
|
|
1365
1506
|
/**
|
|
1366
1507
|
* Check if a given object implements the ContractAgreementCard interface.
|
|
1367
1508
|
*/
|
|
1368
|
-
export declare function instanceOfContractAgreementCard(value:
|
|
1509
|
+
export declare function instanceOfContractAgreementCard(value: any): value is ContractAgreementCard;
|
|
1510
|
+
|
|
1511
|
+
export declare function instanceOfContractAgreementDirection(value: any): boolean;
|
|
1369
1512
|
|
|
1370
1513
|
/**
|
|
1371
1514
|
* Check if a given object implements the ContractAgreementPage interface.
|
|
1372
1515
|
*/
|
|
1373
|
-
export declare function instanceOfContractAgreementPage(value:
|
|
1516
|
+
export declare function instanceOfContractAgreementPage(value: any): value is ContractAgreementPage;
|
|
1374
1517
|
|
|
1375
1518
|
/**
|
|
1376
1519
|
* Check if a given object implements the ContractAgreementPageQuery interface.
|
|
1377
1520
|
*/
|
|
1378
|
-
export declare function instanceOfContractAgreementPageQuery(value:
|
|
1521
|
+
export declare function instanceOfContractAgreementPageQuery(value: any): value is ContractAgreementPageQuery;
|
|
1379
1522
|
|
|
1380
1523
|
/**
|
|
1381
1524
|
* Check if a given object implements the ContractAgreementTerminationInfo interface.
|
|
1382
1525
|
*/
|
|
1383
|
-
export declare function instanceOfContractAgreementTerminationInfo(value:
|
|
1526
|
+
export declare function instanceOfContractAgreementTerminationInfo(value: any): value is ContractAgreementTerminationInfo;
|
|
1384
1527
|
|
|
1385
1528
|
/**
|
|
1386
1529
|
* Check if a given object implements the ContractAgreementTransferProcess interface.
|
|
1387
1530
|
*/
|
|
1388
|
-
export declare function instanceOfContractAgreementTransferProcess(value:
|
|
1531
|
+
export declare function instanceOfContractAgreementTransferProcess(value: any): value is ContractAgreementTransferProcess;
|
|
1389
1532
|
|
|
1390
1533
|
/**
|
|
1391
1534
|
* Check if a given object implements the ContractDefinitionEntry interface.
|
|
1392
1535
|
*/
|
|
1393
|
-
export declare function instanceOfContractDefinitionEntry(value:
|
|
1536
|
+
export declare function instanceOfContractDefinitionEntry(value: any): value is ContractDefinitionEntry;
|
|
1394
1537
|
|
|
1395
1538
|
/**
|
|
1396
1539
|
* Check if a given object implements the ContractDefinitionPage interface.
|
|
1397
1540
|
*/
|
|
1398
|
-
export declare function instanceOfContractDefinitionPage(value:
|
|
1541
|
+
export declare function instanceOfContractDefinitionPage(value: any): value is ContractDefinitionPage;
|
|
1399
1542
|
|
|
1400
1543
|
/**
|
|
1401
1544
|
* Check if a given object implements the ContractDefinitionRequest interface.
|
|
1402
1545
|
*/
|
|
1403
|
-
export declare function instanceOfContractDefinitionRequest(value:
|
|
1546
|
+
export declare function instanceOfContractDefinitionRequest(value: any): value is ContractDefinitionRequest;
|
|
1404
1547
|
|
|
1405
1548
|
/**
|
|
1406
1549
|
* Check if a given object implements the ContractNegotiationRequest interface.
|
|
1407
1550
|
*/
|
|
1408
|
-
export declare function instanceOfContractNegotiationRequest(value:
|
|
1551
|
+
export declare function instanceOfContractNegotiationRequest(value: any): value is ContractNegotiationRequest;
|
|
1552
|
+
|
|
1553
|
+
export declare function instanceOfContractNegotiationSimplifiedState(value: any): boolean;
|
|
1409
1554
|
|
|
1410
1555
|
/**
|
|
1411
1556
|
* Check if a given object implements the ContractNegotiationState interface.
|
|
1412
1557
|
*/
|
|
1413
|
-
export declare function instanceOfContractNegotiationState(value:
|
|
1558
|
+
export declare function instanceOfContractNegotiationState(value: any): value is ContractNegotiationState;
|
|
1559
|
+
|
|
1560
|
+
export declare function instanceOfContractTerminatedBy(value: any): boolean;
|
|
1414
1561
|
|
|
1415
1562
|
/**
|
|
1416
1563
|
* Check if a given object implements the ContractTerminationRequest interface.
|
|
1417
1564
|
*/
|
|
1418
|
-
export declare function instanceOfContractTerminationRequest(value:
|
|
1565
|
+
export declare function instanceOfContractTerminationRequest(value: any): value is ContractTerminationRequest;
|
|
1566
|
+
|
|
1567
|
+
export declare function instanceOfContractTerminationStatus(value: any): boolean;
|
|
1419
1568
|
|
|
1420
1569
|
/**
|
|
1421
|
-
* Check if a given object implements the
|
|
1570
|
+
* Check if a given object implements the DashboardCxDidConfig interface.
|
|
1422
1571
|
*/
|
|
1423
|
-
export declare function
|
|
1572
|
+
export declare function instanceOfDashboardCxDidConfig(value: any): value is DashboardCxDidConfig;
|
|
1424
1573
|
|
|
1425
1574
|
/**
|
|
1426
|
-
* Check if a given object implements the
|
|
1575
|
+
* Check if a given object implements the DashboardDapsConfig interface.
|
|
1427
1576
|
*/
|
|
1428
|
-
export declare function
|
|
1577
|
+
export declare function instanceOfDashboardDapsConfig(value: any): value is DashboardDapsConfig;
|
|
1429
1578
|
|
|
1430
1579
|
/**
|
|
1431
1580
|
* Check if a given object implements the DashboardPage interface.
|
|
1432
1581
|
*/
|
|
1433
|
-
export declare function instanceOfDashboardPage(value:
|
|
1582
|
+
export declare function instanceOfDashboardPage(value: any): value is DashboardPage;
|
|
1434
1583
|
|
|
1435
1584
|
/**
|
|
1436
1585
|
* Check if a given object implements the DashboardTransferAmounts interface.
|
|
1437
1586
|
*/
|
|
1438
|
-
export declare function instanceOfDashboardTransferAmounts(value:
|
|
1587
|
+
export declare function instanceOfDashboardTransferAmounts(value: any): value is DashboardTransferAmounts;
|
|
1439
1588
|
|
|
1440
1589
|
/**
|
|
1441
|
-
* Check if a given object implements the
|
|
1590
|
+
* Check if a given object implements the DataOfferCreateRequest interface.
|
|
1442
1591
|
*/
|
|
1443
|
-
export declare function
|
|
1592
|
+
export declare function instanceOfDataOfferCreateRequest(value: any): value is DataOfferCreateRequest;
|
|
1593
|
+
|
|
1594
|
+
export declare function instanceOfDataOfferPublishType(value: any): boolean;
|
|
1595
|
+
|
|
1596
|
+
export declare function instanceOfDataSourceAvailability(value: any): boolean;
|
|
1597
|
+
|
|
1598
|
+
export declare function instanceOfDataSourceType(value: any): boolean;
|
|
1444
1599
|
|
|
1445
1600
|
/**
|
|
1446
1601
|
* Check if a given object implements the IdAvailabilityResponse interface.
|
|
1447
1602
|
*/
|
|
1448
|
-
export declare function instanceOfIdAvailabilityResponse(value:
|
|
1603
|
+
export declare function instanceOfIdAvailabilityResponse(value: any): value is IdAvailabilityResponse;
|
|
1449
1604
|
|
|
1450
1605
|
/**
|
|
1451
1606
|
* Check if a given object implements the IdResponseDto interface.
|
|
1452
1607
|
*/
|
|
1453
|
-
export declare function instanceOfIdResponseDto(value:
|
|
1608
|
+
export declare function instanceOfIdResponseDto(value: any): value is IdResponseDto;
|
|
1454
1609
|
|
|
1455
1610
|
/**
|
|
1456
1611
|
* Check if a given object implements the InitiateCustomTransferRequest interface.
|
|
1457
1612
|
*/
|
|
1458
|
-
export declare function instanceOfInitiateCustomTransferRequest(value:
|
|
1613
|
+
export declare function instanceOfInitiateCustomTransferRequest(value: any): value is InitiateCustomTransferRequest;
|
|
1459
1614
|
|
|
1460
1615
|
/**
|
|
1461
1616
|
* Check if a given object implements the InitiateTransferRequest interface.
|
|
1462
1617
|
*/
|
|
1463
|
-
export declare function instanceOfInitiateTransferRequest(value:
|
|
1618
|
+
export declare function instanceOfInitiateTransferRequest(value: any): value is InitiateTransferRequest;
|
|
1464
1619
|
|
|
1465
1620
|
/**
|
|
1466
1621
|
* Check if a given object implements the KpiResult interface.
|
|
1467
1622
|
*/
|
|
1468
|
-
export declare function instanceOfKpiResult(value:
|
|
1623
|
+
export declare function instanceOfKpiResult(value: any): value is KpiResult;
|
|
1624
|
+
|
|
1625
|
+
export declare function instanceOfOperatorDto(value: any): boolean;
|
|
1469
1626
|
|
|
1470
1627
|
/**
|
|
1471
1628
|
* Check if a given object implements the PolicyDefinitionCreateDto interface.
|
|
1472
1629
|
*/
|
|
1473
|
-
export declare function instanceOfPolicyDefinitionCreateDto(value:
|
|
1630
|
+
export declare function instanceOfPolicyDefinitionCreateDto(value: any): value is PolicyDefinitionCreateDto;
|
|
1474
1631
|
|
|
1475
1632
|
/**
|
|
1476
1633
|
* Check if a given object implements the PolicyDefinitionCreateRequest interface.
|
|
1477
1634
|
*/
|
|
1478
|
-
export declare function instanceOfPolicyDefinitionCreateRequest(value:
|
|
1635
|
+
export declare function instanceOfPolicyDefinitionCreateRequest(value: any): value is PolicyDefinitionCreateRequest;
|
|
1479
1636
|
|
|
1480
1637
|
/**
|
|
1481
1638
|
* Check if a given object implements the PolicyDefinitionDto interface.
|
|
1482
1639
|
*/
|
|
1483
|
-
export declare function instanceOfPolicyDefinitionDto(value:
|
|
1640
|
+
export declare function instanceOfPolicyDefinitionDto(value: any): value is PolicyDefinitionDto;
|
|
1484
1641
|
|
|
1485
1642
|
/**
|
|
1486
1643
|
* Check if a given object implements the PolicyDefinitionPage interface.
|
|
1487
1644
|
*/
|
|
1488
|
-
export declare function instanceOfPolicyDefinitionPage(value:
|
|
1645
|
+
export declare function instanceOfPolicyDefinitionPage(value: any): value is PolicyDefinitionPage;
|
|
1489
1646
|
|
|
1490
1647
|
/**
|
|
1491
1648
|
* Check if a given object implements the SecretValue interface.
|
|
1492
1649
|
*/
|
|
1493
|
-
export declare function instanceOfSecretValue(value:
|
|
1650
|
+
export declare function instanceOfSecretValue(value: any): value is SecretValue;
|
|
1494
1651
|
|
|
1495
1652
|
/**
|
|
1496
1653
|
* Check if a given object implements the TransferHistoryEntry interface.
|
|
1497
1654
|
*/
|
|
1498
|
-
export declare function instanceOfTransferHistoryEntry(value:
|
|
1655
|
+
export declare function instanceOfTransferHistoryEntry(value: any): value is TransferHistoryEntry;
|
|
1499
1656
|
|
|
1500
1657
|
/**
|
|
1501
1658
|
* Check if a given object implements the TransferHistoryPage interface.
|
|
1502
1659
|
*/
|
|
1503
|
-
export declare function instanceOfTransferHistoryPage(value:
|
|
1660
|
+
export declare function instanceOfTransferHistoryPage(value: any): value is TransferHistoryPage;
|
|
1661
|
+
|
|
1662
|
+
export declare function instanceOfTransferProcessSimplifiedState(value: any): boolean;
|
|
1504
1663
|
|
|
1505
1664
|
/**
|
|
1506
1665
|
* Check if a given object implements the TransferProcessState interface.
|
|
1507
1666
|
*/
|
|
1508
|
-
export declare function instanceOfTransferProcessState(value:
|
|
1667
|
+
export declare function instanceOfTransferProcessState(value: any): value is TransferProcessState;
|
|
1509
1668
|
|
|
1510
1669
|
/**
|
|
1511
1670
|
* Check if a given object implements the TransferProcessStatesDto interface.
|
|
1512
1671
|
*/
|
|
1513
|
-
export declare function instanceOfTransferProcessStatesDto(value:
|
|
1672
|
+
export declare function instanceOfTransferProcessStatesDto(value: any): value is TransferProcessStatesDto;
|
|
1514
1673
|
|
|
1515
1674
|
/**
|
|
1516
1675
|
* Check if a given object implements the UiAsset interface.
|
|
1517
1676
|
*/
|
|
1518
|
-
export declare function instanceOfUiAsset(value:
|
|
1677
|
+
export declare function instanceOfUiAsset(value: any): value is UiAsset;
|
|
1519
1678
|
|
|
1520
1679
|
/**
|
|
1521
1680
|
* Check if a given object implements the UiAssetCreateRequest interface.
|
|
1522
1681
|
*/
|
|
1523
|
-
export declare function instanceOfUiAssetCreateRequest(value:
|
|
1682
|
+
export declare function instanceOfUiAssetCreateRequest(value: any): value is UiAssetCreateRequest;
|
|
1524
1683
|
|
|
1525
1684
|
/**
|
|
1526
1685
|
* Check if a given object implements the UiAssetEditRequest interface.
|
|
1527
1686
|
*/
|
|
1528
|
-
export declare function instanceOfUiAssetEditRequest(value:
|
|
1687
|
+
export declare function instanceOfUiAssetEditRequest(value: any): value is UiAssetEditRequest;
|
|
1529
1688
|
|
|
1530
1689
|
/**
|
|
1531
1690
|
* Check if a given object implements the UiContractNegotiation interface.
|
|
1532
1691
|
*/
|
|
1533
|
-
export declare function instanceOfUiContractNegotiation(value:
|
|
1692
|
+
export declare function instanceOfUiContractNegotiation(value: any): value is UiContractNegotiation;
|
|
1534
1693
|
|
|
1535
1694
|
/**
|
|
1536
1695
|
* Check if a given object implements the UiContractOffer interface.
|
|
1537
1696
|
*/
|
|
1538
|
-
export declare function instanceOfUiContractOffer(value:
|
|
1697
|
+
export declare function instanceOfUiContractOffer(value: any): value is UiContractOffer;
|
|
1539
1698
|
|
|
1540
1699
|
/**
|
|
1541
1700
|
* Check if a given object implements the UiCriterion interface.
|
|
1542
1701
|
*/
|
|
1543
|
-
export declare function instanceOfUiCriterion(value:
|
|
1702
|
+
export declare function instanceOfUiCriterion(value: any): value is UiCriterion;
|
|
1544
1703
|
|
|
1545
1704
|
/**
|
|
1546
1705
|
* Check if a given object implements the UiCriterionLiteral interface.
|
|
1547
1706
|
*/
|
|
1548
|
-
export declare function instanceOfUiCriterionLiteral(value:
|
|
1707
|
+
export declare function instanceOfUiCriterionLiteral(value: any): value is UiCriterionLiteral;
|
|
1708
|
+
|
|
1709
|
+
export declare function instanceOfUiCriterionLiteralType(value: any): boolean;
|
|
1710
|
+
|
|
1711
|
+
export declare function instanceOfUiCriterionOperator(value: any): boolean;
|
|
1549
1712
|
|
|
1550
1713
|
/**
|
|
1551
1714
|
* Check if a given object implements the UiDataOffer interface.
|
|
1552
1715
|
*/
|
|
1553
|
-
export declare function instanceOfUiDataOffer(value:
|
|
1716
|
+
export declare function instanceOfUiDataOffer(value: any): value is UiDataOffer;
|
|
1554
1717
|
|
|
1555
1718
|
/**
|
|
1556
1719
|
* Check if a given object implements the UiDataSource interface.
|
|
1557
1720
|
*/
|
|
1558
|
-
export declare function instanceOfUiDataSource(value:
|
|
1721
|
+
export declare function instanceOfUiDataSource(value: any): value is UiDataSource;
|
|
1559
1722
|
|
|
1560
1723
|
/**
|
|
1561
1724
|
* Check if a given object implements the UiDataSourceHttpData interface.
|
|
1562
1725
|
*/
|
|
1563
|
-
export declare function instanceOfUiDataSourceHttpData(value:
|
|
1726
|
+
export declare function instanceOfUiDataSourceHttpData(value: any): value is UiDataSourceHttpData;
|
|
1727
|
+
|
|
1728
|
+
export declare function instanceOfUiDataSourceHttpDataMethod(value: any): boolean;
|
|
1564
1729
|
|
|
1565
1730
|
/**
|
|
1566
1731
|
* Check if a given object implements the UiDataSourceOnRequest interface.
|
|
1567
1732
|
*/
|
|
1568
|
-
export declare function instanceOfUiDataSourceOnRequest(value:
|
|
1733
|
+
export declare function instanceOfUiDataSourceOnRequest(value: any): value is UiDataSourceOnRequest;
|
|
1569
1734
|
|
|
1570
1735
|
/**
|
|
1571
1736
|
* Check if a given object implements the UiPolicy interface.
|
|
1572
1737
|
*/
|
|
1573
|
-
export declare function instanceOfUiPolicy(value:
|
|
1738
|
+
export declare function instanceOfUiPolicy(value: any): value is UiPolicy;
|
|
1574
1739
|
|
|
1575
1740
|
/**
|
|
1576
1741
|
* Check if a given object implements the UiPolicyConstraint interface.
|
|
1577
1742
|
*/
|
|
1578
|
-
export declare function instanceOfUiPolicyConstraint(value:
|
|
1743
|
+
export declare function instanceOfUiPolicyConstraint(value: any): value is UiPolicyConstraint;
|
|
1579
1744
|
|
|
1580
1745
|
/**
|
|
1581
1746
|
* Check if a given object implements the UiPolicyCreateRequest interface.
|
|
1582
1747
|
*/
|
|
1583
|
-
export declare function instanceOfUiPolicyCreateRequest(value:
|
|
1748
|
+
export declare function instanceOfUiPolicyCreateRequest(value: any): value is UiPolicyCreateRequest;
|
|
1584
1749
|
|
|
1585
1750
|
/**
|
|
1586
1751
|
* Check if a given object implements the UiPolicyExpression interface.
|
|
1587
1752
|
*/
|
|
1588
|
-
export declare function instanceOfUiPolicyExpression(value:
|
|
1753
|
+
export declare function instanceOfUiPolicyExpression(value: any): value is UiPolicyExpression;
|
|
1754
|
+
|
|
1755
|
+
export declare function instanceOfUiPolicyExpressionType(value: any): boolean;
|
|
1589
1756
|
|
|
1590
1757
|
/**
|
|
1591
1758
|
* Check if a given object implements the UiPolicyLiteral interface.
|
|
1592
1759
|
*/
|
|
1593
|
-
export declare function instanceOfUiPolicyLiteral(value:
|
|
1760
|
+
export declare function instanceOfUiPolicyLiteral(value: any): value is UiPolicyLiteral;
|
|
1761
|
+
|
|
1762
|
+
export declare function instanceOfUiPolicyLiteralType(value: any): boolean;
|
|
1594
1763
|
|
|
1595
1764
|
export declare interface IsAssetIdAvailableRequest {
|
|
1596
1765
|
assetId: string;
|
|
@@ -1644,7 +1813,7 @@ export declare interface KpiResult {
|
|
|
1644
1813
|
*/
|
|
1645
1814
|
contractAgreementsCount: number;
|
|
1646
1815
|
/**
|
|
1647
|
-
*
|
|
1816
|
+
* Counts of incoming and outgoing TransferProcesses and status
|
|
1648
1817
|
* @type {TransferProcessStatesDto}
|
|
1649
1818
|
* @memberof KpiResult
|
|
1650
1819
|
*/
|
|
@@ -1655,7 +1824,9 @@ export declare function KpiResultFromJSON(json: any): KpiResult;
|
|
|
1655
1824
|
|
|
1656
1825
|
export declare function KpiResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): KpiResult;
|
|
1657
1826
|
|
|
1658
|
-
export declare function KpiResultToJSON(
|
|
1827
|
+
export declare function KpiResultToJSON(json: any): KpiResult;
|
|
1828
|
+
|
|
1829
|
+
export declare function KpiResultToJSONTyped(value?: KpiResult | null, ignoreDiscriminator?: boolean): any;
|
|
1659
1830
|
|
|
1660
1831
|
export declare function mapValues(data: any, fn: (item: any) => any): {};
|
|
1661
1832
|
|
|
@@ -1694,6 +1865,8 @@ export declare function OperatorDtoFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
1694
1865
|
|
|
1695
1866
|
export declare function OperatorDtoToJSON(value?: OperatorDto | null): any;
|
|
1696
1867
|
|
|
1868
|
+
export declare function OperatorDtoToJSONTyped(value: any, ignoreDiscriminator: boolean): OperatorDto;
|
|
1869
|
+
|
|
1697
1870
|
/**
|
|
1698
1871
|
* Create a Policy Definition
|
|
1699
1872
|
* @export
|
|
@@ -1707,7 +1880,7 @@ export declare interface PolicyDefinitionCreateDto {
|
|
|
1707
1880
|
*/
|
|
1708
1881
|
policyDefinitionId: string;
|
|
1709
1882
|
/**
|
|
1710
|
-
*
|
|
1883
|
+
* Policy Expression
|
|
1711
1884
|
* @type {UiPolicyExpression}
|
|
1712
1885
|
* @memberof PolicyDefinitionCreateDto
|
|
1713
1886
|
*/
|
|
@@ -1718,7 +1891,9 @@ export declare function PolicyDefinitionCreateDtoFromJSON(json: any): PolicyDefi
|
|
|
1718
1891
|
|
|
1719
1892
|
export declare function PolicyDefinitionCreateDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionCreateDto;
|
|
1720
1893
|
|
|
1721
|
-
export declare function PolicyDefinitionCreateDtoToJSON(
|
|
1894
|
+
export declare function PolicyDefinitionCreateDtoToJSON(json: any): PolicyDefinitionCreateDto;
|
|
1895
|
+
|
|
1896
|
+
export declare function PolicyDefinitionCreateDtoToJSONTyped(value?: PolicyDefinitionCreateDto | null, ignoreDiscriminator?: boolean): any;
|
|
1722
1897
|
|
|
1723
1898
|
/**
|
|
1724
1899
|
* [Deprecated] Create a Policy Definition. Use PolicyDefinitionCreateDto
|
|
@@ -1733,7 +1908,7 @@ export declare interface PolicyDefinitionCreateRequest {
|
|
|
1733
1908
|
*/
|
|
1734
1909
|
policyDefinitionId: string;
|
|
1735
1910
|
/**
|
|
1736
|
-
*
|
|
1911
|
+
* [Deprecated] Conjunction of constraints (simplified UiPolicyExpression)
|
|
1737
1912
|
* @type {UiPolicyCreateRequest}
|
|
1738
1913
|
* @memberof PolicyDefinitionCreateRequest
|
|
1739
1914
|
* @deprecated
|
|
@@ -1745,7 +1920,9 @@ export declare function PolicyDefinitionCreateRequestFromJSON(json: any): Policy
|
|
|
1745
1920
|
|
|
1746
1921
|
export declare function PolicyDefinitionCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionCreateRequest;
|
|
1747
1922
|
|
|
1748
|
-
export declare function PolicyDefinitionCreateRequestToJSON(
|
|
1923
|
+
export declare function PolicyDefinitionCreateRequestToJSON(json: any): PolicyDefinitionCreateRequest;
|
|
1924
|
+
|
|
1925
|
+
export declare function PolicyDefinitionCreateRequestToJSONTyped(value?: PolicyDefinitionCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
1749
1926
|
|
|
1750
1927
|
/**
|
|
1751
1928
|
* Policy Definition as required for the Policy Definition Page
|
|
@@ -1760,7 +1937,7 @@ export declare interface PolicyDefinitionDto {
|
|
|
1760
1937
|
*/
|
|
1761
1938
|
policyDefinitionId: string;
|
|
1762
1939
|
/**
|
|
1763
|
-
*
|
|
1940
|
+
* Policy Contents
|
|
1764
1941
|
* @type {UiPolicy}
|
|
1765
1942
|
* @memberof PolicyDefinitionDto
|
|
1766
1943
|
*/
|
|
@@ -1771,7 +1948,9 @@ export declare function PolicyDefinitionDtoFromJSON(json: any): PolicyDefinition
|
|
|
1771
1948
|
|
|
1772
1949
|
export declare function PolicyDefinitionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionDto;
|
|
1773
1950
|
|
|
1774
|
-
export declare function PolicyDefinitionDtoToJSON(
|
|
1951
|
+
export declare function PolicyDefinitionDtoToJSON(json: any): PolicyDefinitionDto;
|
|
1952
|
+
|
|
1953
|
+
export declare function PolicyDefinitionDtoToJSONTyped(value?: PolicyDefinitionDto | null, ignoreDiscriminator?: boolean): any;
|
|
1775
1954
|
|
|
1776
1955
|
/**
|
|
1777
1956
|
* All data for the policy definition page as required by the UI
|
|
@@ -1791,7 +1970,9 @@ export declare function PolicyDefinitionPageFromJSON(json: any): PolicyDefinitio
|
|
|
1791
1970
|
|
|
1792
1971
|
export declare function PolicyDefinitionPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): PolicyDefinitionPage;
|
|
1793
1972
|
|
|
1794
|
-
export declare function PolicyDefinitionPageToJSON(
|
|
1973
|
+
export declare function PolicyDefinitionPageToJSON(json: any): PolicyDefinitionPage;
|
|
1974
|
+
|
|
1975
|
+
export declare function PolicyDefinitionPageToJSONTyped(value?: PolicyDefinitionPage | null, ignoreDiscriminator?: boolean): any;
|
|
1795
1976
|
|
|
1796
1977
|
export declare interface QueryCatalogRequest {
|
|
1797
1978
|
catalogQuery: CatalogQuery;
|
|
@@ -1838,8 +2019,8 @@ export declare interface ResponseTransformer<T> {
|
|
|
1838
2019
|
|
|
1839
2020
|
declare namespace runtime {
|
|
1840
2021
|
export {
|
|
1841
|
-
exists,
|
|
1842
2022
|
querystring,
|
|
2023
|
+
exists,
|
|
1843
2024
|
mapValues,
|
|
1844
2025
|
canConsumeForm,
|
|
1845
2026
|
BASE_PATH,
|
|
@@ -1900,7 +2081,9 @@ export declare function SecretValueFromJSON(json: any): SecretValue;
|
|
|
1900
2081
|
|
|
1901
2082
|
export declare function SecretValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): SecretValue;
|
|
1902
2083
|
|
|
1903
|
-
export declare function SecretValueToJSON(
|
|
2084
|
+
export declare function SecretValueToJSON(json: any): SecretValue;
|
|
2085
|
+
|
|
2086
|
+
export declare function SecretValueToJSONTyped(value?: SecretValue | null, ignoreDiscriminator?: boolean): any;
|
|
1904
2087
|
|
|
1905
2088
|
export declare interface TerminateContractAgreementRequest {
|
|
1906
2089
|
contractAgreementId: string;
|
|
@@ -1938,7 +2121,7 @@ export declare interface TransferHistoryEntry {
|
|
|
1938
2121
|
*/
|
|
1939
2122
|
lastUpdatedDate: Date;
|
|
1940
2123
|
/**
|
|
1941
|
-
*
|
|
2124
|
+
* Transfer History State
|
|
1942
2125
|
* @type {TransferProcessState}
|
|
1943
2126
|
* @memberof TransferHistoryEntry
|
|
1944
2127
|
*/
|
|
@@ -1950,7 +2133,7 @@ export declare interface TransferHistoryEntry {
|
|
|
1950
2133
|
*/
|
|
1951
2134
|
contractAgreementId: string;
|
|
1952
2135
|
/**
|
|
1953
|
-
*
|
|
2136
|
+
* Incoming vs Outgoing
|
|
1954
2137
|
* @type {ContractAgreementDirection}
|
|
1955
2138
|
* @memberof TransferHistoryEntry
|
|
1956
2139
|
*/
|
|
@@ -1991,7 +2174,9 @@ export declare function TransferHistoryEntryFromJSON(json: any): TransferHistory
|
|
|
1991
2174
|
|
|
1992
2175
|
export declare function TransferHistoryEntryFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferHistoryEntry;
|
|
1993
2176
|
|
|
1994
|
-
export declare function TransferHistoryEntryToJSON(
|
|
2177
|
+
export declare function TransferHistoryEntryToJSON(json: any): TransferHistoryEntry;
|
|
2178
|
+
|
|
2179
|
+
export declare function TransferHistoryEntryToJSONTyped(value?: TransferHistoryEntry | null, ignoreDiscriminator?: boolean): any;
|
|
1995
2180
|
|
|
1996
2181
|
/**
|
|
1997
2182
|
* Data as required by the UI's Transfer History Page
|
|
@@ -2011,7 +2196,9 @@ export declare function TransferHistoryPageFromJSON(json: any): TransferHistoryP
|
|
|
2011
2196
|
|
|
2012
2197
|
export declare function TransferHistoryPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferHistoryPage;
|
|
2013
2198
|
|
|
2014
|
-
export declare function TransferHistoryPageToJSON(
|
|
2199
|
+
export declare function TransferHistoryPageToJSON(json: any): TransferHistoryPage;
|
|
2200
|
+
|
|
2201
|
+
export declare function TransferHistoryPageToJSONTyped(value?: TransferHistoryPage | null, ignoreDiscriminator?: boolean): any;
|
|
2015
2202
|
|
|
2016
2203
|
/**
|
|
2017
2204
|
* Simplified Transfer Process State to be used in UI
|
|
@@ -2031,6 +2218,8 @@ export declare function TransferProcessSimplifiedStateFromJSONTyped(json: any, i
|
|
|
2031
2218
|
|
|
2032
2219
|
export declare function TransferProcessSimplifiedStateToJSON(value?: TransferProcessSimplifiedState | null): any;
|
|
2033
2220
|
|
|
2221
|
+
export declare function TransferProcessSimplifiedStateToJSONTyped(value: any, ignoreDiscriminator: boolean): TransferProcessSimplifiedState;
|
|
2222
|
+
|
|
2034
2223
|
/**
|
|
2035
2224
|
* Transfer Process State interpreted
|
|
2036
2225
|
* @export
|
|
@@ -2050,7 +2239,7 @@ export declare interface TransferProcessState {
|
|
|
2050
2239
|
*/
|
|
2051
2240
|
code: number;
|
|
2052
2241
|
/**
|
|
2053
|
-
*
|
|
2242
|
+
* Whether we are running, in an error state or done.
|
|
2054
2243
|
* @type {TransferProcessSimplifiedState}
|
|
2055
2244
|
* @memberof TransferProcessState
|
|
2056
2245
|
*/
|
|
@@ -2062,7 +2251,7 @@ export declare function TransferProcessStateFromJSON(json: any): TransferProcess
|
|
|
2062
2251
|
export declare function TransferProcessStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessState;
|
|
2063
2252
|
|
|
2064
2253
|
/**
|
|
2065
|
-
*
|
|
2254
|
+
*
|
|
2066
2255
|
* @export
|
|
2067
2256
|
* @interface TransferProcessStatesDto
|
|
2068
2257
|
*/
|
|
@@ -2089,14 +2278,26 @@ export declare function TransferProcessStatesDtoFromJSON(json: any): TransferPro
|
|
|
2089
2278
|
|
|
2090
2279
|
export declare function TransferProcessStatesDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferProcessStatesDto;
|
|
2091
2280
|
|
|
2092
|
-
export declare function TransferProcessStatesDtoToJSON(
|
|
2281
|
+
export declare function TransferProcessStatesDtoToJSON(json: any): TransferProcessStatesDto;
|
|
2282
|
+
|
|
2283
|
+
export declare function TransferProcessStatesDtoToJSONTyped(value?: TransferProcessStatesDto | null, ignoreDiscriminator?: boolean): any;
|
|
2093
2284
|
|
|
2094
|
-
export declare function TransferProcessStateToJSON(
|
|
2285
|
+
export declare function TransferProcessStateToJSON(json: any): TransferProcessState;
|
|
2286
|
+
|
|
2287
|
+
export declare function TransferProcessStateToJSONTyped(value?: TransferProcessState | null, ignoreDiscriminator?: boolean): any;
|
|
2095
2288
|
|
|
2096
2289
|
/**
|
|
2097
2290
|
*
|
|
2098
2291
|
*/
|
|
2099
2292
|
export declare class UIApi extends runtime.BaseAPI {
|
|
2293
|
+
/**
|
|
2294
|
+
* Get the build version info
|
|
2295
|
+
*/
|
|
2296
|
+
buildInfoRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<BuildInfo>>;
|
|
2297
|
+
/**
|
|
2298
|
+
* Get the build version info
|
|
2299
|
+
*/
|
|
2300
|
+
buildInfo(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<BuildInfo>;
|
|
2100
2301
|
/**
|
|
2101
2302
|
* Create a new Asset
|
|
2102
2303
|
*/
|
|
@@ -2123,10 +2324,12 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2123
2324
|
createDataOffer(requestParameters?: CreateDataOfferRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2124
2325
|
/**
|
|
2125
2326
|
* [Deprecated] Create a new Policy Definition from a list of constraints. Use createPolicyDefinitionV2 instead.
|
|
2327
|
+
* @deprecated
|
|
2126
2328
|
*/
|
|
2127
2329
|
createPolicyDefinitionRaw(requestParameters: CreatePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IdResponseDto>>;
|
|
2128
2330
|
/**
|
|
2129
2331
|
* [Deprecated] Create a new Policy Definition from a list of constraints. Use createPolicyDefinitionV2 instead.
|
|
2332
|
+
* @deprecated
|
|
2130
2333
|
*/
|
|
2131
2334
|
createPolicyDefinition(requestParameters?: CreatePolicyDefinitionRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IdResponseDto>;
|
|
2132
2335
|
/**
|
|
@@ -2314,7 +2517,7 @@ export declare class UIApi extends runtime.BaseAPI {
|
|
|
2314
2517
|
*/
|
|
2315
2518
|
export declare interface UiAsset {
|
|
2316
2519
|
/**
|
|
2317
|
-
*
|
|
2520
|
+
* 'Live' vs 'On Request'
|
|
2318
2521
|
* @type {DataSourceAvailability}
|
|
2319
2522
|
* @memberof UiAsset
|
|
2320
2523
|
*/
|
|
@@ -2574,7 +2777,7 @@ export declare interface UiAsset {
|
|
|
2574
2777
|
*/
|
|
2575
2778
|
export declare interface UiAssetCreateRequest {
|
|
2576
2779
|
/**
|
|
2577
|
-
*
|
|
2780
|
+
* Data Source
|
|
2578
2781
|
* @type {UiDataSource}
|
|
2579
2782
|
* @memberof UiAssetCreateRequest
|
|
2580
2783
|
*/
|
|
@@ -2759,7 +2962,9 @@ export declare function UiAssetCreateRequestFromJSON(json: any): UiAssetCreateRe
|
|
|
2759
2962
|
|
|
2760
2963
|
export declare function UiAssetCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetCreateRequest;
|
|
2761
2964
|
|
|
2762
|
-
export declare function UiAssetCreateRequestToJSON(
|
|
2965
|
+
export declare function UiAssetCreateRequestToJSON(json: any): UiAssetCreateRequest;
|
|
2966
|
+
|
|
2967
|
+
export declare function UiAssetCreateRequestToJSONTyped(value?: UiAssetCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
2763
2968
|
|
|
2764
2969
|
/**
|
|
2765
2970
|
* Type-safe data offer metadata for editing an asset as supported by the sovity product landscape. Contains extension points.
|
|
@@ -2768,7 +2973,7 @@ export declare function UiAssetCreateRequestToJSON(value?: UiAssetCreateRequest
|
|
|
2768
2973
|
*/
|
|
2769
2974
|
export declare interface UiAssetEditRequest {
|
|
2770
2975
|
/**
|
|
2771
|
-
*
|
|
2976
|
+
* Data Source
|
|
2772
2977
|
* @type {UiDataSource}
|
|
2773
2978
|
* @memberof UiAssetEditRequest
|
|
2774
2979
|
*/
|
|
@@ -2947,13 +3152,17 @@ export declare function UiAssetEditRequestFromJSON(json: any): UiAssetEditReques
|
|
|
2947
3152
|
|
|
2948
3153
|
export declare function UiAssetEditRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAssetEditRequest;
|
|
2949
3154
|
|
|
2950
|
-
export declare function UiAssetEditRequestToJSON(
|
|
3155
|
+
export declare function UiAssetEditRequestToJSON(json: any): UiAssetEditRequest;
|
|
3156
|
+
|
|
3157
|
+
export declare function UiAssetEditRequestToJSONTyped(value?: UiAssetEditRequest | null, ignoreDiscriminator?: boolean): any;
|
|
2951
3158
|
|
|
2952
3159
|
export declare function UiAssetFromJSON(json: any): UiAsset;
|
|
2953
3160
|
|
|
2954
3161
|
export declare function UiAssetFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiAsset;
|
|
2955
3162
|
|
|
2956
|
-
export declare function UiAssetToJSON(
|
|
3163
|
+
export declare function UiAssetToJSON(json: any): UiAsset;
|
|
3164
|
+
|
|
3165
|
+
export declare function UiAssetToJSONTyped(value?: UiAsset | null, ignoreDiscriminator?: boolean): any;
|
|
2957
3166
|
|
|
2958
3167
|
/**
|
|
2959
3168
|
* Contract Negotiation Information
|
|
@@ -2980,7 +3189,7 @@ export declare interface UiContractNegotiation {
|
|
|
2980
3189
|
*/
|
|
2981
3190
|
contractAgreementId?: string;
|
|
2982
3191
|
/**
|
|
2983
|
-
*
|
|
3192
|
+
* State of the Contract Negotiation state machine
|
|
2984
3193
|
* @type {ContractNegotiationState}
|
|
2985
3194
|
* @memberof UiContractNegotiation
|
|
2986
3195
|
*/
|
|
@@ -2991,7 +3200,9 @@ export declare function UiContractNegotiationFromJSON(json: any): UiContractNego
|
|
|
2991
3200
|
|
|
2992
3201
|
export declare function UiContractNegotiationFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiContractNegotiation;
|
|
2993
3202
|
|
|
2994
|
-
export declare function UiContractNegotiationToJSON(
|
|
3203
|
+
export declare function UiContractNegotiationToJSON(json: any): UiContractNegotiation;
|
|
3204
|
+
|
|
3205
|
+
export declare function UiContractNegotiationToJSONTyped(value?: UiContractNegotiation | null, ignoreDiscriminator?: boolean): any;
|
|
2995
3206
|
|
|
2996
3207
|
/**
|
|
2997
3208
|
* Catalog Data Offer's Contract Offer as required by the UI
|
|
@@ -3006,7 +3217,7 @@ export declare interface UiContractOffer {
|
|
|
3006
3217
|
*/
|
|
3007
3218
|
contractOfferId: string;
|
|
3008
3219
|
/**
|
|
3009
|
-
*
|
|
3220
|
+
* Policy
|
|
3010
3221
|
* @type {UiPolicy}
|
|
3011
3222
|
* @memberof UiContractOffer
|
|
3012
3223
|
*/
|
|
@@ -3017,7 +3228,9 @@ export declare function UiContractOfferFromJSON(json: any): UiContractOffer;
|
|
|
3017
3228
|
|
|
3018
3229
|
export declare function UiContractOfferFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiContractOffer;
|
|
3019
3230
|
|
|
3020
|
-
export declare function UiContractOfferToJSON(
|
|
3231
|
+
export declare function UiContractOfferToJSON(json: any): UiContractOffer;
|
|
3232
|
+
|
|
3233
|
+
export declare function UiContractOfferToJSONTyped(value?: UiContractOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3021
3234
|
|
|
3022
3235
|
/**
|
|
3023
3236
|
* Contract Definition Criterion as supported by the UI
|
|
@@ -3032,13 +3245,13 @@ export declare interface UiCriterion {
|
|
|
3032
3245
|
*/
|
|
3033
3246
|
operandLeft: string;
|
|
3034
3247
|
/**
|
|
3035
|
-
*
|
|
3248
|
+
* Operator
|
|
3036
3249
|
* @type {UiCriterionOperator}
|
|
3037
3250
|
* @memberof UiCriterion
|
|
3038
3251
|
*/
|
|
3039
3252
|
operator: UiCriterionOperator;
|
|
3040
3253
|
/**
|
|
3041
|
-
*
|
|
3254
|
+
* Right Operand
|
|
3042
3255
|
* @type {UiCriterionLiteral}
|
|
3043
3256
|
* @memberof UiCriterion
|
|
3044
3257
|
*/
|
|
@@ -3079,7 +3292,9 @@ export declare function UiCriterionLiteralFromJSON(json: any): UiCriterionLitera
|
|
|
3079
3292
|
|
|
3080
3293
|
export declare function UiCriterionLiteralFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiCriterionLiteral;
|
|
3081
3294
|
|
|
3082
|
-
export declare function UiCriterionLiteralToJSON(
|
|
3295
|
+
export declare function UiCriterionLiteralToJSON(json: any): UiCriterionLiteral;
|
|
3296
|
+
|
|
3297
|
+
export declare function UiCriterionLiteralToJSONTyped(value?: UiCriterionLiteral | null, ignoreDiscriminator?: boolean): any;
|
|
3083
3298
|
|
|
3084
3299
|
/**
|
|
3085
3300
|
* Value type of an asset selector criterion right expression value
|
|
@@ -3098,6 +3313,8 @@ export declare function UiCriterionLiteralTypeFromJSONTyped(json: any, ignoreDis
|
|
|
3098
3313
|
|
|
3099
3314
|
export declare function UiCriterionLiteralTypeToJSON(value?: UiCriterionLiteralType | null): any;
|
|
3100
3315
|
|
|
3316
|
+
export declare function UiCriterionLiteralTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiCriterionLiteralType;
|
|
3317
|
+
|
|
3101
3318
|
/**
|
|
3102
3319
|
* Operator for constraints
|
|
3103
3320
|
* @export
|
|
@@ -3116,7 +3333,11 @@ export declare function UiCriterionOperatorFromJSONTyped(json: any, ignoreDiscri
|
|
|
3116
3333
|
|
|
3117
3334
|
export declare function UiCriterionOperatorToJSON(value?: UiCriterionOperator | null): any;
|
|
3118
3335
|
|
|
3119
|
-
export declare function
|
|
3336
|
+
export declare function UiCriterionOperatorToJSONTyped(value: any, ignoreDiscriminator: boolean): UiCriterionOperator;
|
|
3337
|
+
|
|
3338
|
+
export declare function UiCriterionToJSON(json: any): UiCriterion;
|
|
3339
|
+
|
|
3340
|
+
export declare function UiCriterionToJSONTyped(value?: UiCriterion | null, ignoreDiscriminator?: boolean): any;
|
|
3120
3341
|
|
|
3121
3342
|
/**
|
|
3122
3343
|
* Catalog Data Offer as required by the UI
|
|
@@ -3137,7 +3358,7 @@ export declare interface UiDataOffer {
|
|
|
3137
3358
|
*/
|
|
3138
3359
|
participantId: string;
|
|
3139
3360
|
/**
|
|
3140
|
-
*
|
|
3361
|
+
* Asset Information
|
|
3141
3362
|
* @type {UiAsset}
|
|
3142
3363
|
* @memberof UiDataOffer
|
|
3143
3364
|
*/
|
|
@@ -3154,7 +3375,9 @@ export declare function UiDataOfferFromJSON(json: any): UiDataOffer;
|
|
|
3154
3375
|
|
|
3155
3376
|
export declare function UiDataOfferFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataOffer;
|
|
3156
3377
|
|
|
3157
|
-
export declare function UiDataOfferToJSON(
|
|
3378
|
+
export declare function UiDataOfferToJSON(json: any): UiDataOffer;
|
|
3379
|
+
|
|
3380
|
+
export declare function UiDataOfferToJSONTyped(value?: UiDataOffer | null, ignoreDiscriminator?: boolean): any;
|
|
3158
3381
|
|
|
3159
3382
|
/**
|
|
3160
3383
|
* Type-safe data source as supported by the sovity product landscape. Contains extension points for using custom data address properties.
|
|
@@ -3163,19 +3386,19 @@ export declare function UiDataOfferToJSON(value?: UiDataOffer | null): any;
|
|
|
3163
3386
|
*/
|
|
3164
3387
|
export declare interface UiDataSource {
|
|
3165
3388
|
/**
|
|
3166
|
-
*
|
|
3389
|
+
* Data Address Type.
|
|
3167
3390
|
* @type {DataSourceType}
|
|
3168
3391
|
* @memberof UiDataSource
|
|
3169
3392
|
*/
|
|
3170
3393
|
type: DataSourceType;
|
|
3171
3394
|
/**
|
|
3172
|
-
*
|
|
3395
|
+
* Only for type HTTP_DATA
|
|
3173
3396
|
* @type {UiDataSourceHttpData}
|
|
3174
3397
|
* @memberof UiDataSource
|
|
3175
3398
|
*/
|
|
3176
3399
|
httpData?: UiDataSourceHttpData;
|
|
3177
3400
|
/**
|
|
3178
|
-
*
|
|
3401
|
+
* Only for type ON_REQUEST
|
|
3179
3402
|
* @type {UiDataSourceOnRequest}
|
|
3180
3403
|
* @memberof UiDataSource
|
|
3181
3404
|
*/
|
|
@@ -3201,7 +3424,7 @@ export declare function UiDataSourceFromJSONTyped(json: any, ignoreDiscriminator
|
|
|
3201
3424
|
*/
|
|
3202
3425
|
export declare interface UiDataSourceHttpData {
|
|
3203
3426
|
/**
|
|
3204
|
-
*
|
|
3427
|
+
* HTTP Request Method
|
|
3205
3428
|
* @type {UiDataSourceHttpDataMethod}
|
|
3206
3429
|
* @memberof UiDataSourceHttpData
|
|
3207
3430
|
*/
|
|
@@ -3225,7 +3448,7 @@ export declare interface UiDataSourceHttpData {
|
|
|
3225
3448
|
*/
|
|
3226
3449
|
authHeaderName?: string;
|
|
3227
3450
|
/**
|
|
3228
|
-
*
|
|
3451
|
+
* Auth Header value.
|
|
3229
3452
|
* @type {SecretValue}
|
|
3230
3453
|
* @memberof UiDataSourceHttpData
|
|
3231
3454
|
*/
|
|
@@ -3289,7 +3512,11 @@ export declare function UiDataSourceHttpDataMethodFromJSONTyped(json: any, ignor
|
|
|
3289
3512
|
|
|
3290
3513
|
export declare function UiDataSourceHttpDataMethodToJSON(value?: UiDataSourceHttpDataMethod | null): any;
|
|
3291
3514
|
|
|
3292
|
-
export declare function
|
|
3515
|
+
export declare function UiDataSourceHttpDataMethodToJSONTyped(value: any, ignoreDiscriminator: boolean): UiDataSourceHttpDataMethod;
|
|
3516
|
+
|
|
3517
|
+
export declare function UiDataSourceHttpDataToJSON(json: any): UiDataSourceHttpData;
|
|
3518
|
+
|
|
3519
|
+
export declare function UiDataSourceHttpDataToJSONTyped(value?: UiDataSourceHttpData | null, ignoreDiscriminator?: boolean): any;
|
|
3293
3520
|
|
|
3294
3521
|
/**
|
|
3295
3522
|
* ON_REQUEST type Data Source.
|
|
@@ -3315,9 +3542,13 @@ export declare function UiDataSourceOnRequestFromJSON(json: any): UiDataSourceOn
|
|
|
3315
3542
|
|
|
3316
3543
|
export declare function UiDataSourceOnRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiDataSourceOnRequest;
|
|
3317
3544
|
|
|
3318
|
-
export declare function UiDataSourceOnRequestToJSON(
|
|
3545
|
+
export declare function UiDataSourceOnRequestToJSON(json: any): UiDataSourceOnRequest;
|
|
3546
|
+
|
|
3547
|
+
export declare function UiDataSourceOnRequestToJSONTyped(value?: UiDataSourceOnRequest | null, ignoreDiscriminator?: boolean): any;
|
|
3319
3548
|
|
|
3320
|
-
export declare function UiDataSourceToJSON(
|
|
3549
|
+
export declare function UiDataSourceToJSON(json: any): UiDataSource;
|
|
3550
|
+
|
|
3551
|
+
export declare function UiDataSourceToJSONTyped(value?: UiDataSource | null, ignoreDiscriminator?: boolean): any;
|
|
3321
3552
|
|
|
3322
3553
|
/**
|
|
3323
3554
|
* Type-Safe OpenAPI generator friendly ODLR policy subset as endorsed by sovity.
|
|
@@ -3332,7 +3563,7 @@ export declare interface UiPolicy {
|
|
|
3332
3563
|
*/
|
|
3333
3564
|
policyJsonLd: string;
|
|
3334
3565
|
/**
|
|
3335
|
-
*
|
|
3566
|
+
* Policy expression
|
|
3336
3567
|
* @type {UiPolicyExpression}
|
|
3337
3568
|
* @memberof UiPolicy
|
|
3338
3569
|
*/
|
|
@@ -3358,13 +3589,13 @@ export declare interface UiPolicyConstraint {
|
|
|
3358
3589
|
*/
|
|
3359
3590
|
left: string;
|
|
3360
3591
|
/**
|
|
3361
|
-
*
|
|
3592
|
+
* Operator, e.g. EQ
|
|
3362
3593
|
* @type {OperatorDto}
|
|
3363
3594
|
* @memberof UiPolicyConstraint
|
|
3364
3595
|
*/
|
|
3365
3596
|
operator: OperatorDto;
|
|
3366
3597
|
/**
|
|
3367
|
-
*
|
|
3598
|
+
* Right side of the expression
|
|
3368
3599
|
* @type {UiPolicyLiteral}
|
|
3369
3600
|
* @memberof UiPolicyConstraint
|
|
3370
3601
|
*/
|
|
@@ -3375,7 +3606,9 @@ export declare function UiPolicyConstraintFromJSON(json: any): UiPolicyConstrain
|
|
|
3375
3606
|
|
|
3376
3607
|
export declare function UiPolicyConstraintFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyConstraint;
|
|
3377
3608
|
|
|
3378
|
-
export declare function UiPolicyConstraintToJSON(
|
|
3609
|
+
export declare function UiPolicyConstraintToJSON(json: any): UiPolicyConstraint;
|
|
3610
|
+
|
|
3611
|
+
export declare function UiPolicyConstraintToJSONTyped(value?: UiPolicyConstraint | null, ignoreDiscriminator?: boolean): any;
|
|
3379
3612
|
|
|
3380
3613
|
/**
|
|
3381
3614
|
* [Deprecated] Conjunction of constraints (simplified UiPolicyExpression)
|
|
@@ -3387,7 +3620,6 @@ export declare interface UiPolicyCreateRequest {
|
|
|
3387
3620
|
* Conjunction of required constraints
|
|
3388
3621
|
* @type {Array<UiPolicyConstraint>}
|
|
3389
3622
|
* @memberof UiPolicyCreateRequest
|
|
3390
|
-
* @deprecated
|
|
3391
3623
|
*/
|
|
3392
3624
|
constraints?: Array<UiPolicyConstraint>;
|
|
3393
3625
|
}
|
|
@@ -3396,7 +3628,9 @@ export declare function UiPolicyCreateRequestFromJSON(json: any): UiPolicyCreate
|
|
|
3396
3628
|
|
|
3397
3629
|
export declare function UiPolicyCreateRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyCreateRequest;
|
|
3398
3630
|
|
|
3399
|
-
export declare function UiPolicyCreateRequestToJSON(
|
|
3631
|
+
export declare function UiPolicyCreateRequestToJSON(json: any): UiPolicyCreateRequest;
|
|
3632
|
+
|
|
3633
|
+
export declare function UiPolicyCreateRequestToJSONTyped(value?: UiPolicyCreateRequest | null, ignoreDiscriminator?: boolean): any;
|
|
3400
3634
|
|
|
3401
3635
|
/**
|
|
3402
3636
|
* ODRL constraint as supported by the sovity product landscape
|
|
@@ -3405,7 +3639,7 @@ export declare function UiPolicyCreateRequestToJSON(value?: UiPolicyCreateReques
|
|
|
3405
3639
|
*/
|
|
3406
3640
|
export declare interface UiPolicyExpression {
|
|
3407
3641
|
/**
|
|
3408
|
-
*
|
|
3642
|
+
* Expression type
|
|
3409
3643
|
* @type {UiPolicyExpressionType}
|
|
3410
3644
|
* @memberof UiPolicyExpression
|
|
3411
3645
|
*/
|
|
@@ -3417,7 +3651,7 @@ export declare interface UiPolicyExpression {
|
|
|
3417
3651
|
*/
|
|
3418
3652
|
expressions?: Array<UiPolicyExpression>;
|
|
3419
3653
|
/**
|
|
3420
|
-
*
|
|
3654
|
+
* Only for type CONSTRAINT. A single constraint.
|
|
3421
3655
|
* @type {UiPolicyConstraint}
|
|
3422
3656
|
* @memberof UiPolicyExpression
|
|
3423
3657
|
*/
|
|
@@ -3428,7 +3662,9 @@ export declare function UiPolicyExpressionFromJSON(json: any): UiPolicyExpressio
|
|
|
3428
3662
|
|
|
3429
3663
|
export declare function UiPolicyExpressionFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyExpression;
|
|
3430
3664
|
|
|
3431
|
-
export declare function UiPolicyExpressionToJSON(
|
|
3665
|
+
export declare function UiPolicyExpressionToJSON(json: any): UiPolicyExpression;
|
|
3666
|
+
|
|
3667
|
+
export declare function UiPolicyExpressionToJSONTyped(value?: UiPolicyExpression | null, ignoreDiscriminator?: boolean): any;
|
|
3432
3668
|
|
|
3433
3669
|
/**
|
|
3434
3670
|
* Ui Policy Expression types:
|
|
@@ -3436,6 +3672,7 @@ export declare function UiPolicyExpressionToJSON(value?: UiPolicyExpression | nu
|
|
|
3436
3672
|
* * `AND` - Conjunction of several expressions. Evaluates to true iff all child expressions are true.
|
|
3437
3673
|
* * `OR` - Disjunction of several expressions. Evaluates to true iff at least one child expression is true.
|
|
3438
3674
|
* * `XONE` - XONE operation. Evaluates to true iff exactly one child expression is true.
|
|
3675
|
+
*
|
|
3439
3676
|
* @export
|
|
3440
3677
|
*/
|
|
3441
3678
|
export declare const UiPolicyExpressionType: {
|
|
@@ -3454,6 +3691,8 @@ export declare function UiPolicyExpressionTypeFromJSONTyped(json: any, ignoreDis
|
|
|
3454
3691
|
|
|
3455
3692
|
export declare function UiPolicyExpressionTypeToJSON(value?: UiPolicyExpressionType | null): any;
|
|
3456
3693
|
|
|
3694
|
+
export declare function UiPolicyExpressionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiPolicyExpressionType;
|
|
3695
|
+
|
|
3457
3696
|
export declare function UiPolicyFromJSON(json: any): UiPolicy;
|
|
3458
3697
|
|
|
3459
3698
|
export declare function UiPolicyFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicy;
|
|
@@ -3465,7 +3704,7 @@ export declare function UiPolicyFromJSONTyped(json: any, ignoreDiscriminator: bo
|
|
|
3465
3704
|
*/
|
|
3466
3705
|
export declare interface UiPolicyLiteral {
|
|
3467
3706
|
/**
|
|
3468
|
-
*
|
|
3707
|
+
* Value Type
|
|
3469
3708
|
* @type {UiPolicyLiteralType}
|
|
3470
3709
|
* @memberof UiPolicyLiteral
|
|
3471
3710
|
*/
|
|
@@ -3488,7 +3727,9 @@ export declare function UiPolicyLiteralFromJSON(json: any): UiPolicyLiteral;
|
|
|
3488
3727
|
|
|
3489
3728
|
export declare function UiPolicyLiteralFromJSONTyped(json: any, ignoreDiscriminator: boolean): UiPolicyLiteral;
|
|
3490
3729
|
|
|
3491
|
-
export declare function UiPolicyLiteralToJSON(
|
|
3730
|
+
export declare function UiPolicyLiteralToJSON(json: any): UiPolicyLiteral;
|
|
3731
|
+
|
|
3732
|
+
export declare function UiPolicyLiteralToJSONTyped(value?: UiPolicyLiteral | null, ignoreDiscriminator?: boolean): any;
|
|
3492
3733
|
|
|
3493
3734
|
/**
|
|
3494
3735
|
* Supported Types of values for the right hand side of an expression
|
|
@@ -3508,7 +3749,11 @@ export declare function UiPolicyLiteralTypeFromJSONTyped(json: any, ignoreDiscri
|
|
|
3508
3749
|
|
|
3509
3750
|
export declare function UiPolicyLiteralTypeToJSON(value?: UiPolicyLiteralType | null): any;
|
|
3510
3751
|
|
|
3511
|
-
export declare function
|
|
3752
|
+
export declare function UiPolicyLiteralTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): UiPolicyLiteralType;
|
|
3753
|
+
|
|
3754
|
+
export declare function UiPolicyToJSON(json: any): UiPolicy;
|
|
3755
|
+
|
|
3756
|
+
export declare function UiPolicyToJSONTyped(value?: UiPolicy | null, ignoreDiscriminator?: boolean): any;
|
|
3512
3757
|
|
|
3513
3758
|
/**
|
|
3514
3759
|
*
|