@tstdl/base 0.92.138 → 0.92.140
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/ai/ai.service.js +1 -1
- package/css/css-variables.d.ts +14 -0
- package/css/css-variables.js +55 -0
- package/css/index.d.ts +1 -0
- package/css/index.js +1 -0
- package/document-management/api/document-management.api.d.ts +59 -0
- package/document-management/api/document-management.api.js +28 -0
- package/document-management/server/api/document-management.api.d.ts +4 -1
- package/document-management/server/api/document-management.api.js +61 -28
- package/document-management/server/configure.d.ts +2 -0
- package/document-management/server/configure.js +9 -0
- package/document-management/server/drizzle/{0000_magical_madame_hydra.sql → 0000_moaning_luckman.sql} +4 -15
- package/document-management/server/drizzle/meta/0000_snapshot.json +25 -96
- package/document-management/server/drizzle/meta/_journal.json +2 -2
- package/document-management/server/index.d.ts +1 -0
- package/document-management/server/index.js +1 -0
- package/document-management/server/module.d.ts +3 -2
- package/document-management/server/module.js +2 -6
- package/document-management/server/services/document-category-type.service.d.ts +0 -1
- package/document-management/server/services/document-category-type.service.js +7 -7
- package/document-management/server/services/document-file.service.js +2 -2
- package/document-management/server/services/document-management-ai.service.js +5 -1
- package/document-management/server/services/document-management-ancillary.service.d.ts +2 -83
- package/document-management/server/services/document-management-ancillary.service.js +1 -23
- package/document-management/server/services/document-management-authorization.service.d.ts +85 -0
- package/document-management/server/services/document-management-authorization.service.js +28 -0
- package/document-management/server/services/document-management.service.d.ts +10 -2
- package/document-management/server/services/document-management.service.js +69 -6
- package/document-management/server/services/document-property.service.d.ts +7 -3
- package/document-management/server/services/document-property.service.js +8 -4
- package/document-management/server/services/document-workflow.service.js +2 -2
- package/document-management/server/services/enum-type-key.d.ts +1 -0
- package/document-management/server/services/enum-type-key.js +1 -0
- package/document-management/server/services/index.d.ts +1 -0
- package/document-management/server/services/index.js +1 -0
- package/document-management/service-models/enriched/enriched-document-category.view.d.ts +1 -0
- package/document-management/service-models/enriched/enriched-document-category.view.js +8 -0
- package/document-management/service-models/enriched/enriched-document.view.d.ts +3 -1
- package/document-management/service-models/enriched/enriched-document.view.js +2 -0
- package/examples/api/streaming.js +8 -8
- package/examples/document-management/categories-and-types.d.ts +357 -312
- package/examples/document-management/categories-and-types.js +690 -350
- package/examples/document-management/main.d.ts +18 -16
- package/examples/document-management/main.js +29 -20
- package/file/mime-type.d.ts +2 -1
- package/file/mime-type.js +10 -18
- package/file/mime-types.js +1 -2
- package/http/server/http-server-response.js +2 -2
- package/package.json +5 -3
- package/schema/converters/openapi-converter.js +15 -12
- package/sse/server-sent-events-source.js +2 -2
- package/utils/object/object.js +1 -1
|
@@ -1,324 +1,369 @@
|
|
|
1
|
+
import { type EnumType } from '../../enumeration/index.js';
|
|
2
|
+
/**
|
|
3
|
+
* TstdlDocumentCategory defines the categories for documents within property management and housing cooperatives.
|
|
4
|
+
* It includes top-level categories and their respective subcategories.
|
|
5
|
+
* Each category is represented as a key in PascalCase (English) and a value in kebab-case (English).
|
|
6
|
+
*/
|
|
1
7
|
export declare const TstdlDocumentCategory: {
|
|
2
|
-
readonly
|
|
3
|
-
readonly
|
|
4
|
-
readonly
|
|
5
|
-
readonly
|
|
6
|
-
readonly
|
|
7
|
-
readonly
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
readonly
|
|
11
|
-
readonly
|
|
12
|
-
readonly
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
17
|
-
readonly
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
28
|
-
readonly
|
|
29
|
-
readonly
|
|
30
|
-
readonly
|
|
31
|
-
readonly
|
|
32
|
-
readonly
|
|
8
|
+
readonly Administration: "administration";
|
|
9
|
+
readonly Finance: "finance";
|
|
10
|
+
readonly Maintenance: "maintenance";
|
|
11
|
+
readonly TenantAndMemberManagement: "tenant-and-member-management";
|
|
12
|
+
readonly LegalMatters: "legal-matters";
|
|
13
|
+
readonly Meetings: "meetings";
|
|
14
|
+
readonly PropertyDevelopment: "property-development";
|
|
15
|
+
readonly ServiceProviders: "service-providers";
|
|
16
|
+
readonly Contracts: "contracts";
|
|
17
|
+
readonly GeneralCorrespondence: "general-correspondence";
|
|
18
|
+
readonly Invoices: "invoices";
|
|
19
|
+
readonly AnnualStatements: "annual-statements";
|
|
20
|
+
readonly Budgeting: "budgeting";
|
|
21
|
+
readonly BankStatements: "bank-statements";
|
|
22
|
+
readonly RepairAndMaintenance: "repair-and-maintenance";
|
|
23
|
+
readonly Inspections: "inspections";
|
|
24
|
+
readonly DamageManagement: "damage-management";
|
|
25
|
+
readonly TenantFiles: "tenant-files";
|
|
26
|
+
readonly MemberFiles: "member-files";
|
|
27
|
+
readonly CorrespondenceTenantMember: "correspondence-tenant-member";
|
|
28
|
+
readonly Applications: "applications";
|
|
29
|
+
readonly HandoverProtocols: "handover-protocols";
|
|
30
|
+
readonly Litigation: "litigation";
|
|
31
|
+
readonly LegalConsultation: "legal-consultation";
|
|
32
|
+
readonly ResolutionsAndBylaws: "resolutions-and-bylaws";
|
|
33
|
+
readonly MeetingDocumentation: "meeting-documentation";
|
|
34
|
+
readonly Planning: "planning";
|
|
35
|
+
readonly ConstructionProjects: "construction-projects";
|
|
36
|
+
readonly Permits: "permits";
|
|
37
|
+
readonly ProviderContracts: "provider-contracts";
|
|
38
|
+
readonly ProviderCorrespondence: "provider-correspondence";
|
|
39
|
+
readonly RentalAgreements: "rental-agreements";
|
|
40
|
+
readonly PurchaseAgreements: "purchase-agreements";
|
|
41
|
+
readonly WorkContracts: "work-contracts";
|
|
42
|
+
readonly FinancialStatements: "financial-statements";
|
|
43
|
+
readonly OperatingAndHeatingCosts: "operating-and-heating-costs";
|
|
44
|
+
readonly MaintenancePlans: "maintenance-plans";
|
|
33
45
|
};
|
|
46
|
+
/**
|
|
47
|
+
* Top-level categories and their parent-child relationships.
|
|
48
|
+
* Top-level categories are mapped to null.
|
|
49
|
+
* Subcategories are mapped to their respective parent category.
|
|
50
|
+
*/
|
|
34
51
|
export declare const TstdlCategoryParents: {
|
|
35
|
-
readonly
|
|
36
|
-
readonly
|
|
37
|
-
readonly
|
|
38
|
-
readonly "
|
|
39
|
-
readonly
|
|
40
|
-
readonly
|
|
41
|
-
readonly "
|
|
42
|
-
readonly
|
|
43
|
-
readonly
|
|
44
|
-
readonly "
|
|
45
|
-
readonly
|
|
46
|
-
readonly "
|
|
47
|
-
readonly
|
|
48
|
-
readonly
|
|
49
|
-
readonly "
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
53
|
-
readonly "
|
|
54
|
-
readonly "
|
|
55
|
-
readonly
|
|
56
|
-
readonly "
|
|
57
|
-
readonly
|
|
58
|
-
readonly "
|
|
59
|
-
readonly "
|
|
60
|
-
readonly "
|
|
61
|
-
readonly
|
|
62
|
-
readonly "
|
|
63
|
-
readonly
|
|
64
|
-
readonly
|
|
65
|
-
readonly
|
|
52
|
+
readonly administration: null;
|
|
53
|
+
readonly finance: null;
|
|
54
|
+
readonly maintenance: null;
|
|
55
|
+
readonly "tenant-and-member-management": null;
|
|
56
|
+
readonly "legal-matters": null;
|
|
57
|
+
readonly meetings: null;
|
|
58
|
+
readonly "property-development": null;
|
|
59
|
+
readonly "service-providers": null;
|
|
60
|
+
readonly contracts: "administration";
|
|
61
|
+
readonly "general-correspondence": "administration";
|
|
62
|
+
readonly invoices: "finance";
|
|
63
|
+
readonly "annual-statements": "finance";
|
|
64
|
+
readonly budgeting: "finance";
|
|
65
|
+
readonly "bank-statements": "finance";
|
|
66
|
+
readonly "repair-and-maintenance": "maintenance";
|
|
67
|
+
readonly inspections: "maintenance";
|
|
68
|
+
readonly "damage-management": "maintenance";
|
|
69
|
+
readonly "tenant-files": "tenant-and-member-management";
|
|
70
|
+
readonly "member-files": "tenant-and-member-management";
|
|
71
|
+
readonly "correspondence-tenant-member": "tenant-and-member-management";
|
|
72
|
+
readonly applications: "tenant-and-member-management";
|
|
73
|
+
readonly "handover-protocols": "tenant-and-member-management";
|
|
74
|
+
readonly litigation: "legal-matters";
|
|
75
|
+
readonly "legal-consultation": "legal-matters";
|
|
76
|
+
readonly "resolutions-and-bylaws": "legal-matters";
|
|
77
|
+
readonly "meeting-documentation": "meetings";
|
|
78
|
+
readonly planning: "property-development";
|
|
79
|
+
readonly "construction-projects": "property-development";
|
|
80
|
+
readonly permits: "property-development";
|
|
81
|
+
readonly "provider-contracts": "service-providers";
|
|
82
|
+
readonly "provider-correspondence": "service-providers";
|
|
83
|
+
readonly "rental-agreements": "contracts";
|
|
84
|
+
readonly "purchase-agreements": "contracts";
|
|
85
|
+
readonly "work-contracts": "contracts";
|
|
86
|
+
readonly "financial-statements": "annual-statements";
|
|
87
|
+
readonly "operating-and-heating-costs": "annual-statements";
|
|
88
|
+
readonly "maintenance-plans": "repair-and-maintenance";
|
|
66
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* Labels for each document category.
|
|
92
|
+
* This object maps each category to a human-readable label in German.
|
|
93
|
+
*/
|
|
67
94
|
export declare const TstdlDocumentCategoryLabels: {
|
|
68
|
-
readonly
|
|
69
|
-
readonly
|
|
70
|
-
readonly
|
|
71
|
-
readonly "
|
|
72
|
-
readonly
|
|
73
|
-
readonly
|
|
74
|
-
readonly "
|
|
75
|
-
readonly
|
|
76
|
-
readonly
|
|
77
|
-
readonly "
|
|
78
|
-
readonly
|
|
79
|
-
readonly "
|
|
80
|
-
readonly
|
|
81
|
-
readonly
|
|
82
|
-
readonly "
|
|
83
|
-
readonly
|
|
84
|
-
readonly
|
|
85
|
-
readonly
|
|
86
|
-
readonly "
|
|
87
|
-
readonly "
|
|
88
|
-
readonly
|
|
89
|
-
readonly "
|
|
90
|
-
readonly
|
|
91
|
-
readonly "
|
|
92
|
-
readonly "
|
|
93
|
-
readonly "
|
|
94
|
-
readonly
|
|
95
|
-
readonly "
|
|
96
|
-
readonly
|
|
97
|
-
readonly
|
|
98
|
-
readonly
|
|
95
|
+
readonly administration: "Allgemeine Verwaltung";
|
|
96
|
+
readonly finance: "Finanzen";
|
|
97
|
+
readonly maintenance: "Instandhaltung";
|
|
98
|
+
readonly "tenant-and-member-management": "Mieter- und Mitgliederverwaltung";
|
|
99
|
+
readonly "legal-matters": "Rechtliches";
|
|
100
|
+
readonly meetings: "Sitzungen";
|
|
101
|
+
readonly "property-development": "Immobilienentwicklung";
|
|
102
|
+
readonly "service-providers": "Dienstleister";
|
|
103
|
+
readonly contracts: "Verträge";
|
|
104
|
+
readonly "general-correspondence": "Allgemeine Korrespondenz";
|
|
105
|
+
readonly invoices: "Rechnungen";
|
|
106
|
+
readonly "annual-statements": "Jahresabrechnungen";
|
|
107
|
+
readonly budgeting: "Budgetierung";
|
|
108
|
+
readonly "bank-statements": "Kontoauszüge";
|
|
109
|
+
readonly "repair-and-maintenance": "Reparatur und Instandhaltung";
|
|
110
|
+
readonly inspections: "Inspektionen";
|
|
111
|
+
readonly "damage-management": "Schadensmanagement";
|
|
112
|
+
readonly "tenant-files": "Mieterakten";
|
|
113
|
+
readonly "member-files": "Mitgliederakten";
|
|
114
|
+
readonly "correspondence-tenant-member": "Mieter-/Mitglieder-Korrespondenz";
|
|
115
|
+
readonly applications: "Bewerbungen";
|
|
116
|
+
readonly "handover-protocols": "Übergabeprotokolle";
|
|
117
|
+
readonly litigation: "Rechtsstreitigkeiten";
|
|
118
|
+
readonly "legal-consultation": "Rechtsberatung";
|
|
119
|
+
readonly "resolutions-and-bylaws": "Beschlüsse und Satzungen";
|
|
120
|
+
readonly "meeting-documentation": "Sitzungsdokumentation";
|
|
121
|
+
readonly planning: "Planung";
|
|
122
|
+
readonly "construction-projects": "Bauprojekte";
|
|
123
|
+
readonly permits: "Genehmigungen";
|
|
124
|
+
readonly "provider-contracts": "Dienstleisterverträge";
|
|
125
|
+
readonly "provider-correspondence": "Dienstleister-Korrespondenz";
|
|
126
|
+
readonly "rental-agreements": "Mietverträge";
|
|
127
|
+
readonly "purchase-agreements": "Kaufverträge";
|
|
128
|
+
readonly "work-contracts": "Werkverträge";
|
|
129
|
+
readonly "financial-statements": "Finanzabschlüsse";
|
|
130
|
+
readonly "operating-and-heating-costs": "Betriebs- und Heizkostenabrechnungen";
|
|
131
|
+
readonly "maintenance-plans": "Wartungspläne";
|
|
99
132
|
};
|
|
133
|
+
/**
|
|
134
|
+
* TstdlDocumentType defines the types for documents within property management and housing cooperatives.
|
|
135
|
+
* Each type is associated with a specific category.
|
|
136
|
+
* Each type is represented as a key in PascalCase (English) and a value in kebab-case (English).
|
|
137
|
+
*/
|
|
100
138
|
export declare const TstdlDocumentType: {
|
|
101
|
-
readonly
|
|
102
|
-
readonly
|
|
103
|
-
readonly
|
|
104
|
-
readonly
|
|
105
|
-
readonly
|
|
106
|
-
readonly
|
|
107
|
-
readonly
|
|
108
|
-
readonly
|
|
109
|
-
readonly
|
|
110
|
-
readonly
|
|
111
|
-
readonly
|
|
112
|
-
readonly
|
|
113
|
-
readonly
|
|
114
|
-
readonly
|
|
115
|
-
readonly
|
|
116
|
-
readonly
|
|
117
|
-
readonly
|
|
118
|
-
readonly
|
|
119
|
-
readonly
|
|
120
|
-
readonly
|
|
121
|
-
readonly
|
|
122
|
-
readonly
|
|
123
|
-
readonly
|
|
124
|
-
readonly
|
|
125
|
-
readonly
|
|
126
|
-
readonly
|
|
127
|
-
readonly
|
|
128
|
-
readonly
|
|
129
|
-
readonly
|
|
130
|
-
readonly
|
|
131
|
-
readonly
|
|
132
|
-
readonly
|
|
133
|
-
readonly
|
|
134
|
-
readonly
|
|
135
|
-
readonly
|
|
136
|
-
readonly
|
|
137
|
-
readonly
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
140
|
-
readonly
|
|
141
|
-
readonly
|
|
142
|
-
readonly
|
|
143
|
-
readonly
|
|
144
|
-
readonly
|
|
145
|
-
readonly
|
|
146
|
-
readonly Lebenslauf: "lebenslauf";
|
|
147
|
-
readonly AnschreibenBewerbung: "anschreiben-bewerbung";
|
|
148
|
-
readonly ReferenzBewerbung: "referenz-bewerbung";
|
|
149
|
-
readonly GrundrissPlan: "grundriss-plan";
|
|
150
|
-
readonly Nebenkostenabrechnung: "nebenkostenabrechnung";
|
|
151
|
-
readonly Uebergabeprotokoll: "uebergabeprotokoll";
|
|
152
|
-
readonly AnleitungGarantieGeraet: "anleitung-garantie-geraet";
|
|
153
|
-
readonly AngebotSanitaer: "angebot-sanitaer";
|
|
154
|
-
readonly RechnungSanitaer: "rechnung-sanitaer";
|
|
155
|
-
readonly AngebotElektro: "angebot-elektro";
|
|
156
|
-
readonly RechnungElektro: "rechnung-elektro";
|
|
157
|
-
readonly AngebotMaler: "angebot-maler";
|
|
158
|
-
readonly RechnungMaler: "rechnung-maler";
|
|
159
|
-
readonly Fahrzeugschein: "fahrzeugschein";
|
|
160
|
-
readonly Fahrzeugbrief: "fahrzeugbrief";
|
|
161
|
-
readonly VersicherungsnachweisFahrzeug: "versicherungsnachweis-fahrzeug";
|
|
162
|
-
readonly TUEVBericht: "tuev-bericht";
|
|
163
|
-
readonly WerkstattrechnungFahrzeug: "werkstattrechnung-fahrzeug";
|
|
164
|
-
readonly MitgliedschaftVerein: "mitgliedschaft-verein";
|
|
165
|
-
readonly Reisebuchungsbestaetigung: "reisebuchungsbestaetigung";
|
|
166
|
-
readonly ReiseTicketArchiviert: "reise-ticket-archiviert";
|
|
167
|
-
readonly AnleitungSportGeraet: "anleitung-sport-geraet";
|
|
168
|
-
readonly Softwarelizenz: "softwarelizenz";
|
|
169
|
-
readonly Domainregistrierung: "domainregistrierung";
|
|
170
|
-
readonly ZugangsdatenNotiz: "zugangsdaten-notiz";
|
|
171
|
-
readonly WichtigeNotiz: "wichtige-notiz";
|
|
172
|
-
readonly FotoDokumentation: "foto-dokumentation";
|
|
173
|
-
readonly ScanWichtigeKleinigkeit: "scan-wichtige-kleinigkeit";
|
|
139
|
+
readonly ResidentialRentalAgreement: "residential-rental-agreement";
|
|
140
|
+
readonly CommercialRentalAgreement: "commercial-rental-agreement";
|
|
141
|
+
readonly ShortTermRentalAgreement: "short-term-rental-agreement";
|
|
142
|
+
readonly PurchaseAgreementProperty: "purchase-agreement-property";
|
|
143
|
+
readonly SaleAgreementProperty: "sale-agreement-property";
|
|
144
|
+
readonly WorkOrderContract: "work-order-contract";
|
|
145
|
+
readonly FrameworkAgreement: "framework-agreement";
|
|
146
|
+
readonly TerminationNotice: "termination-notice";
|
|
147
|
+
readonly ComplaintLetter: "complaint-letter";
|
|
148
|
+
readonly IncomingInvoice: "incoming-invoice";
|
|
149
|
+
readonly OutgoingInvoice: "outgoing-invoice";
|
|
150
|
+
readonly PaymentReminder: "payment-reminder";
|
|
151
|
+
readonly AnnualFinancialStatement: "annual-financial-statement";
|
|
152
|
+
readonly OperatingCostStatement: "operating-cost-statement";
|
|
153
|
+
readonly HeatingCostStatement: "heating-cost-statement";
|
|
154
|
+
readonly BankStatement: "bank-statement";
|
|
155
|
+
readonly BudgetPlan: "budget-plan";
|
|
156
|
+
readonly RepairOrderForm: "repair-order-form";
|
|
157
|
+
readonly MaintenanceReport: "maintenance-report";
|
|
158
|
+
readonly InspectionReport: "inspection-report";
|
|
159
|
+
readonly DamageReport: "damage-report";
|
|
160
|
+
readonly MaintenancePlanDocument: "maintenance-plan-document";
|
|
161
|
+
readonly TenantRegistrationForm: "tenant-registration-form";
|
|
162
|
+
readonly MemberApplication: "member-application";
|
|
163
|
+
readonly HandoverProtocolApartment: "handover-protocol-apartment";
|
|
164
|
+
readonly RentAdjustmentNotice: "rent-adjustment-notice";
|
|
165
|
+
readonly TenantCorrespondenceLetter: "tenant-correspondence-letter";
|
|
166
|
+
readonly MemberCorrespondenceLetter: "member-correspondence-letter";
|
|
167
|
+
readonly CourtOrder: "court-order";
|
|
168
|
+
readonly LawsuitDocument: "lawsuit-document";
|
|
169
|
+
readonly LegalOpinionReport: "legal-opinion-report";
|
|
170
|
+
readonly OwnerAssociationResolution: "owner-association-resolution";
|
|
171
|
+
readonly CooperativeBylaws: "cooperative-bylaws";
|
|
172
|
+
readonly MeetingMinutes: "meeting-minutes";
|
|
173
|
+
readonly MeetingInvitation: "meeting-invitation";
|
|
174
|
+
readonly MeetingAgenda: "meeting-agenda";
|
|
175
|
+
readonly FeasibilityStudy: "feasibility-study";
|
|
176
|
+
readonly ArchitecturalPlan: "architectural-plan";
|
|
177
|
+
readonly BuildingPermitDocument: "building-permit-document";
|
|
178
|
+
readonly DemolitionPermit: "demolition-permit";
|
|
179
|
+
readonly ConstructionSchedule: "construction-schedule";
|
|
180
|
+
readonly ConstructionDocumentation: "construction-documentation";
|
|
181
|
+
readonly ServiceContract: "service-contract";
|
|
182
|
+
readonly ServiceLevelAgreement: "service-level-agreement";
|
|
183
|
+
readonly ProviderCommunication: "provider-communication";
|
|
174
184
|
};
|
|
185
|
+
/**
|
|
186
|
+
* Labels for each document type.
|
|
187
|
+
* This object maps each type to a human-readable label in German.
|
|
188
|
+
*/
|
|
175
189
|
export declare const TstdlDocumentTypeLabels: {
|
|
176
|
-
readonly
|
|
177
|
-
readonly
|
|
178
|
-
readonly
|
|
179
|
-
readonly
|
|
180
|
-
readonly
|
|
181
|
-
readonly
|
|
182
|
-
readonly "
|
|
183
|
-
readonly "
|
|
184
|
-
readonly "
|
|
185
|
-
readonly "
|
|
186
|
-
readonly "
|
|
187
|
-
readonly
|
|
188
|
-
readonly
|
|
189
|
-
readonly
|
|
190
|
-
readonly "
|
|
191
|
-
readonly "
|
|
192
|
-
readonly "
|
|
193
|
-
readonly
|
|
194
|
-
readonly
|
|
195
|
-
readonly "
|
|
196
|
-
readonly
|
|
197
|
-
readonly "
|
|
198
|
-
readonly "
|
|
199
|
-
readonly
|
|
200
|
-
readonly
|
|
201
|
-
readonly
|
|
202
|
-
readonly "
|
|
203
|
-
readonly
|
|
204
|
-
readonly "
|
|
205
|
-
readonly "
|
|
206
|
-
readonly
|
|
207
|
-
readonly
|
|
208
|
-
readonly "
|
|
209
|
-
readonly
|
|
210
|
-
readonly "
|
|
211
|
-
readonly "
|
|
212
|
-
readonly
|
|
213
|
-
readonly "
|
|
214
|
-
readonly "
|
|
215
|
-
readonly "
|
|
216
|
-
readonly "
|
|
217
|
-
readonly "
|
|
218
|
-
readonly "
|
|
219
|
-
readonly "
|
|
220
|
-
readonly
|
|
221
|
-
readonly lebenslauf: "Lebenslauf";
|
|
222
|
-
readonly "anschreiben-bewerbung": "Anschreiben (Bewerbung)";
|
|
223
|
-
readonly "referenz-bewerbung": "Referenz (Bewerbung)";
|
|
224
|
-
readonly "grundriss-plan": "Grundriss & Plan";
|
|
225
|
-
readonly nebenkostenabrechnung: "Nebenkostenabrechnung";
|
|
226
|
-
readonly uebergabeprotokoll: "Übergabeprotokoll";
|
|
227
|
-
readonly "anleitung-garantie-geraet": "Anleitung & Garantie (Gerät)";
|
|
228
|
-
readonly "angebot-sanitaer": "Angebot Sanitär";
|
|
229
|
-
readonly "rechnung-sanitaer": "Rechnung Sanitär";
|
|
230
|
-
readonly "angebot-elektro": "Angebot Elektro";
|
|
231
|
-
readonly "rechnung-elektro": "Rechnung Elektro";
|
|
232
|
-
readonly "angebot-maler": "Angebot Maler";
|
|
233
|
-
readonly "rechnung-maler": "Rechnung Maler";
|
|
234
|
-
readonly fahrzeugschein: "Fahrzeugschein";
|
|
235
|
-
readonly fahrzeugbrief: "Fahrzeugbrief";
|
|
236
|
-
readonly "versicherungsnachweis-fahrzeug": "Versicherungsnachweis (Fahrzeug)";
|
|
237
|
-
readonly "tuev-bericht": "TÜV-Bericht";
|
|
238
|
-
readonly "werkstattrechnung-fahrzeug": "Werkstattrechnung (Fahrzeug)";
|
|
239
|
-
readonly "mitgliedschaft-verein": "Mitgliedschaft (Verein/Fitness)";
|
|
240
|
-
readonly reisebuchungsbestaetigung: "Reisebuchungsbestätigung";
|
|
241
|
-
readonly "reise-ticket-archiviert": "Reise-Ticket (archiviert)";
|
|
242
|
-
readonly "anleitung-sport-geraet": "Anleitung (Sportgeräte, Instrumente etc.)";
|
|
243
|
-
readonly softwarelizenz: "Softwarelizenz";
|
|
244
|
-
readonly domainregistrierung: "Domainregistrierung";
|
|
245
|
-
readonly "zugangsdaten-notiz": "Zugangsdaten (Notiz)";
|
|
246
|
-
readonly "wichtige-notiz": "Wichtige Notiz";
|
|
247
|
-
readonly "foto-dokumentation": "Foto (Dokumentation)";
|
|
248
|
-
readonly "scan-wichtige-kleinigkeit": "Scan von wichtiger Kleinigkeit";
|
|
190
|
+
readonly "residential-rental-agreement": "Wohnraummietvertrag";
|
|
191
|
+
readonly "commercial-rental-agreement": "Gewerbemietvertrag";
|
|
192
|
+
readonly "short-term-rental-agreement": "Kurzzeitmietvertrag";
|
|
193
|
+
readonly "purchase-agreement-property": "Kaufvertrag Immobilie";
|
|
194
|
+
readonly "sale-agreement-property": "Verkaufsvertrag Immobilie";
|
|
195
|
+
readonly "work-order-contract": "Werkauftragsvertrag";
|
|
196
|
+
readonly "framework-agreement": "Rahmenvertrag";
|
|
197
|
+
readonly "termination-notice": "Kündigungsschreiben";
|
|
198
|
+
readonly "complaint-letter": "Beschwerdeschreiben";
|
|
199
|
+
readonly "incoming-invoice": "Eingangsrechnung";
|
|
200
|
+
readonly "outgoing-invoice": "Ausgangsrechnung";
|
|
201
|
+
readonly "payment-reminder": "Zahlungserinnerung";
|
|
202
|
+
readonly "annual-financial-statement": "Jahresfinanzabschluss";
|
|
203
|
+
readonly "operating-cost-statement": "Betriebskostenabrechnung";
|
|
204
|
+
readonly "heating-cost-statement": "Heizkostenabrechnung";
|
|
205
|
+
readonly "bank-statement": "Kontoauszug";
|
|
206
|
+
readonly "budget-plan": "Budgetplan";
|
|
207
|
+
readonly "repair-order-form": "Reparaturauftragsformular";
|
|
208
|
+
readonly "maintenance-report": "Instandhaltungsbericht";
|
|
209
|
+
readonly "inspection-report": "Inspektionsbericht";
|
|
210
|
+
readonly "damage-report": "Schadensmeldung";
|
|
211
|
+
readonly "maintenance-plan-document": "Wartungsplandokument";
|
|
212
|
+
readonly "tenant-registration-form": "Mieteranmeldeformular";
|
|
213
|
+
readonly "member-application": "Mitgliederantrag";
|
|
214
|
+
readonly "handover-protocol-apartment": "Wohnungsübergabeprotokoll";
|
|
215
|
+
readonly "rent-adjustment-notice": "Mietanpassungsschreiben";
|
|
216
|
+
readonly "tenant-correspondence-letter": "Mieter-Korrespondenzschreiben";
|
|
217
|
+
readonly "member-correspondence-letter": "Mitglieder-Korrespondenzschreiben";
|
|
218
|
+
readonly "court-order": "Gerichtsbeschluss";
|
|
219
|
+
readonly "lawsuit-document": "Gerichtsdokument";
|
|
220
|
+
readonly "legal-opinion-report": "Rechtsgutachten";
|
|
221
|
+
readonly "owner-association-resolution": "Wohnungseigentümergemeinschafts-Beschluss";
|
|
222
|
+
readonly "cooperative-bylaws": "Genossenschaftssatzung";
|
|
223
|
+
readonly "meeting-minutes": "Sitzungsprotokoll";
|
|
224
|
+
readonly "meeting-invitation": "Sitzungseinladung";
|
|
225
|
+
readonly "meeting-agenda": "Sitzungstagesordnung";
|
|
226
|
+
readonly "feasibility-study": "Machbarkeitsstudie";
|
|
227
|
+
readonly "architectural-plan": "Architekturplan";
|
|
228
|
+
readonly "building-permit-document": "Baugenehmigungsdokument";
|
|
229
|
+
readonly "demolition-permit": "Abrissgenehmigung";
|
|
230
|
+
readonly "construction-schedule": "Bauzeitenplan";
|
|
231
|
+
readonly "construction-documentation": "Baudokumentation";
|
|
232
|
+
readonly "service-contract": "Dienstleistungsvertrag";
|
|
233
|
+
readonly "service-level-agreement": "Service-Level-Agreement";
|
|
234
|
+
readonly "provider-communication": "Dienstleister-Kommunikation";
|
|
249
235
|
};
|
|
236
|
+
/**
|
|
237
|
+
* TstdlDocumentTypeCategories maps each document type to its most granular category.
|
|
238
|
+
*/
|
|
250
239
|
export declare const TstdlDocumentTypeCategories: {
|
|
251
|
-
readonly
|
|
252
|
-
readonly
|
|
253
|
-
readonly
|
|
254
|
-
readonly
|
|
255
|
-
readonly
|
|
256
|
-
readonly
|
|
257
|
-
readonly "
|
|
258
|
-
readonly "
|
|
259
|
-
readonly "
|
|
260
|
-
readonly "
|
|
261
|
-
readonly "
|
|
262
|
-
readonly
|
|
263
|
-
readonly
|
|
264
|
-
readonly
|
|
265
|
-
readonly "
|
|
266
|
-
readonly "
|
|
267
|
-
readonly "
|
|
268
|
-
readonly
|
|
269
|
-
readonly
|
|
270
|
-
readonly "
|
|
271
|
-
readonly
|
|
272
|
-
readonly "
|
|
273
|
-
readonly "
|
|
274
|
-
readonly
|
|
275
|
-
readonly
|
|
276
|
-
readonly
|
|
277
|
-
readonly "
|
|
278
|
-
readonly
|
|
279
|
-
readonly "
|
|
280
|
-
readonly "
|
|
281
|
-
readonly
|
|
282
|
-
readonly
|
|
283
|
-
readonly "
|
|
284
|
-
readonly
|
|
285
|
-
readonly "
|
|
286
|
-
readonly "
|
|
287
|
-
readonly
|
|
288
|
-
readonly "
|
|
289
|
-
readonly "
|
|
290
|
-
readonly "
|
|
291
|
-
readonly "
|
|
292
|
-
readonly "
|
|
293
|
-
readonly "
|
|
294
|
-
readonly "
|
|
295
|
-
readonly
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
readonly
|
|
299
|
-
readonly
|
|
300
|
-
readonly
|
|
301
|
-
readonly
|
|
302
|
-
readonly
|
|
303
|
-
readonly
|
|
304
|
-
readonly
|
|
305
|
-
readonly
|
|
306
|
-
readonly
|
|
307
|
-
readonly
|
|
308
|
-
readonly
|
|
309
|
-
readonly
|
|
310
|
-
readonly
|
|
311
|
-
readonly
|
|
312
|
-
readonly
|
|
313
|
-
readonly
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
readonly "
|
|
318
|
-
readonly
|
|
319
|
-
readonly
|
|
320
|
-
readonly "
|
|
321
|
-
readonly "
|
|
322
|
-
readonly "
|
|
323
|
-
readonly "
|
|
240
|
+
readonly "residential-rental-agreement": "rental-agreements";
|
|
241
|
+
readonly "commercial-rental-agreement": "rental-agreements";
|
|
242
|
+
readonly "short-term-rental-agreement": "rental-agreements";
|
|
243
|
+
readonly "purchase-agreement-property": "purchase-agreements";
|
|
244
|
+
readonly "sale-agreement-property": "purchase-agreements";
|
|
245
|
+
readonly "work-order-contract": "work-contracts";
|
|
246
|
+
readonly "framework-agreement": "contracts";
|
|
247
|
+
readonly "termination-notice": "general-correspondence";
|
|
248
|
+
readonly "complaint-letter": "general-correspondence";
|
|
249
|
+
readonly "incoming-invoice": "invoices";
|
|
250
|
+
readonly "outgoing-invoice": "invoices";
|
|
251
|
+
readonly "payment-reminder": "invoices";
|
|
252
|
+
readonly "annual-financial-statement": "financial-statements";
|
|
253
|
+
readonly "operating-cost-statement": "operating-and-heating-costs";
|
|
254
|
+
readonly "heating-cost-statement": "operating-and-heating-costs";
|
|
255
|
+
readonly "bank-statement": "bank-statements";
|
|
256
|
+
readonly "budget-plan": "budgeting";
|
|
257
|
+
readonly "repair-order-form": "repair-and-maintenance";
|
|
258
|
+
readonly "maintenance-report": "repair-and-maintenance";
|
|
259
|
+
readonly "inspection-report": "inspections";
|
|
260
|
+
readonly "damage-report": "damage-management";
|
|
261
|
+
readonly "maintenance-plan-document": "maintenance-plans";
|
|
262
|
+
readonly "tenant-registration-form": "tenant-files";
|
|
263
|
+
readonly "member-application": "member-files";
|
|
264
|
+
readonly "handover-protocol-apartment": "handover-protocols";
|
|
265
|
+
readonly "rent-adjustment-notice": "correspondence-tenant-member";
|
|
266
|
+
readonly "tenant-correspondence-letter": "correspondence-tenant-member";
|
|
267
|
+
readonly "member-correspondence-letter": "correspondence-tenant-member";
|
|
268
|
+
readonly "court-order": "litigation";
|
|
269
|
+
readonly "lawsuit-document": "litigation";
|
|
270
|
+
readonly "legal-opinion-report": "legal-consultation";
|
|
271
|
+
readonly "owner-association-resolution": "resolutions-and-bylaws";
|
|
272
|
+
readonly "cooperative-bylaws": "resolutions-and-bylaws";
|
|
273
|
+
readonly "meeting-minutes": "meeting-documentation";
|
|
274
|
+
readonly "meeting-invitation": "meeting-documentation";
|
|
275
|
+
readonly "meeting-agenda": "meeting-documentation";
|
|
276
|
+
readonly "feasibility-study": "planning";
|
|
277
|
+
readonly "architectural-plan": "planning";
|
|
278
|
+
readonly "building-permit-document": "permits";
|
|
279
|
+
readonly "demolition-permit": "permits";
|
|
280
|
+
readonly "construction-schedule": "construction-projects";
|
|
281
|
+
readonly "construction-documentation": "construction-projects";
|
|
282
|
+
readonly "service-contract": "provider-contracts";
|
|
283
|
+
readonly "service-level-agreement": "provider-contracts";
|
|
284
|
+
readonly "provider-communication": "provider-correspondence";
|
|
285
|
+
};
|
|
286
|
+
export declare const TstdlDocumentProperty: {
|
|
287
|
+
readonly Correspondent: "correspondent";
|
|
288
|
+
readonly EffectiveDate: "effective-date";
|
|
289
|
+
readonly ExpiryDate: "expiry-date";
|
|
290
|
+
readonly ReferenceNumber: "reference-number";
|
|
291
|
+
readonly RealEstate: "real-estate";
|
|
292
|
+
readonly TenantId: "tenant-id";
|
|
293
|
+
readonly ContractNumber: "contract-number";
|
|
294
|
+
readonly InvoiceNumber: "invoice-number";
|
|
295
|
+
readonly Amount: "amount";
|
|
296
|
+
readonly Currency: "currency";
|
|
297
|
+
readonly DueDate: "due-date";
|
|
298
|
+
readonly StartDate: "start-date";
|
|
299
|
+
readonly EndDate: "end-date";
|
|
300
|
+
readonly Status: "status";
|
|
301
|
+
readonly CaseNumber: "case-number";
|
|
302
|
+
readonly MeetingDate: "meeting-date";
|
|
303
|
+
};
|
|
304
|
+
export type TstdlDocumentProperty = EnumType<typeof TstdlDocumentProperty>;
|
|
305
|
+
export declare const TstdlDocumentPropertyConfiguration: {
|
|
306
|
+
readonly correspondent: ["text", "Korrespondent"];
|
|
307
|
+
readonly "effective-date": ["date", "Wirksamkeitsdatum"];
|
|
308
|
+
readonly "expiry-date": ["date", "Ablaufdatum"];
|
|
309
|
+
readonly "reference-number": ["text", "Referenznummer"];
|
|
310
|
+
readonly "real-estate": ["text", "Liegenschaft"];
|
|
311
|
+
readonly "tenant-id": ["text", "Mieter-ID"];
|
|
312
|
+
readonly "contract-number": ["text", "Vertragsnummer"];
|
|
313
|
+
readonly "invoice-number": ["text", "Rechnungsnummer"];
|
|
314
|
+
readonly amount: ["decimal", "Betrag"];
|
|
315
|
+
readonly currency: ["text", "Währung"];
|
|
316
|
+
readonly "due-date": ["date", "Fälligkeitsdatum"];
|
|
317
|
+
readonly "start-date": ["date", "Startdatum"];
|
|
318
|
+
readonly "end-date": ["date", "Enddatum"];
|
|
319
|
+
readonly status: ["text", "Status"];
|
|
320
|
+
readonly "case-number": ["text", "Fall-/Aktenzeichen"];
|
|
321
|
+
readonly "meeting-date": ["date", "Sitzungsdatum"];
|
|
322
|
+
};
|
|
323
|
+
export declare const TstdlDocumentTypeProperties: {
|
|
324
|
+
readonly "residential-rental-agreement": ["correspondent", "contract-number", "real-estate", "tenant-id", "effective-date", "start-date", "end-date", "amount", "currency", "status"];
|
|
325
|
+
readonly "commercial-rental-agreement": ["correspondent", "contract-number", "real-estate", "tenant-id", "effective-date", "start-date", "end-date", "amount", "currency", "status"];
|
|
326
|
+
readonly "short-term-rental-agreement": ["correspondent", "contract-number", "real-estate", "tenant-id", "effective-date", "start-date", "end-date", "amount", "currency", "status"];
|
|
327
|
+
readonly "purchase-agreement-property": ["correspondent", "contract-number", "real-estate", "effective-date", "amount", "currency", "status"];
|
|
328
|
+
readonly "sale-agreement-property": ["correspondent", "contract-number", "real-estate", "effective-date", "amount", "currency", "status"];
|
|
329
|
+
readonly "work-order-contract": ["correspondent", "contract-number", "real-estate", "effective-date", "start-date", "end-date", "amount", "currency", "status"];
|
|
330
|
+
readonly "framework-agreement": ["correspondent", "contract-number", "effective-date", "start-date", "end-date", "amount", "currency", "status"];
|
|
331
|
+
readonly "termination-notice": ["correspondent", "effective-date", "real-estate", "tenant-id", "contract-number"];
|
|
332
|
+
readonly "complaint-letter": ["correspondent", "real-estate", "reference-number"];
|
|
333
|
+
readonly "incoming-invoice": ["invoice-number", "correspondent", "due-date", "amount", "currency", "real-estate", "status", "reference-number"];
|
|
334
|
+
readonly "outgoing-invoice": ["invoice-number", "correspondent", "tenant-id", "due-date", "amount", "currency", "real-estate", "status"];
|
|
335
|
+
readonly "payment-reminder": ["correspondent", "tenant-id", "due-date", "amount", "currency", "reference-number"];
|
|
336
|
+
readonly "annual-financial-statement": ["start-date", "end-date", "real-estate", "reference-number"];
|
|
337
|
+
readonly "operating-cost-statement": ["start-date", "end-date", "real-estate", "tenant-id", "amount", "currency", "reference-number"];
|
|
338
|
+
readonly "heating-cost-statement": ["start-date", "end-date", "real-estate", "tenant-id", "amount", "currency", "reference-number"];
|
|
339
|
+
readonly "bank-statement": ["start-date", "end-date", "reference-number", "real-estate"];
|
|
340
|
+
readonly "budget-plan": ["start-date", "end-date", "real-estate", "amount", "currency", "reference-number"];
|
|
341
|
+
readonly "repair-order-form": ["real-estate", "status", "reference-number", "correspondent"];
|
|
342
|
+
readonly "maintenance-report": ["real-estate", "start-date", "end-date", "reference-number"];
|
|
343
|
+
readonly "inspection-report": ["real-estate", "correspondent", "status", "effective-date"];
|
|
344
|
+
readonly "damage-report": ["real-estate", "correspondent", "amount", "currency", "status"];
|
|
345
|
+
readonly "maintenance-plan-document": ["real-estate", "start-date", "end-date", "reference-number"];
|
|
346
|
+
readonly "tenant-registration-form": ["tenant-id", "real-estate", "correspondent", "effective-date"];
|
|
347
|
+
readonly "member-application": ["correspondent", "status", "effective-date"];
|
|
348
|
+
readonly "handover-protocol-apartment": ["real-estate", "tenant-id", "correspondent", "effective-date", "status"];
|
|
349
|
+
readonly "rent-adjustment-notice": ["effective-date", "tenant-id", "real-estate", "amount", "currency", "correspondent"];
|
|
350
|
+
readonly "tenant-correspondence-letter": ["tenant-id", "real-estate", "correspondent"];
|
|
351
|
+
readonly "member-correspondence-letter": ["correspondent"];
|
|
352
|
+
readonly "court-order": ["case-number", "real-estate", "correspondent", "effective-date"];
|
|
353
|
+
readonly "lawsuit-document": ["case-number", "real-estate", "correspondent"];
|
|
354
|
+
readonly "legal-opinion-report": ["correspondent", "case-number", "real-estate"];
|
|
355
|
+
readonly "owner-association-resolution": ["effective-date", "real-estate", "reference-number"];
|
|
356
|
+
readonly "cooperative-bylaws": ["effective-date", "reference-number"];
|
|
357
|
+
readonly "meeting-minutes": ["meeting-date", "reference-number"];
|
|
358
|
+
readonly "meeting-invitation": ["meeting-date", "correspondent"];
|
|
359
|
+
readonly "meeting-agenda": ["meeting-date"];
|
|
360
|
+
readonly "feasibility-study": ["real-estate", "amount", "currency"];
|
|
361
|
+
readonly "architectural-plan": ["real-estate", "reference-number", "correspondent"];
|
|
362
|
+
readonly "building-permit-document": ["reference-number", "effective-date", "expiry-date", "real-estate", "correspondent"];
|
|
363
|
+
readonly "demolition-permit": ["reference-number", "effective-date", "expiry-date", "real-estate", "correspondent"];
|
|
364
|
+
readonly "construction-schedule": ["real-estate", "start-date", "end-date"];
|
|
365
|
+
readonly "construction-documentation": ["real-estate", "reference-number"];
|
|
366
|
+
readonly "service-contract": ["contract-number", "effective-date", "expiry-date", "amount", "currency", "real-estate", "correspondent", "status"];
|
|
367
|
+
readonly "service-level-agreement": ["reference-number", "effective-date", "expiry-date", "real-estate", "correspondent", "status"];
|
|
368
|
+
readonly "provider-communication": ["real-estate", "correspondent"];
|
|
324
369
|
};
|