@gandalan/weblibs 1.5.17 → 1.5.19
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/JSDOC.md +661 -0
- package/README.md +106 -17
- package/api/business/ablageApi.js +106 -0
- package/api/business/anpassungApi.js +74 -0
- package/api/business/artikelApi.js +242 -0
- package/api/business/authApi.js +63 -0
- package/api/business/avApi.js +458 -0
- package/api/business/belegApi.js +365 -0
- package/api/business/belegPositionenApi.js +52 -0
- package/api/business/benutzerApi.js +96 -0
- package/api/business/fakturaApi.js +88 -0
- package/api/business/farbeApi.js +129 -0
- package/api/business/fileApi.js +72 -0
- package/api/business/historieApi.js +144 -0
- package/api/business/index.js +63 -0
- package/api/business/kontaktApi.js +70 -0
- package/api/business/lagerApi.js +162 -0
- package/api/business/lieferungApi.js +127 -0
- package/api/business/mailApi.js +41 -0
- package/api/business/mandantApi.js +137 -0
- package/api/business/materialApi.js +37 -0
- package/api/business/printApi.js +49 -0
- package/api/business/produktionApi.js +141 -0
- package/api/business/rechnungApi.js +155 -0
- package/api/business/serienApi.js +375 -0
- package/api/business/settingsApi.js +168 -0
- package/api/business/systemApi.js +209 -0
- package/api/business/uiApi.js +256 -0
- package/api/business/utilityApi.js +288 -0
- package/api/business/vorgangApi.js +128 -0
- package/api/dtos/allgemein.js +107 -0
- package/api/dtos/artikel.js +46 -0
- package/api/dtos/av.js +171 -0
- package/api/dtos/belege.js +614 -0
- package/api/dtos/benutzer.js +101 -0
- package/api/dtos/druck.js +50 -0
- package/api/dtos/faktura.js +128 -0
- package/api/dtos/farben.js +93 -0
- package/api/dtos/index.js +501 -0
- package/api/dtos/kunden.js +217 -0
- package/api/dtos/lager.js +66 -0
- package/api/dtos/mail.js +30 -0
- package/api/dtos/mandanten.js +60 -0
- package/api/dtos/nachrichten.js +18 -0
- package/api/dtos/produktGruppen.js +18 -0
- package/api/dtos/produktion.js +564 -0
- package/api/dtos/settings.js +172 -0
- package/api/dtos/technik.js +163 -0
- package/api/dtos/ui.js +496 -0
- package/api/dtos/webjob.js +12 -0
- package/api/fluentApi.js +10 -8
- package/api/fluentAuthManager.js +22 -14
- package/api/fluentRestClient.js +7 -7
- package/api/idasFluentApi.js +458 -0
- package/index.js +53 -6
- package/package.json +1 -1
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* JSDoc Type Definitions for Gandalan.IDAS.WebApi.Client DTOs
|
|
3
|
+
* Auto-generated from C# DTOs in /Gandalan.IDAS.WebApi.Client/DTOs/
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
/** @typedef {import('./av.js').AVReserviertItemDTO} AVReserviertItemDTO */
|
|
7
|
+
/** @typedef {import('./av.js').BearbeitungsKuerzelDTO} BearbeitungsKuerzelDTO */
|
|
8
|
+
/** @typedef {import('./av.js').BelegPositionAVDTO} BelegPositionAVDTO */
|
|
9
|
+
/** @typedef {import('./av.js').BelegPositionAVListItemDTO} BelegPositionAVListItemDTO */
|
|
10
|
+
/** @typedef {import('./av.js').PCodeStatistikDTO} PCodeStatistikDTO */
|
|
11
|
+
/** @typedef {import('./av.js').PositionSerieItemDTO} PositionSerieItemDTO */
|
|
12
|
+
/** @typedef {import('./av.js').ProfilKuerzelDTO} ProfilKuerzelDTO */
|
|
13
|
+
/** @typedef {import('./av.js').SerieAuslastungDTO} SerieAuslastungDTO */
|
|
14
|
+
/** @typedef {import('./av.js').SerieDTO} SerieDTO */
|
|
15
|
+
/** @typedef {import('./av.js').SerieDruckInfoDTO} SerieDruckInfoDTO */
|
|
16
|
+
/** @typedef {import('./av.js').SerieHistorieDTO} SerieHistorieDTO */
|
|
17
|
+
/** @typedef {import('./av.js').SerienMaterialEditDTO} SerienMaterialEditDTO */
|
|
18
|
+
/** @typedef {import('./av.js').VirtualSerieWithAuslastungDTO} VirtualSerieWithAuslastungDTO */
|
|
19
|
+
|
|
20
|
+
/** @typedef {import('./benutzer.js').BenutzerDTO} BenutzerDTO */
|
|
21
|
+
/** @typedef {import('./benutzer.js').BerechtigungDTO} BerechtigungDTO */
|
|
22
|
+
/** @typedef {import('./benutzer.js').RolleDTO} RolleDTO */
|
|
23
|
+
/** @typedef {import('./benutzer.js').LoginDTO} LoginDTO */
|
|
24
|
+
/** @typedef {import('./benutzer.js').LoginAttemptDTO} LoginAttemptDTO */
|
|
25
|
+
/** @typedef {import('./benutzer.js').LoginAttemptResultDTO} LoginAttemptResultDTO */
|
|
26
|
+
/** @typedef {import('./benutzer.js').PasswortAendernDTO} PasswortAendernDTO */
|
|
27
|
+
/** @typedef {import('./benutzer.js').RefreshTokenDTO} RefreshTokenDTO */
|
|
28
|
+
/** @typedef {import('./benutzer.js').UserAuthTokenDTO} UserAuthTokenDTO */
|
|
29
|
+
/** @typedef {import('./benutzer.js').ZustimmungsInfoDTO} ZustimmungsInfoDTO */
|
|
30
|
+
|
|
31
|
+
/** @typedef {import('./druck.js').ILayoutBelegDruck} ILayoutBelegDruck */
|
|
32
|
+
/** @typedef {import('./druck.js').LayoutBelegDruckDTO} LayoutBelegDruckDTO */
|
|
33
|
+
|
|
34
|
+
/** @typedef {import('./mandanten.js').MandantDTO} MandantDTO */
|
|
35
|
+
/** @typedef {import('./mandanten.js').MandantFreigabeDTO} MandantFreigabeDTO */
|
|
36
|
+
/** @typedef {import('./mandanten.js').ProduzentAktivierenDTO} ProduzentAktivierenDTO */
|
|
37
|
+
/** @typedef {import('./mandanten.js').FreigabeLevel} FreigabeLevel */
|
|
38
|
+
/** @typedef {import('./mandanten.js').FreigabeArt} FreigabeArt */
|
|
39
|
+
|
|
40
|
+
/** @typedef {import('./lager.js').LagerbestandDTO} LagerbestandDTO */
|
|
41
|
+
/** @typedef {import('./lager.js').LagerbuchungDTO} LagerbuchungDTO */
|
|
42
|
+
/** @typedef {import('./lager.js').LagerReservierungDTO} LagerReservierungDTO */
|
|
43
|
+
|
|
44
|
+
/** @typedef {import('./faktura.js').SetFakturaDTO} SetFakturaDTO */
|
|
45
|
+
/** @typedef {import('./faktura.js').BelegeInfoDTO} BelegeInfoDTO */
|
|
46
|
+
/** @typedef {import('./faktura.js').SammelrechnungDTO} SammelrechnungDTO */
|
|
47
|
+
/** @typedef {import('./faktura.js').SammelrechnungListItemDTO} SammelrechnungListItemDTO */
|
|
48
|
+
/** @typedef {import('./faktura.js').SammelrechnungPositionenDTO} SammelrechnungPositionenDTO */
|
|
49
|
+
/** @typedef {import('./faktura.js').SammelrechnungSaldenDTO} SammelrechnungSaldenDTO */
|
|
50
|
+
/** @typedef {import('./faktura.js').CreateSammelrechnungDTO} CreateSammelrechnungDTO */
|
|
51
|
+
/** @typedef {import('./faktura.js').AddRechnungSammelrechnungDTO} AddRechnungSammelrechnungDTO */
|
|
52
|
+
/** @typedef {import('./faktura.js').Lieferungstyp} Lieferungstyp */
|
|
53
|
+
|
|
54
|
+
/** @typedef {import('./farben.js').FarbeDTO} FarbeDTO */
|
|
55
|
+
/** @typedef {import('./farben.js').FarbGruppeDTO} FarbGruppeDTO */
|
|
56
|
+
/** @typedef {import('./farben.js').FarbKuerzelDTO} FarbKuerzelDTO */
|
|
57
|
+
/** @typedef {import('./farben.js').FarbKuerzelGruppeDTO} FarbKuerzelGruppeDTO */
|
|
58
|
+
/** @typedef {import('./farben.js').FarbgruppenaufpreiseDTO} FarbgruppenaufpreiseDTO */
|
|
59
|
+
/** @typedef {import('./farben.js').FarbgruppeSettingsDTO} FarbgruppeSettingsDTO */
|
|
60
|
+
/** @typedef {import('./farben.js').ProduzentenFarbGruppeDTO} ProduzentenFarbGruppeDTO */
|
|
61
|
+
|
|
62
|
+
/** @typedef {import('./allgemein.js').ContractDTO} ContractDTO */
|
|
63
|
+
/** @typedef {import('./allgemein.js').TemplateDTO} TemplateDTO */
|
|
64
|
+
/** @typedef {import('./allgemein.js').ChangeDTO} ChangeDTO */
|
|
65
|
+
/** @typedef {import('./allgemein.js').ChangeInfoDTO} ChangeInfoDTO */
|
|
66
|
+
/** @typedef {import('./allgemein.js').UpdateInfoDTO} UpdateInfoDTO */
|
|
67
|
+
/** @typedef {import('./allgemein.js').DevOpsStatusDTO} DevOpsStatusDTO */
|
|
68
|
+
/** @typedef {import('./allgemein.js').WebJobHistorieDTO} WebJobHistorieDTO */
|
|
69
|
+
/** @typedef {import('./allgemein.js').CreateServiceTokenRequestDTO} CreateServiceTokenRequestDTO */
|
|
70
|
+
/** @typedef {import('./allgemein.js').ApiVersionDTO} ApiVersionDTO */
|
|
71
|
+
/** @typedef {import('./allgemein.js').ExtendedStatusCodeDTO} ExtendedStatusCodeDTO */
|
|
72
|
+
|
|
73
|
+
// ============================================================================
|
|
74
|
+
// Anpassungen DTOs
|
|
75
|
+
// ============================================================================
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @typedef {Object} AnpassungArtDTO
|
|
79
|
+
* @description Enum values: Unbekannt=0, ZusatzArtikel=1, ArtikelSperre=2, Produktion=4,
|
|
80
|
+
* Standardfarben=8, Anbauteilfarben=16, Preisfaktoren=32, Aufpreise=64,
|
|
81
|
+
* MbAufpreise=256, Grenzenfreigabe=512, FarbGruppen=1024, MbAufpreiseKlebe=2048
|
|
82
|
+
* @property {number} value
|
|
83
|
+
*/
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* @typedef {Object} AnpassungDTO
|
|
87
|
+
* @property {string} AnpassungGuid
|
|
88
|
+
* @property {string} Art
|
|
89
|
+
* @property {boolean} GiltFuerBesitzer
|
|
90
|
+
* @property {boolean} GiltFuerAlleUntermandanten
|
|
91
|
+
* @property {boolean} GiltFuerZielMandant
|
|
92
|
+
* @property {string} ZielMandantGuid
|
|
93
|
+
* @property {string} Content
|
|
94
|
+
* @property {string} WarengruppeGuid
|
|
95
|
+
* @property {string} ArtikelGuid
|
|
96
|
+
* @property {number} Version
|
|
97
|
+
* @property {string} ChangedDate - ISO date string
|
|
98
|
+
*/
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* @typedef {Object} AnpassungVorlageDTO
|
|
102
|
+
* @property {string} AnpassungVorlageGuid
|
|
103
|
+
* @property {string} Art
|
|
104
|
+
* @property {string} Name
|
|
105
|
+
* @property {string} Beschreibung
|
|
106
|
+
* @property {string} Content
|
|
107
|
+
* @property {number} Version
|
|
108
|
+
* @property {string} ChangedDate - ISO date string
|
|
109
|
+
*/
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* @typedef {Object} AufpreisAnpassungDTO
|
|
113
|
+
* @property {string} Bezeichnung
|
|
114
|
+
* @property {string} FeldName
|
|
115
|
+
* @property {string} FeldWert
|
|
116
|
+
* @property {number} Aufpreis
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* @typedef {Object} PreisfaktorDTO
|
|
121
|
+
* @property {number} Faktor
|
|
122
|
+
* @property {number} AufpreisFaktor
|
|
123
|
+
* @property {number | null} ZuschnittFaktor
|
|
124
|
+
*/
|
|
125
|
+
|
|
126
|
+
// ============================================================================
|
|
127
|
+
// AV Report DTOs
|
|
128
|
+
// ============================================================================
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* @typedef {Object} AvReportVorgangRequestDto
|
|
132
|
+
* @property {string[]} VorgangGuids
|
|
133
|
+
*/
|
|
134
|
+
|
|
135
|
+
/**
|
|
136
|
+
* @typedef {Object} AvReportVorgangDto
|
|
137
|
+
* @description Minimalistic DTO for Vorgang in AV reports
|
|
138
|
+
* @property {string} VorgangGuid
|
|
139
|
+
* @property {number} VorgangsNummer
|
|
140
|
+
* @property {string} Kommission
|
|
141
|
+
* @property {string} Kommission2
|
|
142
|
+
* @property {AvReportBelegDto[]} Belege
|
|
143
|
+
* @property {AvReportKontaktDto} Kunde
|
|
144
|
+
*/
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* @typedef {Object} AvReportBelegDto
|
|
148
|
+
* @description Minimalistic DTO for Beleg in AV reports
|
|
149
|
+
* @property {string} BelegGuid
|
|
150
|
+
* @property {import("./kunden.js").BeleganschriftDTO | null} BelegAdresse
|
|
151
|
+
* @property {import("./kunden.js").BeleganschriftDTO | null} VersandAdresse
|
|
152
|
+
* @property {boolean} VersandAdresseGleichBelegAdresse
|
|
153
|
+
* @property {string} BelegArt
|
|
154
|
+
* @property {string} Terminwunsch
|
|
155
|
+
* @property {boolean} IstSelbstabholer
|
|
156
|
+
*/
|
|
157
|
+
|
|
158
|
+
/**
|
|
159
|
+
* @typedef {Object} AvReportKontaktDto
|
|
160
|
+
* @description Minimalistic DTO for Kontakt information in AvReportVorgangDto
|
|
161
|
+
* @property {string} KundenNummer
|
|
162
|
+
* @property {string} Land
|
|
163
|
+
*/
|
|
164
|
+
|
|
165
|
+
// ============================================================================
|
|
166
|
+
// Feedback DTOs
|
|
167
|
+
// ============================================================================
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* @typedef {Object} FeedbackDTO
|
|
171
|
+
* @property {string} FeedbackGuid
|
|
172
|
+
* @property {string} ChangedDate - ISO date string
|
|
173
|
+
* @property {number} Version
|
|
174
|
+
* @property {string} PCode
|
|
175
|
+
* @property {string} Jahr
|
|
176
|
+
* @property {string} Vorgangsnummer
|
|
177
|
+
* @property {string} Positionsnummer
|
|
178
|
+
* @property {string} Benutzername
|
|
179
|
+
* @property {import("./settings.js").MandantDTO | null} Mandant
|
|
180
|
+
* @property {string} BelegPositionGuid
|
|
181
|
+
* @property {import("./belege.js").BelegPositionDTO | null} BelegPosition
|
|
182
|
+
* @property {BelegPositionAVDTO[] | null} AVPositionen
|
|
183
|
+
* @property {import("./produktion.js").ProduktionsSettingsDTO | null} ProduktionsSettings
|
|
184
|
+
* @property {string} Beschreibung
|
|
185
|
+
* @property {string} ProgramInfos
|
|
186
|
+
* @property {FeedbackAttachmentDTO[] | null} Anhaenge
|
|
187
|
+
* @property {FeedbackKommentarDTO[] | null} Kommentare
|
|
188
|
+
* @property {string} Status
|
|
189
|
+
* @property {string} LoesungsVersion
|
|
190
|
+
* @property {string} HotlineTicketNummer
|
|
191
|
+
*/
|
|
192
|
+
|
|
193
|
+
/**
|
|
194
|
+
* @typedef {Object} FeedbackKommentarDTO
|
|
195
|
+
* @property {string} FeedbackKommentarGuid
|
|
196
|
+
* @property {string} Zeitstempel - ISO date string
|
|
197
|
+
* @property {string} Benutzer
|
|
198
|
+
* @property {string} Inhalt
|
|
199
|
+
*/
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @typedef {Object} FeedbackAttachmentDTO
|
|
203
|
+
* @property {string} FeedbackAttachmentGuid
|
|
204
|
+
* @property {string} Zeitstempel - ISO date string
|
|
205
|
+
* @property {string} Filename
|
|
206
|
+
* @property {string} URL
|
|
207
|
+
*/
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* @typedef {Object} FeedbackNotifyItemDTO
|
|
211
|
+
* @property {string} FeedbackNotifyItemGuid
|
|
212
|
+
* @property {string} Type
|
|
213
|
+
* @property {string} Benutzer
|
|
214
|
+
* @property {string} FeedbackGuid
|
|
215
|
+
* @property {string} FeedbackKommentarGuid
|
|
216
|
+
* @property {boolean} Gelesen
|
|
217
|
+
* @property {string} ChangedDate - ISO date string
|
|
218
|
+
*/
|
|
219
|
+
|
|
220
|
+
// ============================================================================
|
|
221
|
+
// Filter DTOs
|
|
222
|
+
// ============================================================================
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* @typedef {Object} FilterItemDTO
|
|
226
|
+
* @property {string} FilterGuid
|
|
227
|
+
* @property {string} MandantGuid
|
|
228
|
+
* @property {string} BenutzerGuid
|
|
229
|
+
* @property {string} Title
|
|
230
|
+
* @property {string} Context
|
|
231
|
+
* @property {string} SerializedFilterSetting
|
|
232
|
+
* @property {number} Version
|
|
233
|
+
* @property {string} ChangedDate - ISO date string
|
|
234
|
+
* @property {boolean} IsDeleted
|
|
235
|
+
* @property {number} Reihenfolge
|
|
236
|
+
*/
|
|
237
|
+
|
|
238
|
+
/**
|
|
239
|
+
* @typedef {Object} ListItemPropertyFilterDTO
|
|
240
|
+
* @property {string} PropertyName
|
|
241
|
+
* @property {boolean} IsChecked
|
|
242
|
+
* @property {string} PropertyType
|
|
243
|
+
* @property {string} Filter
|
|
244
|
+
* @property {string} Operator
|
|
245
|
+
* @property {boolean} IsActive
|
|
246
|
+
*/
|
|
247
|
+
|
|
248
|
+
// ============================================================================
|
|
249
|
+
// PositionsDaten DTOs
|
|
250
|
+
// ============================================================================
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* @typedef {Object} PositionsDatenDTO
|
|
254
|
+
* @property {string} PositionsDatenGuid
|
|
255
|
+
* @property {string} VariantenName
|
|
256
|
+
* @property {string} ArtikelNummer
|
|
257
|
+
* @property {number} PositionsNummer
|
|
258
|
+
* @property {number} AlternativPositionZuNummer
|
|
259
|
+
* @property {string} Besonderheiten
|
|
260
|
+
* @property {string} Einbauort
|
|
261
|
+
* @property {number} Menge
|
|
262
|
+
* @property {string} MengenEinheit
|
|
263
|
+
* @property {string} BelegKommission
|
|
264
|
+
* @property {string} PositionsKommission
|
|
265
|
+
* @property {string} Text
|
|
266
|
+
* @property {string} AngebotsText
|
|
267
|
+
* @property {string} SonderwunschText
|
|
268
|
+
* @property {string} SonderwunschAngebotsText
|
|
269
|
+
* @property {string} ErfassungsDatum - ISO date string
|
|
270
|
+
* @property {number} BmBreite
|
|
271
|
+
* @property {number} BmHoehe
|
|
272
|
+
* @property {string} FarbKuerzel
|
|
273
|
+
* @property {string} FarbKuerzelGuid
|
|
274
|
+
* @property {string} FarbItem
|
|
275
|
+
* @property {string} FarbItemGuid
|
|
276
|
+
* @property {string} FarbCode
|
|
277
|
+
* @property {string} FarbBezeichnung
|
|
278
|
+
* @property {string} FarbZusatzText
|
|
279
|
+
* @property {string} OberflaecheBezeichnung
|
|
280
|
+
* @property {string} OberflaecheGuid
|
|
281
|
+
* @property {string} PulverCode
|
|
282
|
+
* @property {boolean} IstSonderFarbPosition
|
|
283
|
+
* @property {string} Gewebe
|
|
284
|
+
* @property {string} LieferDatum - ISO date string
|
|
285
|
+
* @property {string} Serie
|
|
286
|
+
* @property {string} PCode
|
|
287
|
+
* @property {string} VorgangsNummer
|
|
288
|
+
* @property {string} DruckDatum
|
|
289
|
+
* @property {string} VersandAdresse
|
|
290
|
+
* @property {string} DataErstellDatum
|
|
291
|
+
* @property {string} BelegNummer
|
|
292
|
+
* @property {string} BelegJahr
|
|
293
|
+
* @property {string} Breite
|
|
294
|
+
* @property {string} Hoehe
|
|
295
|
+
* @property {string} Oeffnungsrichtung
|
|
296
|
+
* @property {string} Farbe
|
|
297
|
+
*/
|
|
298
|
+
|
|
299
|
+
// ============================================================================
|
|
300
|
+
// Salden DTOs
|
|
301
|
+
// ============================================================================
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* @typedef {Object} StandardSaldoDTO
|
|
305
|
+
* @property {string} StandardSaldoGuid
|
|
306
|
+
* @property {number} Wert - Der Wert, den der Anwender eingegeben hat, z.B. 5%
|
|
307
|
+
* @property {string} Typ - "Abschlag", "Zuschlag", "Betrag"
|
|
308
|
+
* @property {string} Art - "Prozentual", "Absolut"
|
|
309
|
+
* @property {string} Name - "Saldo", "StandardSaldo", "Warenwert", "Mehrwertsteuer", "Gesamtbetrag", "Endbetrag", "Farbe"
|
|
310
|
+
* @property {boolean} IsNettoSaldo
|
|
311
|
+
* @property {string} Text
|
|
312
|
+
* @property {string | null} GueltigAb - ISO date string
|
|
313
|
+
* @property {string | null} GueltigBis - ISO date string
|
|
314
|
+
* @property {number} Order
|
|
315
|
+
* @property {boolean} UseKundenrabatt
|
|
316
|
+
*/
|
|
317
|
+
|
|
318
|
+
// ============================================================================
|
|
319
|
+
// Scripts DTOs
|
|
320
|
+
// ============================================================================
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* @typedef {Object} FileInfoDTO
|
|
324
|
+
* @property {string} FileName
|
|
325
|
+
* @property {number} FileSize
|
|
326
|
+
* @property {string} Modified - ISO date string
|
|
327
|
+
* @property {string} Created - ISO date string
|
|
328
|
+
* @property {string | null} GueltigBis - ISO date string
|
|
329
|
+
* @property {string | null} MandantGuid
|
|
330
|
+
*/
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* @typedef {Object} ResourceResolution
|
|
334
|
+
* @property {boolean} Found
|
|
335
|
+
* @property {string} Path
|
|
336
|
+
*/
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* @typedef {Object} ResourceEntry
|
|
340
|
+
* @property {string} GueltigAb - ISO date string
|
|
341
|
+
* @property {string} Pfad
|
|
342
|
+
*/
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* @typedef {Object} ResourceRegistry
|
|
346
|
+
* @property {string} Version
|
|
347
|
+
* @property {Object.<string, Object.<string, ResourceEntry[]>>} Ressourcen
|
|
348
|
+
*/
|
|
349
|
+
|
|
350
|
+
// ============================================================================
|
|
351
|
+
// Produktion (Materialbedarf) DTOs
|
|
352
|
+
// ============================================================================
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* @typedef {Object} MaterialbedarfDTO
|
|
356
|
+
* @property {string} MaterialBedarfGuid
|
|
357
|
+
* @property {string} Kennzeichen - Eindeutiges Kennzeichen des Items
|
|
358
|
+
* @property {string} InternerName
|
|
359
|
+
* @property {string} InternerName_Backup
|
|
360
|
+
* @property {string} KatalogNummer - Neher-Katalognummer
|
|
361
|
+
* @property {string} Bezeichnung - Artikelbezeichnung
|
|
362
|
+
* @property {string} Einheit - lfm=Laufmeter, Stk=Stück, qm=Quadratmeter
|
|
363
|
+
* @property {boolean} Beipacken
|
|
364
|
+
* @property {string} Vorgangsnummer - Für Sonderfarbartikel
|
|
365
|
+
* @property {number} Stueckzahl
|
|
366
|
+
* @property {number} Laufmeter
|
|
367
|
+
* @property {boolean} IstVE
|
|
368
|
+
* @property {number | null} VE_Menge
|
|
369
|
+
* @property {string} FarbBezeichnung
|
|
370
|
+
* @property {string} FarbZusatzText - Trend-Farbkürzel (z.B. B7)
|
|
371
|
+
* @property {string} FarbKuerzel - Neher-Kürzel oder Sonderfarbton
|
|
372
|
+
* @property {string} FarbKuerzelGuid
|
|
373
|
+
* @property {string} FarbCode
|
|
374
|
+
* @property {string} FarbeItem
|
|
375
|
+
* @property {string} FarbItemGuid
|
|
376
|
+
* @property {string} OberflaecheBezeichnung
|
|
377
|
+
* @property {string} OberFlaecheGuid
|
|
378
|
+
* @property {string} PulverCode
|
|
379
|
+
* @property {boolean} IstZuschnitt
|
|
380
|
+
* @property {number} ZuschnittLaenge
|
|
381
|
+
* @property {string} ZuschnittWinkel
|
|
382
|
+
* @property {string} PositionsAngabe
|
|
383
|
+
* @property {string} MaterialBezeichnung
|
|
384
|
+
* @property {boolean} MaterialBearbeitungSaegen
|
|
385
|
+
* @property {boolean} MaterialBearbeitungFraesen
|
|
386
|
+
* @property {boolean} MaterialBearbeitungStanzen
|
|
387
|
+
* @property {boolean} MaterialBearbeitungBeschichten
|
|
388
|
+
* @property {boolean} MaterialBearbeitungBohren
|
|
389
|
+
* @property {boolean} MaterialBearbeitungEloxieren
|
|
390
|
+
* @property {boolean} AufPackListe
|
|
391
|
+
* @property {string} CADKennung
|
|
392
|
+
* @property {string} EtikettenSonderS
|
|
393
|
+
* @property {string} IndiSonderInfo1
|
|
394
|
+
* @property {string} IndiSonderInfo2
|
|
395
|
+
* @property {string} IndiSonderInfo3
|
|
396
|
+
* @property {string} PIText
|
|
397
|
+
* @property {boolean} SchraegElement
|
|
398
|
+
* @property {string} SonderFormInfo
|
|
399
|
+
* @property {string} ZusatzEtikettText
|
|
400
|
+
* @property {boolean} AufMaterialListe
|
|
401
|
+
* @property {boolean} NurLieferscheinAnzeige
|
|
402
|
+
* @property {boolean} FromSonderWunsch
|
|
403
|
+
* @property {boolean} IstBeschichtbar
|
|
404
|
+
* @property {string} KatalogArtikelArt
|
|
405
|
+
* @property {import("./produktion.js").MaterialbedarfStatiDTO | null} AktuellerStatus
|
|
406
|
+
* @property {boolean} ProfilGedrehtSaegen
|
|
407
|
+
* @property {boolean} IstSonderfarbe
|
|
408
|
+
* @property {string} MaterialPCode
|
|
409
|
+
* @property {string} Bemerkung
|
|
410
|
+
* @property {string | null} AVPositionGuid
|
|
411
|
+
* @property {string} ZielKennzeichen
|
|
412
|
+
* @property {string | null} AblageGuid
|
|
413
|
+
* @property {string | null} AblageFachGuid
|
|
414
|
+
* @property {string} Lagerfach
|
|
415
|
+
*/
|
|
416
|
+
|
|
417
|
+
// ============================================================================
|
|
418
|
+
// Re-export all DTO modules for JSDoc type imports
|
|
419
|
+
// ============================================================================
|
|
420
|
+
// Usage example (package import): VorgangDTO from @gandalan/idas-weblibs/api/dtos
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* Cross-module DTO aliases so type imports via this index module resolve reliably.
|
|
424
|
+
*/
|
|
425
|
+
|
|
426
|
+
/** @typedef {import("./belege.js").BaseListItemDTO} BaseListItemDTO */
|
|
427
|
+
/** @typedef {import("./belege.js").BelegDTO} BelegDTO */
|
|
428
|
+
/** @typedef {import("./belege.js").BelegHistorieDTO} BelegHistorieDTO */
|
|
429
|
+
/** @typedef {import("./belege.js").BelegHistorienDTO} BelegHistorienDTO */
|
|
430
|
+
/** @typedef {import("./belege.js").BelegPositionHistorieDTO} BelegPositionHistorieDTO */
|
|
431
|
+
/** @typedef {import("./belege.js").BelegPositionHistorienDTO} BelegPositionHistorienDTO */
|
|
432
|
+
/** @typedef {import("./belege.js").BelegStatusDTO} BelegStatusDTO */
|
|
433
|
+
/** @typedef {import("./belege.js").BelegartWechselDTO} BelegartWechselDTO */
|
|
434
|
+
/** @typedef {import("./belege.js").CalculationInfoDTO} CalculationInfoDTO */
|
|
435
|
+
/** @typedef {import("./belege.js").VorgangHistorieDTO} VorgangHistorieDTO */
|
|
436
|
+
/** @typedef {import("./belege.js").VorgangHistorienDTO} VorgangHistorienDTO */
|
|
437
|
+
/** @typedef {import("./belege.js").VorgangDTO} VorgangDTO */
|
|
438
|
+
/** @typedef {import("./belege.js").VorgangListItemDTO} VorgangListItemDTO */
|
|
439
|
+
/** @typedef {import("./belege.js").VorgangStatusDTO} VorgangStatusDTO */
|
|
440
|
+
/** @typedef {import("./belege.js").VorgangStatusTableDTO} VorgangStatusTableDTO */
|
|
441
|
+
|
|
442
|
+
/** @typedef {import("./produktion.js").AblageDTO} AblageDTO */
|
|
443
|
+
/** @typedef {import("./produktion.js").BearbeitungDTO} BearbeitungDTO */
|
|
444
|
+
/** @typedef {import("./produktion.js").BerechnungParameterDTO} BerechnungParameterDTO */
|
|
445
|
+
/** @typedef {import("./produktion.js").FachzuordnungResultDTO} FachzuordnungResultDTO */
|
|
446
|
+
/** @typedef {import("./produktion.js").ProduktionsDatenDTO} ProduktionsDatenDTO */
|
|
447
|
+
/** @typedef {import("./produktion.js").ProduktionsInfoDTO} ProduktionsInfoDTO */
|
|
448
|
+
/** @typedef {import("./produktion.js").ProduktionsStatusDTO} ProduktionsStatusDTO */
|
|
449
|
+
/** @typedef {import("./produktion.js").ProduktionsStatusHistorieDTO} ProduktionsStatusHistorieDTO */
|
|
450
|
+
/** @typedef {import("./produktion.js").ProduktionsfreigabeItemDTO} ProduktionsfreigabeItemDTO */
|
|
451
|
+
/** @typedef {import("./produktion.js").SaegeDatenHistorieDTO} SaegeDatenHistorieDTO */
|
|
452
|
+
/** @typedef {import("./produktion.js").SaegeDatenResultDTO} SaegeDatenResultDTO */
|
|
453
|
+
|
|
454
|
+
/** @typedef {import("./ui.js").KatalogArtikelDTO} KatalogArtikelDTO */
|
|
455
|
+
/** @typedef {import("./ui.js").KonfigSatzInfoDTO} KonfigSatzInfoDTO */
|
|
456
|
+
/** @typedef {import("./ui.js").OberflaecheDTO} OberflaecheDTO */
|
|
457
|
+
/** @typedef {import("./ui.js").ProduktFamilieDTO} ProduktFamilieDTO */
|
|
458
|
+
/** @typedef {import("./ui.js").TagInfoDTO} TagInfoDTO */
|
|
459
|
+
/** @typedef {import("./ui.js").TagVorlageDTO} TagVorlageDTO */
|
|
460
|
+
/** @typedef {import("./ui.js").UIDefinitionDTO} UIDefinitionDTO */
|
|
461
|
+
/** @typedef {import("./ui.js").UIEingabeFeldInfoDTO} UIEingabeFeldInfoDTO */
|
|
462
|
+
/** @typedef {import("./ui.js").UIScriptDTO} UIScriptDTO */
|
|
463
|
+
/** @typedef {import("./ui.js").VarianteDTO} VarianteDTO */
|
|
464
|
+
/** @typedef {import("./ui.js").WarenGruppeDTO} WarenGruppeDTO */
|
|
465
|
+
/** @typedef {import("./ui.js").WerteListeDTO} WerteListeDTO */
|
|
466
|
+
|
|
467
|
+
/** @typedef {import("./technik.js").KomponenteDTO} KomponenteDTO */
|
|
468
|
+
/** @typedef {import("./technik.js").KonturDTO} KonturDTO */
|
|
469
|
+
/** @typedef {import("./technik.js").SchnittDTO} SchnittDTO */
|
|
470
|
+
|
|
471
|
+
/** @typedef {import("./settings.js").PreisermittlungsEinstellungenDTO} PreisermittlungsEinstellungenDTO */
|
|
472
|
+
|
|
473
|
+
/** @typedef {import("./mail.js").JobStatusEntryDTO} JobStatusEntryDTO */
|
|
474
|
+
/** @typedef {import("./mail.js").JobStatusResponseDTO} JobStatusResponseDTO */
|
|
475
|
+
/** @typedef {import("./mail.js").MailJobInfo} MailJobInfo */
|
|
476
|
+
/** @typedef {import("./artikel.js").KatalogArtikelIndiDatenDTO} KatalogArtikelIndiDatenDTO */
|
|
477
|
+
/** @typedef {import("./webjob.js").MandantAndBelegPosGuidDTO} MandantAndBelegPosGuidDTO */
|
|
478
|
+
/** @typedef {import("./artikel.js").MaterialBearbeitungsMethodeDTO} MaterialBearbeitungsMethodeDTO */
|
|
479
|
+
/** @typedef {import("./nachrichten.js").NachrichtenDTO} NachrichtenDTO */
|
|
480
|
+
/** @typedef {import("./produktGruppen.js").ProduktGruppeDTO} ProduktGruppeDTO */
|
|
481
|
+
|
|
482
|
+
// Re-export modules so their JSDoc types are accessible via the index
|
|
483
|
+
export * from "./allgemein.js";
|
|
484
|
+
export * from "./artikel.js";
|
|
485
|
+
export * from "./av.js";
|
|
486
|
+
export * from "./belege.js";
|
|
487
|
+
export * from "./benutzer.js";
|
|
488
|
+
export * from "./druck.js";
|
|
489
|
+
export * from "./farben.js";
|
|
490
|
+
export * from "./faktura.js";
|
|
491
|
+
export * from "./kunden.js";
|
|
492
|
+
export * from "./lager.js";
|
|
493
|
+
export * from "./mail.js";
|
|
494
|
+
export * from "./mandanten.js";
|
|
495
|
+
export * from "./nachrichten.js";
|
|
496
|
+
export * from "./produktion.js";
|
|
497
|
+
export * from "./produktGruppen.js";
|
|
498
|
+
export * from "./settings.js";
|
|
499
|
+
export * from "./technik.js";
|
|
500
|
+
export * from "./ui.js";
|
|
501
|
+
export * from "./webjob.js";
|