@gandalan/weblibs 1.5.21 → 1.5.22

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.
@@ -36,14 +36,14 @@ export function createArtikelApi(fluentApi) {
36
36
  * @param {KatalogArtikelDTO} artikel
37
37
  * @returns {Promise<KatalogArtikelDTO>}
38
38
  */
39
- saveArtikel: (artikel) => fluentApi.put(`Artikel/${artikel.KatalogArtikelGuid}`, artikel),
39
+ saveArtikel: (artikel) => fluentApi.put(`Artikel/${artikel.KatalogArtikelGuid}`, artikel),
40
40
 
41
41
  /**
42
42
  * Delete article
43
43
  * @param {KatalogArtikelDTO} artikel
44
44
  * @returns {Promise<void>}
45
45
  */
46
- deleteArtikel: (artikel) => fluentApi.delete(`Artikel/${artikel.KatalogArtikelGuid}`),
46
+ deleteArtikel: (artikel) => fluentApi.delete(`Artikel/${artikel.KatalogArtikelGuid}`),
47
47
 
48
48
  // ArtikelIndiDatenWebRoutinen
49
49
  /**
@@ -63,14 +63,14 @@ export function createArtikelApi(fluentApi) {
63
63
  * @param {KatalogArtikelIndiDatenDTO} daten
64
64
  * @returns {Promise<void>}
65
65
  */
66
- saveArtikelIndiDaten: (daten) => fluentApi.put(`ArtikelIndiDaten/${daten.KatalogArtikelGuid}`, daten),
66
+ saveArtikelIndiDaten: (daten) => fluentApi.put(`ArtikelIndiDaten/${daten.KatalogArtikelGuid}`, daten),
67
67
 
68
68
  /**
69
69
  * Delete article individual data
70
70
  * @param {KatalogArtikelIndiDatenDTO} daten
71
71
  * @returns {Promise<void>}
72
72
  */
73
- deleteArtikelIndiDaten: (daten) => fluentApi.delete(`ArtikelIndiDaten/${daten.KatalogArtikelGuid}`),
73
+ deleteArtikelIndiDaten: (daten) => fluentApi.delete(`ArtikelIndiDaten/${daten.KatalogArtikelGuid}`),
74
74
 
75
75
  // WarenGruppeWebRoutinen
76
76
  /**
@@ -84,7 +84,7 @@ export function createArtikelApi(fluentApi) {
84
84
  * @param {WarenGruppeDTO} dto
85
85
  * @returns {Promise<void>}
86
86
  */
87
- saveWarenGruppe: (dto) => fluentApi.put(`WarenGruppe/${dto.WarenGruppeGuid}`, dto),
87
+ saveWarenGruppe: (dto) => fluentApi.put(`WarenGruppe/${dto.WarenGruppeGuid}`, dto),
88
88
 
89
89
  // ProduktGruppenWebRoutinen
90
90
  /**
@@ -174,7 +174,7 @@ export function createArtikelApi(fluentApi) {
174
174
  * @param {VarianteDTO} variante
175
175
  * @returns {Promise<VarianteDTO>}
176
176
  */
177
- saveVariante: (variante) => fluentApi.put(`Variante/${variante.VarianteGuid}`, variante),
177
+ saveVariante: (variante) => fluentApi.put(`Variante/${variante.VarianteGuid}`, variante),
178
178
 
179
179
  /**
180
180
  * Trigger variant cache web job
@@ -81,7 +81,7 @@ export function createSettingsApi(fluentApi) {
81
81
  * @param {WerteListeDTO} dto
82
82
  * @returns {Promise<void>}
83
83
  */
84
- saveWerteliste: (dto) => fluentApi.put(`WerteListe/${dto.WerteListeGuid}`, dto),
84
+ saveWerteliste: (dto) => fluentApi.put(`WerteListe/${dto.WerteListeGuid}`, dto),
85
85
 
86
86
  // ContractWebRoutinen
87
87
  /**
@@ -102,7 +102,7 @@ export function createSettingsApi(fluentApi) {
102
102
  * @param {ContractDTO} dto
103
103
  * @returns {Promise<void>}
104
104
  */
105
- deleteContract: (dto) => fluentApi.delete(`Contracts/${dto.ContractGuid}`, dto),
105
+ deleteContract: (dto) => fluentApi.delete(`Contracts/${dto.ContractGuid}`, dto),
106
106
 
107
107
  // TemplateWebRoutinen
108
108
  /**
@@ -123,7 +123,7 @@ export function createSettingsApi(fluentApi) {
123
123
  * @param {TemplateDTO} dto
124
124
  * @returns {Promise<void>}
125
125
  */
126
- saveTemplate: (dto) => fluentApi.put(`Template/${dto.TemplateGuid}`, dto),
126
+ saveTemplate: (dto) => fluentApi.put(`Template/${dto.TemplateGuid}`, dto),
127
127
 
128
128
  /**
129
129
  * Delete template
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gandalan/weblibs",
3
- "version": "1.5.21",
3
+ "version": "1.5.22",
4
4
  "description": "WebLibs for Gandalan JS/TS projects",
5
5
  "keywords": [
6
6
  "gandalan"