@kommerz/ts-client 1.136.2 → 1.138.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/dist/apis/AbsenceEntriesApi.d.ts +2 -2
- package/dist/apis/AbsenceEntriesApi.js +2 -2
- package/dist/apis/ContractStatusApi.d.ts +75 -0
- package/dist/apis/ContractStatusApi.js +313 -0
- package/dist/apis/ContractTypesApi.d.ts +75 -0
- package/dist/apis/ContractTypesApi.js +313 -0
- package/dist/apis/ContractsApi.d.ts +75 -0
- package/dist/apis/ContractsApi.js +313 -0
- package/dist/apis/InboxEmailsApi.d.ts +11 -0
- package/dist/apis/InboxEmailsApi.js +46 -0
- package/dist/apis/index.d.ts +3 -0
- package/dist/apis/index.js +3 -0
- package/dist/models/ContractDto.d.ts +96 -0
- package/dist/models/ContractDto.js +72 -0
- package/dist/models/ContractStatusDto.d.ts +54 -0
- package/dist/models/ContractStatusDto.js +59 -0
- package/dist/models/ContractTypeAttributeDto.d.ts +46 -0
- package/dist/models/ContractTypeAttributeDto.js +61 -0
- package/dist/models/ContractTypeDto.d.ts +55 -0
- package/dist/models/ContractTypeDto.js +60 -0
- package/dist/models/EmailDto.d.ts +33 -0
- package/dist/models/EmailDto.js +17 -1
- package/dist/models/EntityType.d.ts +3 -0
- package/dist/models/EntityType.js +3 -0
- package/dist/models/GetAllContractStatus200Response.d.ts +49 -0
- package/dist/models/GetAllContractStatus200Response.js +59 -0
- package/dist/models/GetAllContractTypes200Response.d.ts +49 -0
- package/dist/models/GetAllContractTypes200Response.js +59 -0
- package/dist/models/GetAllContracts200Response.d.ts +49 -0
- package/dist/models/GetAllContracts200Response.js +59 -0
- package/dist/models/IdentifierType.d.ts +1 -0
- package/dist/models/IdentifierType.js +2 -1
- package/dist/models/UsageMonitorDto.d.ts +1 -0
- package/dist/models/UsageMonitorDto.js +2 -1
- package/dist/models/index.d.ts +7 -0
- package/dist/models/index.js +7 -0
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Kommerz API Specification
|
|
6
|
+
* API specification for Kommerz Services. - /ui/ for services consumed by the frontend - /intern/ for internal administration endpoints - /extern/ for services consumed by external services - /stats/ for monitoring endpoints - /actuator/ for health endpoints (e.g. /actuator/health ) All endpoints are postfixed with a version number.
|
|
7
|
+
*
|
|
8
|
+
* Contact: info@kommerz.app
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
15
|
+
exports.GetAllContracts200ResponseToJSON = exports.GetAllContracts200ResponseFromJSONTyped = exports.GetAllContracts200ResponseFromJSON = exports.instanceOfGetAllContracts200Response = void 0;
|
|
16
|
+
var ContractDto_1 = require("./ContractDto");
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the GetAllContracts200Response interface.
|
|
19
|
+
*/
|
|
20
|
+
function instanceOfGetAllContracts200Response(value) {
|
|
21
|
+
var isInstance = true;
|
|
22
|
+
isInstance = isInstance && "pageNumber" in value;
|
|
23
|
+
isInstance = isInstance && "pageSize" in value;
|
|
24
|
+
isInstance = isInstance && "totalElements" in value;
|
|
25
|
+
isInstance = isInstance && "content" in value;
|
|
26
|
+
return isInstance;
|
|
27
|
+
}
|
|
28
|
+
exports.instanceOfGetAllContracts200Response = instanceOfGetAllContracts200Response;
|
|
29
|
+
function GetAllContracts200ResponseFromJSON(json) {
|
|
30
|
+
return GetAllContracts200ResponseFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
exports.GetAllContracts200ResponseFromJSON = GetAllContracts200ResponseFromJSON;
|
|
33
|
+
function GetAllContracts200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
34
|
+
if ((json === undefined) || (json === null)) {
|
|
35
|
+
return json;
|
|
36
|
+
}
|
|
37
|
+
return {
|
|
38
|
+
'pageNumber': json['pageNumber'],
|
|
39
|
+
'pageSize': json['pageSize'],
|
|
40
|
+
'totalElements': json['totalElements'],
|
|
41
|
+
'content': (json['content'].map(ContractDto_1.ContractDtoFromJSON)),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
exports.GetAllContracts200ResponseFromJSONTyped = GetAllContracts200ResponseFromJSONTyped;
|
|
45
|
+
function GetAllContracts200ResponseToJSON(value) {
|
|
46
|
+
if (value === undefined) {
|
|
47
|
+
return undefined;
|
|
48
|
+
}
|
|
49
|
+
if (value === null) {
|
|
50
|
+
return null;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'pageNumber': value.pageNumber,
|
|
54
|
+
'pageSize': value.pageSize,
|
|
55
|
+
'totalElements': value.totalElements,
|
|
56
|
+
'content': (value.content.map(ContractDto_1.ContractDtoToJSON)),
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
exports.GetAllContracts200ResponseToJSON = GetAllContracts200ResponseToJSON;
|
|
@@ -19,6 +19,7 @@ export declare const IdentifierType: {
|
|
|
19
19
|
readonly DeliveryNote: "DELIVERY_NOTE";
|
|
20
20
|
readonly DunningLetter: "DUNNING_LETTER";
|
|
21
21
|
readonly HospitalityReceipt: "HOSPITALITY_RECEIPT";
|
|
22
|
+
readonly Contract: "CONTRACT";
|
|
22
23
|
};
|
|
23
24
|
export type IdentifierType = typeof IdentifierType[keyof typeof IdentifierType];
|
|
24
25
|
export declare function IdentifierTypeFromJSON(json: any): IdentifierType;
|
|
@@ -23,7 +23,8 @@ exports.IdentifierType = {
|
|
|
23
23
|
Offer: 'OFFER',
|
|
24
24
|
DeliveryNote: 'DELIVERY_NOTE',
|
|
25
25
|
DunningLetter: 'DUNNING_LETTER',
|
|
26
|
-
HospitalityReceipt: 'HOSPITALITY_RECEIPT'
|
|
26
|
+
HospitalityReceipt: 'HOSPITALITY_RECEIPT',
|
|
27
|
+
Contract: 'CONTRACT'
|
|
27
28
|
};
|
|
28
29
|
function IdentifierTypeFromJSON(json) {
|
|
29
30
|
return IdentifierTypeFromJSONTyped(json, false);
|
|
@@ -58,6 +58,7 @@ export declare const UsageMonitorDtoMetricEnum: {
|
|
|
58
58
|
readonly VolStorage: "VOL_STORAGE";
|
|
59
59
|
readonly NumDunningLetters: "NUM_DUNNING_LETTERS";
|
|
60
60
|
readonly NumDeliveryNotes: "NUM_DELIVERY_NOTES";
|
|
61
|
+
readonly NumContracts: "NUM_CONTRACTS";
|
|
61
62
|
};
|
|
62
63
|
export type UsageMonitorDtoMetricEnum = typeof UsageMonitorDtoMetricEnum[keyof typeof UsageMonitorDtoMetricEnum];
|
|
63
64
|
/**
|
|
@@ -26,7 +26,8 @@ exports.UsageMonitorDtoMetricEnum = {
|
|
|
26
26
|
NumBankRegistrations: 'NUM_BANK_REGISTRATIONS',
|
|
27
27
|
VolStorage: 'VOL_STORAGE',
|
|
28
28
|
NumDunningLetters: 'NUM_DUNNING_LETTERS',
|
|
29
|
-
NumDeliveryNotes: 'NUM_DELIVERY_NOTES'
|
|
29
|
+
NumDeliveryNotes: 'NUM_DELIVERY_NOTES',
|
|
30
|
+
NumContracts: 'NUM_CONTRACTS'
|
|
30
31
|
};
|
|
31
32
|
/**
|
|
32
33
|
* @export
|
package/dist/models/index.d.ts
CHANGED
|
@@ -46,6 +46,10 @@ export * from './CommentDto';
|
|
|
46
46
|
export * from './ConfigKey';
|
|
47
47
|
export * from './ConfigurationDto';
|
|
48
48
|
export * from './ContactDto';
|
|
49
|
+
export * from './ContractDto';
|
|
50
|
+
export * from './ContractStatusDto';
|
|
51
|
+
export * from './ContractTypeAttributeDto';
|
|
52
|
+
export * from './ContractTypeDto';
|
|
49
53
|
export * from './CreateTenantRequest';
|
|
50
54
|
export * from './CustomerDto';
|
|
51
55
|
export * from './DeliveryNoteDto';
|
|
@@ -88,6 +92,9 @@ export * from './GetAllCalendarEntries200Response';
|
|
|
88
92
|
export * from './GetAllCalendarEntryTypes200Response';
|
|
89
93
|
export * from './GetAllComments200Response';
|
|
90
94
|
export * from './GetAllConfigurations200Response';
|
|
95
|
+
export * from './GetAllContractStatus200Response';
|
|
96
|
+
export * from './GetAllContractTypes200Response';
|
|
97
|
+
export * from './GetAllContracts200Response';
|
|
91
98
|
export * from './GetAllCustomers200Response';
|
|
92
99
|
export * from './GetAllDeliveryNotes200Response';
|
|
93
100
|
export * from './GetAllDesignTemplates200Response';
|
package/dist/models/index.js
CHANGED
|
@@ -64,6 +64,10 @@ __exportStar(require("./CommentDto"), exports);
|
|
|
64
64
|
__exportStar(require("./ConfigKey"), exports);
|
|
65
65
|
__exportStar(require("./ConfigurationDto"), exports);
|
|
66
66
|
__exportStar(require("./ContactDto"), exports);
|
|
67
|
+
__exportStar(require("./ContractDto"), exports);
|
|
68
|
+
__exportStar(require("./ContractStatusDto"), exports);
|
|
69
|
+
__exportStar(require("./ContractTypeAttributeDto"), exports);
|
|
70
|
+
__exportStar(require("./ContractTypeDto"), exports);
|
|
67
71
|
__exportStar(require("./CreateTenantRequest"), exports);
|
|
68
72
|
__exportStar(require("./CustomerDto"), exports);
|
|
69
73
|
__exportStar(require("./DeliveryNoteDto"), exports);
|
|
@@ -106,6 +110,9 @@ __exportStar(require("./GetAllCalendarEntries200Response"), exports);
|
|
|
106
110
|
__exportStar(require("./GetAllCalendarEntryTypes200Response"), exports);
|
|
107
111
|
__exportStar(require("./GetAllComments200Response"), exports);
|
|
108
112
|
__exportStar(require("./GetAllConfigurations200Response"), exports);
|
|
113
|
+
__exportStar(require("./GetAllContractStatus200Response"), exports);
|
|
114
|
+
__exportStar(require("./GetAllContractTypes200Response"), exports);
|
|
115
|
+
__exportStar(require("./GetAllContracts200Response"), exports);
|
|
109
116
|
__exportStar(require("./GetAllCustomers200Response"), exports);
|
|
110
117
|
__exportStar(require("./GetAllDeliveryNotes200Response"), exports);
|
|
111
118
|
__exportStar(require("./GetAllDesignTemplates200Response"), exports);
|