@devite/shopware-client 1.3.0 → 1.3.2

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/index.mjs CHANGED
@@ -306,7 +306,7 @@ class AppClient extends Client {
306
306
  * @throws {Error} if the request failed
307
307
  */
308
308
  async searchApps(request) {
309
- const response = await this.get(`/search/app`, {
309
+ const response = await this.post(`/search/app`, {
310
310
  headers: { Accept: "application/json" },
311
311
  body: new JsonPayload(request)
312
312
  });
@@ -387,7 +387,7 @@ class AppClient extends Client {
387
387
  * @throws {Error} if the request failed
388
388
  */
389
389
  async searchActionButtons(request) {
390
- const response = await this.get(`/search/app-action-button`, {
390
+ const response = await this.post(`/search/app-action-button`, {
391
391
  headers: { Accept: "application/json" },
392
392
  body: new JsonPayload(request)
393
393
  });
@@ -468,7 +468,7 @@ class AppClient extends Client {
468
468
  * @throws {Error} if the request failed
469
469
  */
470
470
  async searchAdminSnippets(request) {
471
- const response = await this.get(`/search/app-administration-snippet`, {
471
+ const response = await this.post(`/search/app-administration-snippet`, {
472
472
  headers: { Accept: "application/json" },
473
473
  body: new JsonPayload(request)
474
474
  });
@@ -549,7 +549,7 @@ class AppClient extends Client {
549
549
  * @throws {Error} if the request failed
550
550
  */
551
551
  async searchCmsBlocks(request) {
552
- const response = await this.get(`/search/app-cms-block`, {
552
+ const response = await this.post(`/search/app-cms-block`, {
553
553
  headers: { Accept: "application/json" },
554
554
  body: new JsonPayload(request)
555
555
  });
@@ -630,7 +630,7 @@ class AppClient extends Client {
630
630
  * @throws {Error} if the request failed
631
631
  */
632
632
  async searchFlowActions(request) {
633
- const response = await this.get(`/search/app-flow-action`, {
633
+ const response = await this.post(`/search/app-flow-action`, {
634
634
  headers: { Accept: "application/json" },
635
635
  body: new JsonPayload(request)
636
636
  });
@@ -711,7 +711,7 @@ class AppClient extends Client {
711
711
  * @throws {Error} if the request failed
712
712
  */
713
713
  async searchFlowEvents(request) {
714
- const response = await this.get(`/search/app-flow-event`, {
714
+ const response = await this.post(`/search/app-flow-event`, {
715
715
  headers: { Accept: "application/json" },
716
716
  body: new JsonPayload(request)
717
717
  });
@@ -792,7 +792,7 @@ class AppClient extends Client {
792
792
  * @throws {Error} if the request failed
793
793
  */
794
794
  async searchPaymentMethods(request) {
795
- const response = await this.get(`/search/app-payment-method`, {
795
+ const response = await this.post(`/search/app-payment-method`, {
796
796
  headers: { Accept: "application/json" },
797
797
  body: new JsonPayload(request)
798
798
  });
@@ -873,7 +873,7 @@ class AppClient extends Client {
873
873
  * @throws {Error} if the request failed
874
874
  */
875
875
  async searchScriptConditions(request) {
876
- const response = await this.get(`/search/app-script-condition`, {
876
+ const response = await this.post(`/search/app-script-condition`, {
877
877
  headers: { Accept: "application/json" },
878
878
  body: new JsonPayload(request)
879
879
  });
@@ -954,7 +954,7 @@ class AppClient extends Client {
954
954
  * @throws {Error} if the request failed
955
955
  */
956
956
  async searchShippingMethods(request) {
957
- const response = await this.get(`/search/app-shipping-method`, {
957
+ const response = await this.post(`/search/app-shipping-method`, {
958
958
  headers: { Accept: "application/json" },
959
959
  body: new JsonPayload(request)
960
960
  });
@@ -1035,7 +1035,7 @@ class AppClient extends Client {
1035
1035
  * @throws {Error} if the request failed
1036
1036
  */
1037
1037
  async searchTemplates(request) {
1038
- const response = await this.get(`/search/app-template`, {
1038
+ const response = await this.post(`/search/app-template`, {
1039
1039
  headers: { Accept: "application/json" },
1040
1040
  body: new JsonPayload(request)
1041
1041
  });
@@ -1119,7 +1119,7 @@ let CategoryClient$1 = class CategoryClient extends Client {
1119
1119
  * @throws {Error} if the request failed
1120
1120
  */
1121
1121
  async searchCategories(request) {
1122
- const response = await this.get(`/search/category`, {
1122
+ const response = await this.post(`/search/category`, {
1123
1123
  headers: { Accept: "application/json" },
1124
1124
  body: new JsonPayload(request)
1125
1125
  });
@@ -1200,7 +1200,7 @@ let CategoryClient$1 = class CategoryClient extends Client {
1200
1200
  * @throws {Error} if the request failed
1201
1201
  */
1202
1202
  async searchMainCategories(request) {
1203
- const response = await this.get(`/search/main-category`, {
1203
+ const response = await this.post(`/search/main-category`, {
1204
1204
  headers: { Accept: "application/json" },
1205
1205
  body: new JsonPayload(request)
1206
1206
  });
@@ -1284,7 +1284,7 @@ let ContentClient$1 = class ContentClient extends Client {
1284
1284
  * @throws {Error} if the request failed
1285
1285
  */
1286
1286
  async searchCmsBlocks(request) {
1287
- const response = await this.get(`/search/cms-block`, {
1287
+ const response = await this.post(`/search/cms-block`, {
1288
1288
  headers: { Accept: "application/json" },
1289
1289
  body: new JsonPayload(request)
1290
1290
  });
@@ -1365,7 +1365,7 @@ let ContentClient$1 = class ContentClient extends Client {
1365
1365
  * @throws {Error} if the request failed
1366
1366
  */
1367
1367
  async searchCmsPages(request) {
1368
- const response = await this.get(`/search/cms-page`, {
1368
+ const response = await this.post(`/search/cms-page`, {
1369
1369
  headers: { Accept: "application/json" },
1370
1370
  body: new JsonPayload(request)
1371
1371
  });
@@ -1446,7 +1446,7 @@ let ContentClient$1 = class ContentClient extends Client {
1446
1446
  * @throws {Error} if the request failed
1447
1447
  */
1448
1448
  async searchCmsSections(request) {
1449
- const response = await this.get(`/search/cms-section`, {
1449
+ const response = await this.post(`/search/cms-section`, {
1450
1450
  headers: { Accept: "application/json" },
1451
1451
  body: new JsonPayload(request)
1452
1452
  });
@@ -1527,7 +1527,7 @@ let ContentClient$1 = class ContentClient extends Client {
1527
1527
  * @throws {Error} if the request failed
1528
1528
  */
1529
1529
  async searchCmsSlots(request) {
1530
- const response = await this.get(`/search/cms-slot`, {
1530
+ const response = await this.post(`/search/cms-slot`, {
1531
1531
  headers: { Accept: "application/json" },
1532
1532
  body: new JsonPayload(request)
1533
1533
  });
@@ -1608,7 +1608,7 @@ let ContentClient$1 = class ContentClient extends Client {
1608
1608
  * @throws {Error} if the request failed
1609
1609
  */
1610
1610
  async searchLandingPages(request) {
1611
- const response = await this.get(`/search/landing-page`, {
1611
+ const response = await this.post(`/search/landing-page`, {
1612
1612
  headers: { Accept: "application/json" },
1613
1613
  body: new JsonPayload(request)
1614
1614
  });
@@ -1689,7 +1689,7 @@ let ContentClient$1 = class ContentClient extends Client {
1689
1689
  * @throws {Error} if the request failed
1690
1690
  */
1691
1691
  async searchThemes(request) {
1692
- const response = await this.get(`/search/theme`, {
1692
+ const response = await this.post(`/search/theme`, {
1693
1693
  headers: { Accept: "application/json" },
1694
1694
  body: new JsonPayload(request)
1695
1695
  });
@@ -1773,7 +1773,7 @@ let CountryClient$1 = class CountryClient extends Client {
1773
1773
  * @throws {Error} if the request failed
1774
1774
  */
1775
1775
  async searchCountries(request) {
1776
- const response = await this.get(`/search/country`, {
1776
+ const response = await this.post(`/search/country`, {
1777
1777
  headers: { Accept: "application/json" },
1778
1778
  body: new JsonPayload(request)
1779
1779
  });
@@ -1854,7 +1854,7 @@ let CountryClient$1 = class CountryClient extends Client {
1854
1854
  * @throws {Error} if the request failed
1855
1855
  */
1856
1856
  async searchStates(request) {
1857
- const response = await this.get(`/search/country-state`, {
1857
+ const response = await this.post(`/search/country-state`, {
1858
1858
  headers: { Accept: "application/json" },
1859
1859
  body: new JsonPayload(request)
1860
1860
  });
@@ -1938,7 +1938,7 @@ class CountryClient extends Client {
1938
1938
  * @throws {Error} if the request failed
1939
1939
  */
1940
1940
  async searchCurrencies(request) {
1941
- const response = await this.get(`/search/currency`, {
1941
+ const response = await this.post(`/search/currency`, {
1942
1942
  headers: { Accept: "application/json" },
1943
1943
  body: new JsonPayload(request)
1944
1944
  });
@@ -2019,7 +2019,7 @@ class CountryClient extends Client {
2019
2019
  * @throws {Error} if the request failed
2020
2020
  */
2021
2021
  async searchCountryRoundings(request) {
2022
- const response = await this.get(`/search/currency-country-rounding`, {
2022
+ const response = await this.post(`/search/currency-country-rounding`, {
2023
2023
  headers: { Accept: "application/json" },
2024
2024
  body: new JsonPayload(request)
2025
2025
  });
@@ -2103,7 +2103,7 @@ class CustomDataClient extends Client {
2103
2103
  * @throws {Error} if the request failed
2104
2104
  */
2105
2105
  async searchCustomEntities(request) {
2106
- const response = await this.get(`/search/custom-entity`, {
2106
+ const response = await this.post(`/search/custom-entity`, {
2107
2107
  headers: { Accept: "application/json" },
2108
2108
  body: new JsonPayload(request)
2109
2109
  });
@@ -2184,7 +2184,7 @@ class CustomDataClient extends Client {
2184
2184
  * @throws {Error} if the request failed
2185
2185
  */
2186
2186
  async searchCustomFields(request) {
2187
- const response = await this.get(`/search/custom-field`, {
2187
+ const response = await this.post(`/search/custom-field`, {
2188
2188
  headers: { Accept: "application/json" },
2189
2189
  body: new JsonPayload(request)
2190
2190
  });
@@ -2265,7 +2265,7 @@ class CustomDataClient extends Client {
2265
2265
  * @throws {Error} if the request failed
2266
2266
  */
2267
2267
  async searchCustomFieldSets(request) {
2268
- const response = await this.get(`/search/custom-field-set`, {
2268
+ const response = await this.post(`/search/custom-field-set`, {
2269
2269
  headers: { Accept: "application/json" },
2270
2270
  body: new JsonPayload(request)
2271
2271
  });
@@ -2346,7 +2346,7 @@ class CustomDataClient extends Client {
2346
2346
  * @throws {Error} if the request failed
2347
2347
  */
2348
2348
  async searchCustomFieldSetRelations(request) {
2349
- const response = await this.get(`/search/custom-field-set-relation`, {
2349
+ const response = await this.post(`/search/custom-field-set-relation`, {
2350
2350
  headers: { Accept: "application/json" },
2351
2351
  body: new JsonPayload(request)
2352
2352
  });
@@ -2443,7 +2443,7 @@ class CustomerClient extends Client {
2443
2443
  * @throws {Error} if the request failed
2444
2444
  */
2445
2445
  async searchCustomers(request) {
2446
- const response = await this.get(`/search/customer`, {
2446
+ const response = await this.post(`/search/customer`, {
2447
2447
  headers: { Accept: "application/json" },
2448
2448
  body: new JsonPayload(request)
2449
2449
  });
@@ -2524,7 +2524,7 @@ class CustomerClient extends Client {
2524
2524
  * @throws {Error} if the request failed
2525
2525
  */
2526
2526
  async searchAddresses(request) {
2527
- const response = await this.get(`/search/address`, {
2527
+ const response = await this.post(`/search/address`, {
2528
2528
  headers: { Accept: "application/json" },
2529
2529
  body: new JsonPayload(request)
2530
2530
  });
@@ -2605,7 +2605,7 @@ class CustomerClient extends Client {
2605
2605
  * @throws {Error} if the request failed
2606
2606
  */
2607
2607
  async searchGroups(request) {
2608
- const response = await this.get(`/search/customer-group`, {
2608
+ const response = await this.post(`/search/customer-group`, {
2609
2609
  headers: { Accept: "application/json" },
2610
2610
  body: new JsonPayload(request)
2611
2611
  });
@@ -2686,7 +2686,7 @@ class CustomerClient extends Client {
2686
2686
  * @throws {Error} if the request failed
2687
2687
  */
2688
2688
  async searchRecoveries(request) {
2689
- const response = await this.get(`/search/customer-recovery`, {
2689
+ const response = await this.post(`/search/customer-recovery`, {
2690
2690
  headers: { Accept: "application/json" },
2691
2691
  body: new JsonPayload(request)
2692
2692
  });
@@ -2767,7 +2767,7 @@ class CustomerClient extends Client {
2767
2767
  * @throws {Error} if the request failed
2768
2768
  */
2769
2769
  async searchWishlists(request) {
2770
- const response = await this.get(`/search/customer-wishlist`, {
2770
+ const response = await this.post(`/search/customer-wishlist`, {
2771
2771
  headers: { Accept: "application/json" },
2772
2772
  body: new JsonPayload(request)
2773
2773
  });
@@ -2848,7 +2848,7 @@ class CustomerClient extends Client {
2848
2848
  * @throws {Error} if the request failed
2849
2849
  */
2850
2850
  async searchWishlistProducts(request) {
2851
- const response = await this.get(`/search/customer-wishlist-product`, {
2851
+ const response = await this.post(`/search/customer-wishlist-product`, {
2852
2852
  headers: { Accept: "application/json" },
2853
2853
  body: new JsonPayload(request)
2854
2854
  });
@@ -2931,7 +2931,7 @@ let DeliveryTimeClient$4 = class DeliveryTimeClient extends Client {
2931
2931
  * @throws {Error} if the request failed
2932
2932
  */
2933
2933
  async searchDeliveryTimes(request) {
2934
- const response = await this.get(`/search/delivery-time`, {
2934
+ const response = await this.post(`/search/delivery-time`, {
2935
2935
  headers: { Accept: "application/json" },
2936
2936
  body: new JsonPayload(request)
2937
2937
  });
@@ -3057,7 +3057,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
3057
3057
  * @throws {Error} if the request failed
3058
3058
  */
3059
3059
  async searchDocuments(request) {
3060
- const response = await this.get(`/search/document`, {
3060
+ const response = await this.post(`/search/document`, {
3061
3061
  headers: { Accept: "application/json" },
3062
3062
  body: new JsonPayload(request)
3063
3063
  });
@@ -3138,7 +3138,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
3138
3138
  * @throws {Error} if the request failed
3139
3139
  */
3140
3140
  async searchBaseConfigs(request) {
3141
- const response = await this.get(`/search/document-base-config`, {
3141
+ const response = await this.post(`/search/document-base-config`, {
3142
3142
  headers: { Accept: "application/json" },
3143
3143
  body: new JsonPayload(request)
3144
3144
  });
@@ -3219,7 +3219,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
3219
3219
  * @throws {Error} if the request failed
3220
3220
  */
3221
3221
  async searchBaseConfigSalesChannels(request) {
3222
- const response = await this.get(`/search/document-base-config-sales-channel`, {
3222
+ const response = await this.post(`/search/document-base-config-sales-channel`, {
3223
3223
  headers: { Accept: "application/json" },
3224
3224
  body: new JsonPayload(request)
3225
3225
  });
@@ -3303,7 +3303,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
3303
3303
  * @throws {Error} if the request failed
3304
3304
  */
3305
3305
  async searchDocumentTypes(request) {
3306
- const response = await this.get(`/search/document-type`, {
3306
+ const response = await this.post(`/search/document-type`, {
3307
3307
  headers: { Accept: "application/json" },
3308
3308
  body: new JsonPayload(request)
3309
3309
  });
@@ -3386,7 +3386,7 @@ class FlowClient extends Client {
3386
3386
  * @throws {Error} if the request failed
3387
3387
  */
3388
3388
  async searchFlows(request) {
3389
- const response = await this.get(`/search/flow`, {
3389
+ const response = await this.post(`/search/flow`, {
3390
3390
  headers: { Accept: "application/json" },
3391
3391
  body: new JsonPayload(request)
3392
3392
  });
@@ -3467,7 +3467,7 @@ class FlowClient extends Client {
3467
3467
  * @throws {Error} if the request failed
3468
3468
  */
3469
3469
  async searchFlowSequences(request) {
3470
- const response = await this.get(`/search/flow-sequence`, {
3470
+ const response = await this.post(`/search/flow-sequence`, {
3471
3471
  headers: { Accept: "application/json" },
3472
3472
  body: new JsonPayload(request)
3473
3473
  });
@@ -3548,7 +3548,7 @@ class FlowClient extends Client {
3548
3548
  * @throws {Error} if the request failed
3549
3549
  */
3550
3550
  async searchFlowTemplates(request) {
3551
- const response = await this.get(`/search/flow-template`, {
3551
+ const response = await this.post(`/search/flow-template`, {
3552
3552
  headers: { Accept: "application/json" },
3553
3553
  body: new JsonPayload(request)
3554
3554
  });
@@ -3631,7 +3631,7 @@ let DeliveryTimeClient$3 = class DeliveryTimeClient extends Client {
3631
3631
  * @throws {Error} if the request failed
3632
3632
  */
3633
3633
  async searchFiles(request) {
3634
- const response = await this.get(`/search/import-export-file`, {
3634
+ const response = await this.post(`/search/import-export-file`, {
3635
3635
  headers: { Accept: "application/json" },
3636
3636
  body: new JsonPayload(request)
3637
3637
  });
@@ -3711,7 +3711,7 @@ let DeliveryTimeClient$3 = class DeliveryTimeClient extends Client {
3711
3711
  * @throws {Error} if the request failed
3712
3712
  */
3713
3713
  async searchLogs(request) {
3714
- const response = await this.get(`/search/import-export-log`, {
3714
+ const response = await this.post(`/search/import-export-log`, {
3715
3715
  headers: { Accept: "application/json" },
3716
3716
  body: new JsonPayload(request)
3717
3717
  });
@@ -3792,7 +3792,7 @@ let DeliveryTimeClient$3 = class DeliveryTimeClient extends Client {
3792
3792
  * @throws {Error} if the request failed
3793
3793
  */
3794
3794
  async searchProfiles(request) {
3795
- const response = await this.get(`/search/import-export-profile`, {
3795
+ const response = await this.post(`/search/import-export-profile`, {
3796
3796
  headers: { Accept: "application/json" },
3797
3797
  body: new JsonPayload(request)
3798
3798
  });
@@ -3875,7 +3875,7 @@ class IntegrationClient extends Client {
3875
3875
  * @throws {Error} if the request failed
3876
3876
  */
3877
3877
  async searchIntegrations(request) {
3878
- const response = await this.get(`/search/integration`, {
3878
+ const response = await this.post(`/search/integration`, {
3879
3879
  headers: { Accept: "application/json" },
3880
3880
  body: new JsonPayload(request)
3881
3881
  });
@@ -3959,7 +3959,7 @@ class LocaleClient extends Client {
3959
3959
  * @throws {Error} if the request failed
3960
3960
  */
3961
3961
  async searchLocales(request) {
3962
- const response = await this.get(`/search/locale`, {
3962
+ const response = await this.post(`/search/locale`, {
3963
3963
  headers: { Accept: "application/json" },
3964
3964
  body: new JsonPayload(request)
3965
3965
  });
@@ -4040,7 +4040,7 @@ class LocaleClient extends Client {
4040
4040
  * @throws {Error} if the request failed
4041
4041
  */
4042
4042
  async searchLanguages(request) {
4043
- const response = await this.get(`/search/language`, {
4043
+ const response = await this.post(`/search/language`, {
4044
4044
  headers: { Accept: "application/json" },
4045
4045
  body: new JsonPayload(request)
4046
4046
  });
@@ -4158,7 +4158,7 @@ class MailClient extends Client {
4158
4158
  * @throws {Error} if the request failed
4159
4159
  */
4160
4160
  async searchHeaderFooters(request) {
4161
- const response = await this.get(`/search/header-footer`, {
4161
+ const response = await this.post(`/search/header-footer`, {
4162
4162
  headers: { Accept: "application/json" },
4163
4163
  body: new JsonPayload(request)
4164
4164
  });
@@ -4239,7 +4239,7 @@ class MailClient extends Client {
4239
4239
  * @throws {Error} if the request failed
4240
4240
  */
4241
4241
  async searchTemplates(request) {
4242
- const response = await this.get(`/search/template`, {
4242
+ const response = await this.post(`/search/template`, {
4243
4243
  headers: { Accept: "application/json" },
4244
4244
  body: new JsonPayload(request)
4245
4245
  });
@@ -4320,7 +4320,7 @@ class MailClient extends Client {
4320
4320
  * @throws {Error} if the request failed
4321
4321
  */
4322
4322
  async searchTemplateTypes(request) {
4323
- const response = await this.get(`/search/template-type`, {
4323
+ const response = await this.post(`/search/template-type`, {
4324
4324
  headers: { Accept: "application/json" },
4325
4325
  body: new JsonPayload(request)
4326
4326
  });
@@ -4431,7 +4431,7 @@ class MediaClient extends Client {
4431
4431
  * @throws {Error} if the request failed
4432
4432
  */
4433
4433
  async searchMedia(request) {
4434
- const response = await this.get(`/search/media`, {
4434
+ const response = await this.post(`/search/media`, {
4435
4435
  headers: { Accept: "application/json" },
4436
4436
  body: new JsonPayload(request)
4437
4437
  });
@@ -4512,7 +4512,7 @@ class MediaClient extends Client {
4512
4512
  * @throws {Error} if the request failed
4513
4513
  */
4514
4514
  async searchDefaultFolders(request) {
4515
- const response = await this.get(`/search/media-default-folder`, {
4515
+ const response = await this.post(`/search/media-default-folder`, {
4516
4516
  headers: { Accept: "application/json" },
4517
4517
  body: new JsonPayload(request)
4518
4518
  });
@@ -4593,7 +4593,7 @@ class MediaClient extends Client {
4593
4593
  * @throws {Error} if the request failed
4594
4594
  */
4595
4595
  async searchFolders(request) {
4596
- const response = await this.get(`/search/media-folder`, {
4596
+ const response = await this.post(`/search/media-folder`, {
4597
4597
  headers: { Accept: "application/json" },
4598
4598
  body: new JsonPayload(request)
4599
4599
  });
@@ -4674,7 +4674,7 @@ class MediaClient extends Client {
4674
4674
  * @throws {Error} if the request failed
4675
4675
  */
4676
4676
  async searchFolderConfigs(request) {
4677
- const response = await this.get(`/search/media-folder-configuration`, {
4677
+ const response = await this.post(`/search/media-folder-configuration`, {
4678
4678
  headers: { Accept: "application/json" },
4679
4679
  body: new JsonPayload(request)
4680
4680
  });
@@ -4755,7 +4755,7 @@ class MediaClient extends Client {
4755
4755
  * @throws {Error} if the request failed
4756
4756
  */
4757
4757
  async searchThumbnails(request) {
4758
- const response = await this.get(`/search/media-thumbnail`, {
4758
+ const response = await this.post(`/search/media-thumbnail`, {
4759
4759
  headers: { Accept: "application/json" },
4760
4760
  body: new JsonPayload(request)
4761
4761
  });
@@ -4836,7 +4836,7 @@ class MediaClient extends Client {
4836
4836
  * @throws {Error} if the request failed
4837
4837
  */
4838
4838
  async searchThumbnailSizes(request) {
4839
- const response = await this.get(`/search/media-thumbnail-size`, {
4839
+ const response = await this.post(`/search/media-thumbnail-size`, {
4840
4840
  headers: { Accept: "application/json" },
4841
4841
  body: new JsonPayload(request)
4842
4842
  });
@@ -4919,7 +4919,7 @@ let NewsletterClient$1 = class NewsletterClient extends Client {
4919
4919
  * @throws {Error} if the request failed
4920
4920
  */
4921
4921
  async searchRecipients(request) {
4922
- const response = await this.get(`/search/newsletter-recipient`, {
4922
+ const response = await this.post(`/search/newsletter-recipient`, {
4923
4923
  headers: { Accept: "application/json" },
4924
4924
  body: new JsonPayload(request)
4925
4925
  });
@@ -5003,7 +5003,7 @@ class NumberRangeClient extends Client {
5003
5003
  * @throws {Error} if the request failed
5004
5004
  */
5005
5005
  async searchRanges(request) {
5006
- const response = await this.get(`/search/number-range`, {
5006
+ const response = await this.post(`/search/number-range`, {
5007
5007
  headers: { Accept: "application/json" },
5008
5008
  body: new JsonPayload(request)
5009
5009
  });
@@ -5084,7 +5084,7 @@ class NumberRangeClient extends Client {
5084
5084
  * @throws {Error} if the request failed
5085
5085
  */
5086
5086
  async searchSalesChannels(request) {
5087
- const response = await this.get(`/search/number-range-sales-channel`, {
5087
+ const response = await this.post(`/search/number-range-sales-channel`, {
5088
5088
  headers: { Accept: "application/json" },
5089
5089
  body: new JsonPayload(request)
5090
5090
  });
@@ -5165,7 +5165,7 @@ class NumberRangeClient extends Client {
5165
5165
  * @throws {Error} if the request failed
5166
5166
  */
5167
5167
  async searchStates(request) {
5168
- const response = await this.get(`/search/number-range-state`, {
5168
+ const response = await this.post(`/search/number-range-state`, {
5169
5169
  headers: { Accept: "application/json" },
5170
5170
  body: new JsonPayload(request)
5171
5171
  });
@@ -5245,7 +5245,7 @@ class NumberRangeClient extends Client {
5245
5245
  * @throws {Error} if the request failed
5246
5246
  */
5247
5247
  async searchTypes(request) {
5248
- const response = await this.get(`/search/number-range-type`, {
5248
+ const response = await this.post(`/search/number-range-type`, {
5249
5249
  headers: { Accept: "application/json" },
5250
5250
  body: new JsonPayload(request)
5251
5251
  });
@@ -5423,7 +5423,7 @@ let OrderClient$1 = class OrderClient extends Client {
5423
5423
  * @throws {Error} if the request failed
5424
5424
  */
5425
5425
  async searchOrders(request) {
5426
- const response = await this.get(`/search/order`, {
5426
+ const response = await this.post(`/search/order`, {
5427
5427
  headers: { Accept: "application/json" },
5428
5428
  body: new JsonPayload(request)
5429
5429
  });
@@ -5504,7 +5504,7 @@ let OrderClient$1 = class OrderClient extends Client {
5504
5504
  * @throws {Error} if the request failed
5505
5505
  */
5506
5506
  async searchAddresses(request) {
5507
- const response = await this.get(`/search/order-address`, {
5507
+ const response = await this.post(`/search/order-address`, {
5508
5508
  headers: { Accept: "application/json" },
5509
5509
  body: new JsonPayload(request)
5510
5510
  });
@@ -5585,7 +5585,7 @@ let OrderClient$1 = class OrderClient extends Client {
5585
5585
  * @throws {Error} if the request failed
5586
5586
  */
5587
5587
  async searchCustomers(request) {
5588
- const response = await this.get(`/search/order-customer`, {
5588
+ const response = await this.post(`/search/order-customer`, {
5589
5589
  headers: { Accept: "application/json" },
5590
5590
  body: new JsonPayload(request)
5591
5591
  });
@@ -5666,7 +5666,7 @@ let OrderClient$1 = class OrderClient extends Client {
5666
5666
  * @throws {Error} if the request failed
5667
5667
  */
5668
5668
  async searchDeliveries(request) {
5669
- const response = await this.get(`/search/order-delivery`, {
5669
+ const response = await this.post(`/search/order-delivery`, {
5670
5670
  headers: { Accept: "application/json" },
5671
5671
  body: new JsonPayload(request)
5672
5672
  });
@@ -5747,7 +5747,7 @@ let OrderClient$1 = class OrderClient extends Client {
5747
5747
  * @throws {Error} if the request failed
5748
5748
  */
5749
5749
  async searchDeliveryPositions(request) {
5750
- const response = await this.get(`/search/order-delivery-position`, {
5750
+ const response = await this.post(`/search/order-delivery-position`, {
5751
5751
  headers: { Accept: "application/json" },
5752
5752
  body: new JsonPayload(request)
5753
5753
  });
@@ -5828,7 +5828,7 @@ let OrderClient$1 = class OrderClient extends Client {
5828
5828
  * @throws {Error} if the request failed
5829
5829
  */
5830
5830
  async searchLineItems(request) {
5831
- const response = await this.get(`/search/order-line-item`, {
5831
+ const response = await this.post(`/search/order-line-item`, {
5832
5832
  headers: { Accept: "application/json" },
5833
5833
  body: new JsonPayload(request)
5834
5834
  });
@@ -5909,7 +5909,7 @@ let OrderClient$1 = class OrderClient extends Client {
5909
5909
  * @throws {Error} if the request failed
5910
5910
  */
5911
5911
  async searchLineItemDownloads(request) {
5912
- const response = await this.get(`/search/order-line-item-download`, {
5912
+ const response = await this.post(`/search/order-line-item-download`, {
5913
5913
  headers: { Accept: "application/json" },
5914
5914
  body: new JsonPayload(request)
5915
5915
  });
@@ -5990,7 +5990,7 @@ let OrderClient$1 = class OrderClient extends Client {
5990
5990
  * @throws {Error} if the request failed
5991
5991
  */
5992
5992
  async searchTransactions(request) {
5993
- const response = await this.get(`/search/order-transaction`, {
5993
+ const response = await this.post(`/search/order-transaction`, {
5994
5994
  headers: { Accept: "application/json" },
5995
5995
  body: new JsonPayload(request)
5996
5996
  });
@@ -6071,7 +6071,7 @@ let OrderClient$1 = class OrderClient extends Client {
6071
6071
  * @throws {Error} if the request failed
6072
6072
  */
6073
6073
  async searchTransactionCaptures(request) {
6074
- const response = await this.get(`/search/order-transaction-capture`, {
6074
+ const response = await this.post(`/search/order-transaction-capture`, {
6075
6075
  headers: { Accept: "application/json" },
6076
6076
  body: new JsonPayload(request)
6077
6077
  });
@@ -6152,7 +6152,7 @@ let OrderClient$1 = class OrderClient extends Client {
6152
6152
  * @throws {Error} if the request failed
6153
6153
  */
6154
6154
  async searchTransactionCaptureRefunds(request) {
6155
- const response = await this.get(`/search/order-transaction-capture-refund`, {
6155
+ const response = await this.post(`/search/order-transaction-capture-refund`, {
6156
6156
  headers: { Accept: "application/json" },
6157
6157
  body: new JsonPayload(request)
6158
6158
  });
@@ -6236,7 +6236,7 @@ let OrderClient$1 = class OrderClient extends Client {
6236
6236
  * @throws {Error} if the request failed
6237
6237
  */
6238
6238
  async searchTransactionCaptureRefundPositions(request) {
6239
- const response = await this.get(`/search/order-transaction-capture-refund-position`, {
6239
+ const response = await this.post(`/search/order-transaction-capture-refund-position`, {
6240
6240
  headers: { Accept: "application/json" },
6241
6241
  body: new JsonPayload(request)
6242
6242
  });
@@ -6322,7 +6322,7 @@ class PaymentMethodClient extends Client {
6322
6322
  * @throws {Error} if the request failed
6323
6323
  */
6324
6324
  async searchPaymentMethods(request) {
6325
- const response = await this.get(`/search/payment-method`, {
6325
+ const response = await this.post(`/search/payment-method`, {
6326
6326
  headers: { Accept: "application/json" },
6327
6327
  body: new JsonPayload(request)
6328
6328
  });
@@ -6405,7 +6405,7 @@ class PluginClient extends Client {
6405
6405
  * @throws {Error} if the request failed
6406
6406
  */
6407
6407
  async searchPlugins(request) {
6408
- const response = await this.get(`/search/plugin`, {
6408
+ const response = await this.post(`/search/plugin`, {
6409
6409
  headers: { Accept: "application/json" },
6410
6410
  body: new JsonPayload(request)
6411
6411
  });
@@ -6489,7 +6489,7 @@ let ProductClient$1 = class ProductClient extends Client {
6489
6489
  * @throws {Error} if the request failed
6490
6490
  */
6491
6491
  async searchProducts(request) {
6492
- const response = await this.get(`/search/product`, {
6492
+ const response = await this.post(`/search/product`, {
6493
6493
  headers: { Accept: "application/json" },
6494
6494
  body: new JsonPayload(request)
6495
6495
  });
@@ -6570,7 +6570,7 @@ let ProductClient$1 = class ProductClient extends Client {
6570
6570
  * @throws {Error} if the request failed
6571
6571
  */
6572
6572
  async searchConfiguratorSettings(request) {
6573
- const response = await this.get(`/search/product-configurator-setting`, {
6573
+ const response = await this.post(`/search/product-configurator-setting`, {
6574
6574
  headers: { Accept: "application/json" },
6575
6575
  body: new JsonPayload(request)
6576
6576
  });
@@ -6651,7 +6651,7 @@ let ProductClient$1 = class ProductClient extends Client {
6651
6651
  * @throws {Error} if the request failed
6652
6652
  */
6653
6653
  async searchCrossSellings(request) {
6654
- const response = await this.get(`/search/product-cross-selling`, {
6654
+ const response = await this.post(`/search/product-cross-selling`, {
6655
6655
  headers: { Accept: "application/json" },
6656
6656
  body: new JsonPayload(request)
6657
6657
  });
@@ -6732,7 +6732,7 @@ let ProductClient$1 = class ProductClient extends Client {
6732
6732
  * @throws {Error} if the request failed
6733
6733
  */
6734
6734
  async searchCrossSellingAssignedProducts(request) {
6735
- const response = await this.get(`/search/product-cross-selling-assigned-product`, {
6735
+ const response = await this.post(`/search/product-cross-selling-assigned-product`, {
6736
6736
  headers: { Accept: "application/json" },
6737
6737
  body: new JsonPayload(request)
6738
6738
  });
@@ -6816,7 +6816,7 @@ let ProductClient$1 = class ProductClient extends Client {
6816
6816
  * @throws {Error} if the request failed
6817
6817
  */
6818
6818
  async searchDownloads(request) {
6819
- const response = await this.get(`/search/product-download`, {
6819
+ const response = await this.post(`/search/product-download`, {
6820
6820
  headers: { Accept: "application/json" },
6821
6821
  body: new JsonPayload(request)
6822
6822
  });
@@ -6897,7 +6897,7 @@ let ProductClient$1 = class ProductClient extends Client {
6897
6897
  * @throws {Error} if the request failed
6898
6898
  */
6899
6899
  async searchExports(request) {
6900
- const response = await this.get(`/search/product-export`, {
6900
+ const response = await this.post(`/search/product-export`, {
6901
6901
  headers: { Accept: "application/json" },
6902
6902
  body: new JsonPayload(request)
6903
6903
  });
@@ -6978,7 +6978,7 @@ let ProductClient$1 = class ProductClient extends Client {
6978
6978
  * @throws {Error} if the request failed
6979
6979
  */
6980
6980
  async searchFeatureSets(request) {
6981
- const response = await this.get(`/search/product-feature-set`, {
6981
+ const response = await this.post(`/search/product-feature-set`, {
6982
6982
  headers: { Accept: "application/json" },
6983
6983
  body: new JsonPayload(request)
6984
6984
  });
@@ -7059,7 +7059,7 @@ let ProductClient$1 = class ProductClient extends Client {
7059
7059
  * @throws {Error} if the request failed
7060
7060
  */
7061
7061
  async searchKeywordDictionaries(request) {
7062
- const response = await this.get(`/search/product-keyword-dictionary`, {
7062
+ const response = await this.post(`/search/product-keyword-dictionary`, {
7063
7063
  headers: { Accept: "application/json" },
7064
7064
  body: new JsonPayload(request)
7065
7065
  });
@@ -7140,7 +7140,7 @@ let ProductClient$1 = class ProductClient extends Client {
7140
7140
  * @throws {Error} if the request failed
7141
7141
  */
7142
7142
  async searchManufacturers(request) {
7143
- const response = await this.get(`/search/product-manufacturer`, {
7143
+ const response = await this.post(`/search/product-manufacturer`, {
7144
7144
  headers: { Accept: "application/json" },
7145
7145
  body: new JsonPayload(request)
7146
7146
  });
@@ -7221,7 +7221,7 @@ let ProductClient$1 = class ProductClient extends Client {
7221
7221
  * @throws {Error} if the request failed
7222
7222
  */
7223
7223
  async searchMedia(request) {
7224
- const response = await this.get(`/search/product-media`, {
7224
+ const response = await this.post(`/search/product-media`, {
7225
7225
  headers: { Accept: "application/json" },
7226
7226
  body: new JsonPayload(request)
7227
7227
  });
@@ -7302,7 +7302,7 @@ let ProductClient$1 = class ProductClient extends Client {
7302
7302
  * @throws {Error} if the request failed
7303
7303
  */
7304
7304
  async searchPrices(request) {
7305
- const response = await this.get(`/search/product-price`, {
7305
+ const response = await this.post(`/search/product-price`, {
7306
7306
  headers: { Accept: "application/json" },
7307
7307
  body: new JsonPayload(request)
7308
7308
  });
@@ -7383,7 +7383,7 @@ let ProductClient$1 = class ProductClient extends Client {
7383
7383
  * @throws {Error} if the request failed
7384
7384
  */
7385
7385
  async searchReviews(request) {
7386
- const response = await this.get(`/search/product-review`, {
7386
+ const response = await this.post(`/search/product-review`, {
7387
7387
  headers: { Accept: "application/json" },
7388
7388
  body: new JsonPayload(request)
7389
7389
  });
@@ -7464,7 +7464,7 @@ let ProductClient$1 = class ProductClient extends Client {
7464
7464
  * @throws {Error} if the request failed
7465
7465
  */
7466
7466
  async searchSearchConfigs(request) {
7467
- const response = await this.get(`/search/product-search-config`, {
7467
+ const response = await this.post(`/search/product-search-config`, {
7468
7468
  headers: { Accept: "application/json" },
7469
7469
  body: new JsonPayload(request)
7470
7470
  });
@@ -7545,7 +7545,7 @@ let ProductClient$1 = class ProductClient extends Client {
7545
7545
  * @throws {Error} if the request failed
7546
7546
  */
7547
7547
  async searchSearchConfigFields(request) {
7548
- const response = await this.get(`/search/product-search-config-field`, {
7548
+ const response = await this.post(`/search/product-search-config-field`, {
7549
7549
  headers: { Accept: "application/json" },
7550
7550
  body: new JsonPayload(request)
7551
7551
  });
@@ -7626,7 +7626,7 @@ let ProductClient$1 = class ProductClient extends Client {
7626
7626
  * @throws {Error} if the request failed
7627
7627
  */
7628
7628
  async searchSearchKeywords(request) {
7629
- const response = await this.get(`/search/product-search-keyword`, {
7629
+ const response = await this.post(`/search/product-search-keyword`, {
7630
7630
  headers: { Accept: "application/json" },
7631
7631
  body: new JsonPayload(request)
7632
7632
  });
@@ -7707,7 +7707,7 @@ let ProductClient$1 = class ProductClient extends Client {
7707
7707
  * @throws {Error} if the request failed
7708
7708
  */
7709
7709
  async searchSortings(request) {
7710
- const response = await this.get(`/search/product-sorting`, {
7710
+ const response = await this.post(`/search/product-sorting`, {
7711
7711
  headers: { Accept: "application/json" },
7712
7712
  body: new JsonPayload(request)
7713
7713
  });
@@ -7788,7 +7788,7 @@ let ProductClient$1 = class ProductClient extends Client {
7788
7788
  * @throws {Error} if the request failed
7789
7789
  */
7790
7790
  async searchStreams(request) {
7791
- const response = await this.get(`/search/product-stream`, {
7791
+ const response = await this.post(`/search/product-stream`, {
7792
7792
  headers: { Accept: "application/json" },
7793
7793
  body: new JsonPayload(request)
7794
7794
  });
@@ -7869,7 +7869,7 @@ let ProductClient$1 = class ProductClient extends Client {
7869
7869
  * @throws {Error} if the request failed
7870
7870
  */
7871
7871
  async searchStreamFilters(request) {
7872
- const response = await this.get(`/search/product-stream-filter`, {
7872
+ const response = await this.post(`/search/product-stream-filter`, {
7873
7873
  headers: { Accept: "application/json" },
7874
7874
  body: new JsonPayload(request)
7875
7875
  });
@@ -7950,7 +7950,7 @@ let ProductClient$1 = class ProductClient extends Client {
7950
7950
  * @throws {Error} if the request failed
7951
7951
  */
7952
7952
  async searchVisibilities(request) {
7953
- const response = await this.get(`/search/product-visibility`, {
7953
+ const response = await this.post(`/search/product-visibility`, {
7954
7954
  headers: { Accept: "application/json" },
7955
7955
  body: new JsonPayload(request)
7956
7956
  });
@@ -8034,7 +8034,7 @@ class PromotionClient extends Client {
8034
8034
  * @throws {Error} if the request failed
8035
8035
  */
8036
8036
  async searchPromotions(request) {
8037
- const response = await this.get(`/search/promotion`, {
8037
+ const response = await this.post(`/search/promotion`, {
8038
8038
  headers: { Accept: "application/json" },
8039
8039
  body: new JsonPayload(request)
8040
8040
  });
@@ -8115,7 +8115,7 @@ class PromotionClient extends Client {
8115
8115
  * @throws {Error} if the request failed
8116
8116
  */
8117
8117
  async searchDiscounts(request) {
8118
- const response = await this.get(`/search/promotion-discount`, {
8118
+ const response = await this.post(`/search/promotion-discount`, {
8119
8119
  headers: { Accept: "application/json" },
8120
8120
  body: new JsonPayload(request)
8121
8121
  });
@@ -8196,7 +8196,7 @@ class PromotionClient extends Client {
8196
8196
  * @throws {Error} if the request failed
8197
8197
  */
8198
8198
  async searchDiscountPrices(request) {
8199
- const response = await this.get(`/search/promotion-discount-price`, {
8199
+ const response = await this.post(`/search/promotion-discount-price`, {
8200
8200
  headers: { Accept: "application/json" },
8201
8201
  body: new JsonPayload(request)
8202
8202
  });
@@ -8277,7 +8277,7 @@ class PromotionClient extends Client {
8277
8277
  * @throws {Error} if the request failed
8278
8278
  */
8279
8279
  async searchIndividualCodes(request) {
8280
- const response = await this.get(`/search/promotion-individual-code`, {
8280
+ const response = await this.post(`/search/promotion-individual-code`, {
8281
8281
  headers: { Accept: "application/json" },
8282
8282
  body: new JsonPayload(request)
8283
8283
  });
@@ -8358,7 +8358,7 @@ class PromotionClient extends Client {
8358
8358
  * @throws {Error} if the request failed
8359
8359
  */
8360
8360
  async searchSalesChannels(request) {
8361
- const response = await this.get(`/search/promotion-sales-channel`, {
8361
+ const response = await this.post(`/search/promotion-sales-channel`, {
8362
8362
  headers: { Accept: "application/json" },
8363
8363
  body: new JsonPayload(request)
8364
8364
  });
@@ -8439,7 +8439,7 @@ class PromotionClient extends Client {
8439
8439
  * @throws {Error} if the request failed
8440
8440
  */
8441
8441
  async searchSetGroups(request) {
8442
- const response = await this.get(`/search/promotion-setgroup`, {
8442
+ const response = await this.post(`/search/promotion-setgroup`, {
8443
8443
  headers: { Accept: "application/json" },
8444
8444
  body: new JsonPayload(request)
8445
8445
  });
@@ -8523,7 +8523,7 @@ class PropertyGroupClient extends Client {
8523
8523
  * @throws {Error} if the request failed
8524
8524
  */
8525
8525
  async searchPropertyGroups(request) {
8526
- const response = await this.get(`/search/property-group`, {
8526
+ const response = await this.post(`/search/property-group`, {
8527
8527
  headers: { Accept: "application/json" },
8528
8528
  body: new JsonPayload(request)
8529
8529
  });
@@ -8604,7 +8604,7 @@ class PropertyGroupClient extends Client {
8604
8604
  * @throws {Error} if the request failed
8605
8605
  */
8606
8606
  async searchOptions(request) {
8607
- const response = await this.get(`/search/property-group-option`, {
8607
+ const response = await this.post(`/search/property-group-option`, {
8608
8608
  headers: { Accept: "application/json" },
8609
8609
  body: new JsonPayload(request)
8610
8610
  });
@@ -8687,7 +8687,7 @@ class RuleClient extends Client {
8687
8687
  * @throws {Error} if the request failed
8688
8688
  */
8689
8689
  async searchRules(request) {
8690
- const response = await this.get(`/search/rule`, {
8690
+ const response = await this.post(`/search/rule`, {
8691
8691
  headers: { Accept: "application/json" },
8692
8692
  body: new JsonPayload(request)
8693
8693
  });
@@ -8768,7 +8768,7 @@ class RuleClient extends Client {
8768
8768
  * @throws {Error} if the request failed
8769
8769
  */
8770
8770
  async searchConditions(request) {
8771
- const response = await this.get(`/search/rule-condition`, {
8771
+ const response = await this.post(`/search/rule-condition`, {
8772
8772
  headers: { Accept: "application/json" },
8773
8773
  body: new JsonPayload(request)
8774
8774
  });
@@ -8852,7 +8852,7 @@ class SalesChannelClient extends Client {
8852
8852
  * @throws {Error} if the request failed
8853
8853
  */
8854
8854
  async searchSalesChannels(request) {
8855
- const response = await this.get(`/search/sales-channel`, {
8855
+ const response = await this.post(`/search/sales-channel`, {
8856
8856
  headers: { Accept: "application/json" },
8857
8857
  body: new JsonPayload(request)
8858
8858
  });
@@ -8933,7 +8933,7 @@ class SalesChannelClient extends Client {
8933
8933
  * @throws {Error} if the request failed
8934
8934
  */
8935
8935
  async searchAnalytics(request) {
8936
- const response = await this.get(`/search/sales-channel-analytics`, {
8936
+ const response = await this.post(`/search/sales-channel-analytics`, {
8937
8937
  headers: { Accept: "application/json" },
8938
8938
  body: new JsonPayload(request)
8939
8939
  });
@@ -9014,7 +9014,7 @@ class SalesChannelClient extends Client {
9014
9014
  * @throws {Error} if the request failed
9015
9015
  */
9016
9016
  async searchDomains(request) {
9017
- const response = await this.get(`/search/sales-channel-domain`, {
9017
+ const response = await this.post(`/search/sales-channel-domain`, {
9018
9018
  headers: { Accept: "application/json" },
9019
9019
  body: new JsonPayload(request)
9020
9020
  });
@@ -9094,7 +9094,7 @@ class SalesChannelClient extends Client {
9094
9094
  * @throws {Error} if the request failed
9095
9095
  */
9096
9096
  async searchTypes(request) {
9097
- const response = await this.get(`/search/sales-channel-type`, {
9097
+ const response = await this.post(`/search/sales-channel-type`, {
9098
9098
  headers: { Accept: "application/json" },
9099
9099
  body: new JsonPayload(request)
9100
9100
  });
@@ -9177,7 +9177,7 @@ class SalutationClient extends Client {
9177
9177
  * @throws {Error} if the request failed
9178
9178
  */
9179
9179
  async searchSalutations(request) {
9180
- const response = await this.get(`/search/salutation`, {
9180
+ const response = await this.post(`/search/salutation`, {
9181
9181
  headers: { Accept: "application/json" },
9182
9182
  body: new JsonPayload(request)
9183
9183
  });
@@ -9260,7 +9260,7 @@ class ScriptClient extends Client {
9260
9260
  * @throws {Error} if the request failed
9261
9261
  */
9262
9262
  async searchScripts(request) {
9263
- const response = await this.get(`/search/script`, {
9263
+ const response = await this.post(`/search/script`, {
9264
9264
  headers: { Accept: "application/json" },
9265
9265
  body: new JsonPayload(request)
9266
9266
  });
@@ -9343,7 +9343,7 @@ class SecurityClient extends Client {
9343
9343
  * @throws {Error} if the request failed
9344
9344
  */
9345
9345
  async searchAclRoles(request) {
9346
- const response = await this.get(`/search/acl-role`, {
9346
+ const response = await this.post(`/search/acl-role`, {
9347
9347
  headers: { Accept: "application/json" },
9348
9348
  body: new JsonPayload(request)
9349
9349
  });
@@ -9426,7 +9426,7 @@ let DeliveryTimeClient$2 = class DeliveryTimeClient extends Client {
9426
9426
  * @throws {Error} if the request failed
9427
9427
  */
9428
9428
  async searchUrls(request) {
9429
- const response = await this.get(`/search/seo-url`, {
9429
+ const response = await this.post(`/search/seo-url`, {
9430
9430
  headers: { Accept: "application/json" },
9431
9431
  body: new JsonPayload(request)
9432
9432
  });
@@ -9507,7 +9507,7 @@ let DeliveryTimeClient$2 = class DeliveryTimeClient extends Client {
9507
9507
  * @throws {Error} if the request failed
9508
9508
  */
9509
9509
  async searchUrlTemplates(request) {
9510
- const response = await this.get(`/search/seo-url-template`, {
9510
+ const response = await this.post(`/search/seo-url-template`, {
9511
9511
  headers: { Accept: "application/json" },
9512
9512
  body: new JsonPayload(request)
9513
9513
  });
@@ -9591,7 +9591,7 @@ class ShippingMethodClient extends Client {
9591
9591
  * @throws {Error} if the request failed
9592
9592
  */
9593
9593
  async searchShippingMethods(request) {
9594
- const response = await this.get(`/search/shipping-method`, {
9594
+ const response = await this.post(`/search/shipping-method`, {
9595
9595
  headers: { Accept: "application/json" },
9596
9596
  body: new JsonPayload(request)
9597
9597
  });
@@ -9672,7 +9672,7 @@ class ShippingMethodClient extends Client {
9672
9672
  * @throws {Error} if the request failed
9673
9673
  */
9674
9674
  async searchPrices(request) {
9675
- const response = await this.get(`/search/shipping-method-price`, {
9675
+ const response = await this.post(`/search/shipping-method-price`, {
9676
9676
  headers: { Accept: "application/json" },
9677
9677
  body: new JsonPayload(request)
9678
9678
  });
@@ -9756,7 +9756,7 @@ let DeliveryTimeClient$1 = class DeliveryTimeClient extends Client {
9756
9756
  * @throws {Error} if the request failed
9757
9757
  */
9758
9758
  async searchSnippets(request) {
9759
- const response = await this.get(`/search/snippet`, {
9759
+ const response = await this.post(`/search/snippet`, {
9760
9760
  headers: { Accept: "application/json" },
9761
9761
  body: new JsonPayload(request)
9762
9762
  });
@@ -9836,7 +9836,7 @@ let DeliveryTimeClient$1 = class DeliveryTimeClient extends Client {
9836
9836
  * @throws {Error} if the request failed
9837
9837
  */
9838
9838
  async searchSets(request) {
9839
- const response = await this.get(`/search/snippet-set`, {
9839
+ const response = await this.post(`/search/snippet-set`, {
9840
9840
  headers: { Accept: "application/json" },
9841
9841
  body: new JsonPayload(request)
9842
9842
  });
@@ -9920,7 +9920,7 @@ class DeliveryTimeClient extends Client {
9920
9920
  * @throws {Error} if the request failed
9921
9921
  */
9922
9922
  async searchStateMachines(request) {
9923
- const response = await this.get(`/search/state-machine`, {
9923
+ const response = await this.post(`/search/state-machine`, {
9924
9924
  headers: { Accept: "application/json" },
9925
9925
  body: new JsonPayload(request)
9926
9926
  });
@@ -10001,7 +10001,7 @@ class DeliveryTimeClient extends Client {
10001
10001
  * @throws {Error} if the request failed
10002
10002
  */
10003
10003
  async searchStates(request) {
10004
- const response = await this.get(`/search/state-machine-state`, {
10004
+ const response = await this.post(`/search/state-machine-state`, {
10005
10005
  headers: { Accept: "application/json" },
10006
10006
  body: new JsonPayload(request)
10007
10007
  });
@@ -10082,7 +10082,7 @@ class DeliveryTimeClient extends Client {
10082
10082
  * @throws {Error} if the request failed
10083
10083
  */
10084
10084
  async searchTransitions(request) {
10085
- const response = await this.get(`/search/state-machine-transition`, {
10085
+ const response = await this.post(`/search/state-machine-transition`, {
10086
10086
  headers: { Accept: "application/json" },
10087
10087
  body: new JsonPayload(request)
10088
10088
  });
@@ -10333,7 +10333,7 @@ let SystemClient$1 = class SystemClient extends Client {
10333
10333
  * @throws {Error} if the request failed
10334
10334
  */
10335
10335
  async searchLogEntries(request) {
10336
- const response = await this.get(`/search/log-entry`, {
10336
+ const response = await this.post(`/search/log-entry`, {
10337
10337
  headers: { Accept: "application/json" },
10338
10338
  body: new JsonPayload(request)
10339
10339
  });
@@ -10414,7 +10414,7 @@ let SystemClient$1 = class SystemClient extends Client {
10414
10414
  * @throws {Error} if the request failed
10415
10415
  */
10416
10416
  async searchNotifications(request) {
10417
- const response = await this.get(`/search/notification`, {
10417
+ const response = await this.post(`/search/notification`, {
10418
10418
  headers: { Accept: "application/json" },
10419
10419
  body: new JsonPayload(request)
10420
10420
  });
@@ -10495,7 +10495,7 @@ let SystemClient$1 = class SystemClient extends Client {
10495
10495
  * @throws {Error} if the request failed
10496
10496
  */
10497
10497
  async searchConfigEntries(request) {
10498
- const response = await this.get(`/search/system-config`, {
10498
+ const response = await this.post(`/search/system-config`, {
10499
10499
  headers: { Accept: "application/json" },
10500
10500
  body: new JsonPayload(request)
10501
10501
  });
@@ -10576,7 +10576,7 @@ let SystemClient$1 = class SystemClient extends Client {
10576
10576
  * @throws {Error} if the request failed
10577
10577
  */
10578
10578
  async searchScheduledTasks(request) {
10579
- const response = await this.get(`/search/scheduled-task`, {
10579
+ const response = await this.post(`/search/scheduled-task`, {
10580
10580
  headers: { Accept: "application/json" },
10581
10581
  body: new JsonPayload(request)
10582
10582
  });
@@ -10658,7 +10658,7 @@ class TagClient extends Client {
10658
10658
  * @throws {Error} if the request failed
10659
10659
  */
10660
10660
  async searchTags(request) {
10661
- const response = await this.get(`/search/tag`, {
10661
+ const response = await this.post(`/search/tag`, {
10662
10662
  headers: { Accept: "application/json" },
10663
10663
  body: new JsonPayload(request)
10664
10664
  });
@@ -10741,7 +10741,7 @@ class TaxClient extends Client {
10741
10741
  * @throws {Error} if the request failed
10742
10742
  */
10743
10743
  async searchTaxes(request) {
10744
- const response = await this.get(`/search/tax`, {
10744
+ const response = await this.post(`/search/tax`, {
10745
10745
  headers: { Accept: "application/json" },
10746
10746
  body: new JsonPayload(request)
10747
10747
  });
@@ -10822,7 +10822,7 @@ class TaxClient extends Client {
10822
10822
  * @throws {Error} if the request failed
10823
10823
  */
10824
10824
  async searchProviders(request) {
10825
- const response = await this.get(`/search/tax-provider`, {
10825
+ const response = await this.post(`/search/tax-provider`, {
10826
10826
  headers: { Accept: "application/json" },
10827
10827
  body: new JsonPayload(request)
10828
10828
  });
@@ -10902,7 +10902,7 @@ class TaxClient extends Client {
10902
10902
  * @throws {Error} if the request failed
10903
10903
  */
10904
10904
  async searchRules(request) {
10905
- const response = await this.get(`/search/tax-rule`, {
10905
+ const response = await this.post(`/search/tax-rule`, {
10906
10906
  headers: { Accept: "application/json" },
10907
10907
  body: new JsonPayload(request)
10908
10908
  });
@@ -10983,7 +10983,7 @@ class TaxClient extends Client {
10983
10983
  * @throws {Error} if the request failed
10984
10984
  */
10985
10985
  async searchRuleTypes(request) {
10986
- const response = await this.get(`/search/tax-rule-type`, {
10986
+ const response = await this.post(`/search/tax-rule-type`, {
10987
10987
  headers: { Accept: "application/json" },
10988
10988
  body: new JsonPayload(request)
10989
10989
  });
@@ -11065,7 +11065,7 @@ class UnitClient extends Client {
11065
11065
  * @throws {Error} if the request failed
11066
11066
  */
11067
11067
  async searchUnits(request) {
11068
- const response = await this.get(`/search/unit`, {
11068
+ const response = await this.post(`/search/unit`, {
11069
11069
  headers: { Accept: "application/json" },
11070
11070
  body: new JsonPayload(request)
11071
11071
  });
@@ -11148,7 +11148,7 @@ class UserClient extends Client {
11148
11148
  * @throws {Error} if the request failed
11149
11149
  */
11150
11150
  async searchUsers(request) {
11151
- const response = await this.get(`/search/user`, {
11151
+ const response = await this.post(`/search/user`, {
11152
11152
  headers: { Accept: "application/json" },
11153
11153
  body: new JsonPayload(request)
11154
11154
  });
@@ -11229,7 +11229,7 @@ class UserClient extends Client {
11229
11229
  * @throws {Error} if the request failed
11230
11230
  */
11231
11231
  async searchAccessKeys(request) {
11232
- const response = await this.get(`/search/user-access-key`, {
11232
+ const response = await this.post(`/search/user-access-key`, {
11233
11233
  headers: { Accept: "application/json" },
11234
11234
  body: new JsonPayload(request)
11235
11235
  });
@@ -11310,7 +11310,7 @@ class UserClient extends Client {
11310
11310
  * @throws {Error} if the request failed
11311
11311
  */
11312
11312
  async searchConfigs(request) {
11313
- const response = await this.get(`/search/user-config`, {
11313
+ const response = await this.post(`/search/user-config`, {
11314
11314
  headers: { Accept: "application/json" },
11315
11315
  body: new JsonPayload(request)
11316
11316
  });
@@ -11391,7 +11391,7 @@ class UserClient extends Client {
11391
11391
  * @throws {Error} if the request failed
11392
11392
  */
11393
11393
  async searchRecoveries(request) {
11394
- const response = await this.get(`/search/user-recovery`, {
11394
+ const response = await this.post(`/search/user-recovery`, {
11395
11395
  headers: { Accept: "application/json" },
11396
11396
  body: new JsonPayload(request)
11397
11397
  });
@@ -11475,7 +11475,7 @@ class WebhookClient extends Client {
11475
11475
  * @throws {Error} if the request failed
11476
11476
  */
11477
11477
  async searchWebhooks(request) {
11478
- const response = await this.get(`/search/webhook`, {
11478
+ const response = await this.post(`/search/webhook`, {
11479
11479
  headers: { Accept: "application/json" },
11480
11480
  body: new JsonPayload(request)
11481
11481
  });
@@ -11556,7 +11556,7 @@ class WebhookClient extends Client {
11556
11556
  * @throws {Error} if the request failed
11557
11557
  */
11558
11558
  async searchEventLogs(request) {
11559
- const response = await this.get(`/search/webhook-event-log`, {
11559
+ const response = await this.post(`/search/webhook-event-log`, {
11560
11560
  headers: { Accept: "application/json" },
11561
11561
  body: new JsonPayload(request)
11562
11562
  });
@@ -12765,4 +12765,4 @@ class StoreShopwareClient extends ShopwareClient {
12765
12765
  }
12766
12766
  }
12767
12767
 
12768
- export { AdminShopwareClient, ShopwareClient, ShopwareError, StoreShopwareClient };
12768
+ export { AdminShopwareClient, BinaryPayload, HTTPRequestMethod, HtmlPayload, JsonPayload, Payload, ShopwareClient, ShopwareError, StoreShopwareClient };