@sovity.de/edc-client 3.0.2 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/EdcClient.d.ts +2 -1
- package/dist/generated/apis/BrokerServerApi.d.ts +40 -0
- package/dist/generated/apis/EnterpriseEditionApi.d.ts +40 -1
- package/dist/generated/apis/index.d.ts +1 -0
- package/dist/generated/models/CatalogPageQuery.d.ts +49 -0
- package/dist/generated/models/CatalogPageResult.d.ts +42 -0
- package/dist/generated/models/CatalogPageSortingItem.d.ts +36 -0
- package/dist/generated/models/CnfFilter.d.ts +21 -0
- package/dist/generated/models/CnfFilterAttribute.d.ts +33 -0
- package/dist/generated/models/CnfFilterItem.d.ts +26 -0
- package/dist/generated/models/CnfFilterValue.d.ts +21 -0
- package/dist/generated/models/CnfFilterValueAttribute.d.ts +26 -0
- package/dist/generated/models/ConnectorListEntry.d.ts +82 -0
- package/dist/generated/models/ConnectorPageQuery.d.ts +40 -0
- package/dist/generated/models/ConnectorPageResult.d.ts +35 -0
- package/dist/generated/models/ConnectorPageSortingItem.d.ts +34 -0
- package/dist/generated/models/ContractAgreementCard.d.ts +6 -0
- package/dist/generated/models/ContractOfferConnectorInfo.d.ts +52 -0
- package/dist/generated/models/ContractOfferDto.d.ts +35 -0
- package/dist/generated/models/PaginationMetadata.d.ts +38 -0
- package/dist/generated/models/PolicyDto.d.ts +1 -1
- package/dist/generated/models/StoredFile.d.ts +64 -0
- package/dist/generated/models/index.d.ts +16 -0
- package/dist/sovity-edc-client.js +917 -250
- 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
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { AssetDto } from './AssetDto';
|
|
2
|
+
import type { ContractOfferConnectorInfo } from './ContractOfferConnectorInfo';
|
|
3
|
+
import type { PolicyDto } from './PolicyDto';
|
|
4
|
+
/**
|
|
5
|
+
* Contract Offer
|
|
6
|
+
* @export
|
|
7
|
+
* @interface ContractOfferDto
|
|
8
|
+
*/
|
|
9
|
+
export interface ContractOfferDto {
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
* @type {ContractOfferConnectorInfo}
|
|
13
|
+
* @memberof ContractOfferDto
|
|
14
|
+
*/
|
|
15
|
+
connectorInfo: ContractOfferConnectorInfo;
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @type {AssetDto}
|
|
19
|
+
* @memberof ContractOfferDto
|
|
20
|
+
*/
|
|
21
|
+
asset: AssetDto;
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {PolicyDto}
|
|
25
|
+
* @memberof ContractOfferDto
|
|
26
|
+
*/
|
|
27
|
+
policy: PolicyDto;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* Check if a given object implements the ContractOfferDto interface.
|
|
31
|
+
*/
|
|
32
|
+
export declare function instanceOfContractOfferDto(value: object): boolean;
|
|
33
|
+
export declare function ContractOfferDtoFromJSON(json: any): ContractOfferDto;
|
|
34
|
+
export declare function ContractOfferDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContractOfferDto;
|
|
35
|
+
export declare function ContractOfferDtoToJSON(value?: ContractOfferDto | null): any;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pagination Metadata
|
|
3
|
+
* @export
|
|
4
|
+
* @interface PaginationMetadata
|
|
5
|
+
*/
|
|
6
|
+
export interface PaginationMetadata {
|
|
7
|
+
/**
|
|
8
|
+
* Total number of results
|
|
9
|
+
* @type {number}
|
|
10
|
+
* @memberof PaginationMetadata
|
|
11
|
+
*/
|
|
12
|
+
numTotal: number;
|
|
13
|
+
/**
|
|
14
|
+
* Visible number of results
|
|
15
|
+
* @type {number}
|
|
16
|
+
* @memberof PaginationMetadata
|
|
17
|
+
*/
|
|
18
|
+
numVisible: number;
|
|
19
|
+
/**
|
|
20
|
+
* Page number, one based, meaning the first page is page 1.
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof PaginationMetadata
|
|
23
|
+
*/
|
|
24
|
+
pageOneBased: number;
|
|
25
|
+
/**
|
|
26
|
+
* Items per page
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof PaginationMetadata
|
|
29
|
+
*/
|
|
30
|
+
pageSize: number;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Check if a given object implements the PaginationMetadata interface.
|
|
34
|
+
*/
|
|
35
|
+
export declare function instanceOfPaginationMetadata(value: object): boolean;
|
|
36
|
+
export declare function PaginationMetadataFromJSON(json: any): PaginationMetadata;
|
|
37
|
+
export declare function PaginationMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationMetadata;
|
|
38
|
+
export declare function PaginationMetadataToJSON(value?: PaginationMetadata | null): any;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Represents a stored file in the file storage extension
|
|
3
|
+
* @export
|
|
4
|
+
* @interface StoredFile
|
|
5
|
+
*/
|
|
6
|
+
export interface StoredFile {
|
|
7
|
+
/**
|
|
8
|
+
* Identifier of the StoredFile object
|
|
9
|
+
* @type {string}
|
|
10
|
+
* @memberof StoredFile
|
|
11
|
+
*/
|
|
12
|
+
storedFileId: string;
|
|
13
|
+
/**
|
|
14
|
+
* The name of file.
|
|
15
|
+
* @type {string}
|
|
16
|
+
* @memberof StoredFile
|
|
17
|
+
*/
|
|
18
|
+
fileName: string;
|
|
19
|
+
/**
|
|
20
|
+
* The extension of the file.
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof StoredFile
|
|
23
|
+
*/
|
|
24
|
+
fileExtension: string;
|
|
25
|
+
/**
|
|
26
|
+
* The media type of the file.
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof StoredFile
|
|
29
|
+
*/
|
|
30
|
+
mediaType: string;
|
|
31
|
+
/**
|
|
32
|
+
* Size of the file in bytes.
|
|
33
|
+
* @type {string}
|
|
34
|
+
* @memberof StoredFile
|
|
35
|
+
*/
|
|
36
|
+
byteSize: string;
|
|
37
|
+
/**
|
|
38
|
+
* Map containing the asset properties of the stored file.<br> An empty map is set as a response to a file storage request. <br> Only upon a asset creation request the asset properties are set.
|
|
39
|
+
* @type {{ [key: string]: string; }}
|
|
40
|
+
* @memberof StoredFile
|
|
41
|
+
*/
|
|
42
|
+
assetProperties: {
|
|
43
|
+
[key: string]: string;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Creation date of the StoredFile object.
|
|
47
|
+
* @type {Date}
|
|
48
|
+
* @memberof StoredFile
|
|
49
|
+
*/
|
|
50
|
+
creationDate: Date;
|
|
51
|
+
/**
|
|
52
|
+
* Date of the last modification of the StoredFile object.
|
|
53
|
+
* @type {Date}
|
|
54
|
+
* @memberof StoredFile
|
|
55
|
+
*/
|
|
56
|
+
lastModifiedDate: Date;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Check if a given object implements the StoredFile interface.
|
|
60
|
+
*/
|
|
61
|
+
export declare function instanceOfStoredFile(value: object): boolean;
|
|
62
|
+
export declare function StoredFileFromJSON(json: any): StoredFile;
|
|
63
|
+
export declare function StoredFileFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoredFile;
|
|
64
|
+
export declare function StoredFileToJSON(value?: StoredFile | null): any;
|
|
@@ -1,9 +1,25 @@
|
|
|
1
1
|
export * from './AssetDto';
|
|
2
|
+
export * from './CatalogPageQuery';
|
|
3
|
+
export * from './CatalogPageResult';
|
|
4
|
+
export * from './CatalogPageSortingItem';
|
|
5
|
+
export * from './CnfFilter';
|
|
6
|
+
export * from './CnfFilterAttribute';
|
|
7
|
+
export * from './CnfFilterItem';
|
|
8
|
+
export * from './CnfFilterValue';
|
|
9
|
+
export * from './CnfFilterValueAttribute';
|
|
2
10
|
export * from './ConnectorLimits';
|
|
11
|
+
export * from './ConnectorListEntry';
|
|
12
|
+
export * from './ConnectorPageQuery';
|
|
13
|
+
export * from './ConnectorPageResult';
|
|
14
|
+
export * from './ConnectorPageSortingItem';
|
|
3
15
|
export * from './ContractAgreementCard';
|
|
4
16
|
export * from './ContractAgreementPage';
|
|
5
17
|
export * from './ContractAgreementTransferProcess';
|
|
18
|
+
export * from './ContractOfferConnectorInfo';
|
|
19
|
+
export * from './ContractOfferDto';
|
|
6
20
|
export * from './KpiResult';
|
|
21
|
+
export * from './PaginationMetadata';
|
|
7
22
|
export * from './PolicyDto';
|
|
23
|
+
export * from './StoredFile';
|
|
8
24
|
export * from './TransferProcessState';
|
|
9
25
|
export * from './TransferProcessStatesDto';
|