@kommerz/ts-client 1.138.0 → 1.138.1
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.
|
@@ -19,6 +19,7 @@ export declare const DesignTemplateType: {
|
|
|
19
19
|
readonly HospitalityReceipt: "HOSPITALITY_RECEIPT";
|
|
20
20
|
readonly DeliveryNote: "DELIVERY_NOTE";
|
|
21
21
|
readonly DunningLetter: "DUNNING_LETTER";
|
|
22
|
+
readonly Email: "EMAIL";
|
|
22
23
|
};
|
|
23
24
|
export type DesignTemplateType = typeof DesignTemplateType[keyof typeof DesignTemplateType];
|
|
24
25
|
export declare function DesignTemplateTypeFromJSON(json: any): DesignTemplateType;
|
|
@@ -23,7 +23,8 @@ exports.DesignTemplateType = {
|
|
|
23
23
|
Letter: 'LETTER',
|
|
24
24
|
HospitalityReceipt: 'HOSPITALITY_RECEIPT',
|
|
25
25
|
DeliveryNote: 'DELIVERY_NOTE',
|
|
26
|
-
DunningLetter: 'DUNNING_LETTER'
|
|
26
|
+
DunningLetter: 'DUNNING_LETTER',
|
|
27
|
+
Email: 'EMAIL'
|
|
27
28
|
};
|
|
28
29
|
function DesignTemplateTypeFromJSON(json) {
|
|
29
30
|
return DesignTemplateTypeFromJSONTyped(json, false);
|