@devite/shopware-client 1.3.1 → 1.3.3
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.cjs +139 -134
- package/dist/index.d.cts +106 -69
- package/dist/index.d.mts +106 -69
- package/dist/index.d.ts +106 -69
- package/dist/index.mjs +135 -135
- package/dist/types/api/admin/product/Product.d.ts +1 -2
- package/dist/types/api/global/aggregation/Aggregation.d.ts +1 -1
- package/dist/types/api/global/aggregation/AggregationTerms.d.ts +2 -0
- package/dist/types/api/global/filter/EqualsFilter.d.ts +1 -1
- package/dist/types/api/global/filter/RangeFilter.d.ts +2 -2
- package/dist/types/api/global/query/Criteria.d.ts +1 -1
- package/dist/types/api/store/product/Product.d.ts +1 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -308,7 +308,7 @@ class AppClient extends Client {
|
|
|
308
308
|
* @throws {Error} if the request failed
|
|
309
309
|
*/
|
|
310
310
|
async searchApps(request) {
|
|
311
|
-
const response = await this.
|
|
311
|
+
const response = await this.post(`/search/app`, {
|
|
312
312
|
headers: { Accept: "application/json" },
|
|
313
313
|
body: new JsonPayload(request)
|
|
314
314
|
});
|
|
@@ -389,7 +389,7 @@ class AppClient extends Client {
|
|
|
389
389
|
* @throws {Error} if the request failed
|
|
390
390
|
*/
|
|
391
391
|
async searchActionButtons(request) {
|
|
392
|
-
const response = await this.
|
|
392
|
+
const response = await this.post(`/search/app-action-button`, {
|
|
393
393
|
headers: { Accept: "application/json" },
|
|
394
394
|
body: new JsonPayload(request)
|
|
395
395
|
});
|
|
@@ -470,7 +470,7 @@ class AppClient extends Client {
|
|
|
470
470
|
* @throws {Error} if the request failed
|
|
471
471
|
*/
|
|
472
472
|
async searchAdminSnippets(request) {
|
|
473
|
-
const response = await this.
|
|
473
|
+
const response = await this.post(`/search/app-administration-snippet`, {
|
|
474
474
|
headers: { Accept: "application/json" },
|
|
475
475
|
body: new JsonPayload(request)
|
|
476
476
|
});
|
|
@@ -551,7 +551,7 @@ class AppClient extends Client {
|
|
|
551
551
|
* @throws {Error} if the request failed
|
|
552
552
|
*/
|
|
553
553
|
async searchCmsBlocks(request) {
|
|
554
|
-
const response = await this.
|
|
554
|
+
const response = await this.post(`/search/app-cms-block`, {
|
|
555
555
|
headers: { Accept: "application/json" },
|
|
556
556
|
body: new JsonPayload(request)
|
|
557
557
|
});
|
|
@@ -632,7 +632,7 @@ class AppClient extends Client {
|
|
|
632
632
|
* @throws {Error} if the request failed
|
|
633
633
|
*/
|
|
634
634
|
async searchFlowActions(request) {
|
|
635
|
-
const response = await this.
|
|
635
|
+
const response = await this.post(`/search/app-flow-action`, {
|
|
636
636
|
headers: { Accept: "application/json" },
|
|
637
637
|
body: new JsonPayload(request)
|
|
638
638
|
});
|
|
@@ -713,7 +713,7 @@ class AppClient extends Client {
|
|
|
713
713
|
* @throws {Error} if the request failed
|
|
714
714
|
*/
|
|
715
715
|
async searchFlowEvents(request) {
|
|
716
|
-
const response = await this.
|
|
716
|
+
const response = await this.post(`/search/app-flow-event`, {
|
|
717
717
|
headers: { Accept: "application/json" },
|
|
718
718
|
body: new JsonPayload(request)
|
|
719
719
|
});
|
|
@@ -794,7 +794,7 @@ class AppClient extends Client {
|
|
|
794
794
|
* @throws {Error} if the request failed
|
|
795
795
|
*/
|
|
796
796
|
async searchPaymentMethods(request) {
|
|
797
|
-
const response = await this.
|
|
797
|
+
const response = await this.post(`/search/app-payment-method`, {
|
|
798
798
|
headers: { Accept: "application/json" },
|
|
799
799
|
body: new JsonPayload(request)
|
|
800
800
|
});
|
|
@@ -875,7 +875,7 @@ class AppClient extends Client {
|
|
|
875
875
|
* @throws {Error} if the request failed
|
|
876
876
|
*/
|
|
877
877
|
async searchScriptConditions(request) {
|
|
878
|
-
const response = await this.
|
|
878
|
+
const response = await this.post(`/search/app-script-condition`, {
|
|
879
879
|
headers: { Accept: "application/json" },
|
|
880
880
|
body: new JsonPayload(request)
|
|
881
881
|
});
|
|
@@ -956,7 +956,7 @@ class AppClient extends Client {
|
|
|
956
956
|
* @throws {Error} if the request failed
|
|
957
957
|
*/
|
|
958
958
|
async searchShippingMethods(request) {
|
|
959
|
-
const response = await this.
|
|
959
|
+
const response = await this.post(`/search/app-shipping-method`, {
|
|
960
960
|
headers: { Accept: "application/json" },
|
|
961
961
|
body: new JsonPayload(request)
|
|
962
962
|
});
|
|
@@ -1037,7 +1037,7 @@ class AppClient extends Client {
|
|
|
1037
1037
|
* @throws {Error} if the request failed
|
|
1038
1038
|
*/
|
|
1039
1039
|
async searchTemplates(request) {
|
|
1040
|
-
const response = await this.
|
|
1040
|
+
const response = await this.post(`/search/app-template`, {
|
|
1041
1041
|
headers: { Accept: "application/json" },
|
|
1042
1042
|
body: new JsonPayload(request)
|
|
1043
1043
|
});
|
|
@@ -1121,7 +1121,7 @@ let CategoryClient$1 = class CategoryClient extends Client {
|
|
|
1121
1121
|
* @throws {Error} if the request failed
|
|
1122
1122
|
*/
|
|
1123
1123
|
async searchCategories(request) {
|
|
1124
|
-
const response = await this.
|
|
1124
|
+
const response = await this.post(`/search/category`, {
|
|
1125
1125
|
headers: { Accept: "application/json" },
|
|
1126
1126
|
body: new JsonPayload(request)
|
|
1127
1127
|
});
|
|
@@ -1202,7 +1202,7 @@ let CategoryClient$1 = class CategoryClient extends Client {
|
|
|
1202
1202
|
* @throws {Error} if the request failed
|
|
1203
1203
|
*/
|
|
1204
1204
|
async searchMainCategories(request) {
|
|
1205
|
-
const response = await this.
|
|
1205
|
+
const response = await this.post(`/search/main-category`, {
|
|
1206
1206
|
headers: { Accept: "application/json" },
|
|
1207
1207
|
body: new JsonPayload(request)
|
|
1208
1208
|
});
|
|
@@ -1286,7 +1286,7 @@ let ContentClient$1 = class ContentClient extends Client {
|
|
|
1286
1286
|
* @throws {Error} if the request failed
|
|
1287
1287
|
*/
|
|
1288
1288
|
async searchCmsBlocks(request) {
|
|
1289
|
-
const response = await this.
|
|
1289
|
+
const response = await this.post(`/search/cms-block`, {
|
|
1290
1290
|
headers: { Accept: "application/json" },
|
|
1291
1291
|
body: new JsonPayload(request)
|
|
1292
1292
|
});
|
|
@@ -1367,7 +1367,7 @@ let ContentClient$1 = class ContentClient extends Client {
|
|
|
1367
1367
|
* @throws {Error} if the request failed
|
|
1368
1368
|
*/
|
|
1369
1369
|
async searchCmsPages(request) {
|
|
1370
|
-
const response = await this.
|
|
1370
|
+
const response = await this.post(`/search/cms-page`, {
|
|
1371
1371
|
headers: { Accept: "application/json" },
|
|
1372
1372
|
body: new JsonPayload(request)
|
|
1373
1373
|
});
|
|
@@ -1448,7 +1448,7 @@ let ContentClient$1 = class ContentClient extends Client {
|
|
|
1448
1448
|
* @throws {Error} if the request failed
|
|
1449
1449
|
*/
|
|
1450
1450
|
async searchCmsSections(request) {
|
|
1451
|
-
const response = await this.
|
|
1451
|
+
const response = await this.post(`/search/cms-section`, {
|
|
1452
1452
|
headers: { Accept: "application/json" },
|
|
1453
1453
|
body: new JsonPayload(request)
|
|
1454
1454
|
});
|
|
@@ -1529,7 +1529,7 @@ let ContentClient$1 = class ContentClient extends Client {
|
|
|
1529
1529
|
* @throws {Error} if the request failed
|
|
1530
1530
|
*/
|
|
1531
1531
|
async searchCmsSlots(request) {
|
|
1532
|
-
const response = await this.
|
|
1532
|
+
const response = await this.post(`/search/cms-slot`, {
|
|
1533
1533
|
headers: { Accept: "application/json" },
|
|
1534
1534
|
body: new JsonPayload(request)
|
|
1535
1535
|
});
|
|
@@ -1610,7 +1610,7 @@ let ContentClient$1 = class ContentClient extends Client {
|
|
|
1610
1610
|
* @throws {Error} if the request failed
|
|
1611
1611
|
*/
|
|
1612
1612
|
async searchLandingPages(request) {
|
|
1613
|
-
const response = await this.
|
|
1613
|
+
const response = await this.post(`/search/landing-page`, {
|
|
1614
1614
|
headers: { Accept: "application/json" },
|
|
1615
1615
|
body: new JsonPayload(request)
|
|
1616
1616
|
});
|
|
@@ -1691,7 +1691,7 @@ let ContentClient$1 = class ContentClient extends Client {
|
|
|
1691
1691
|
* @throws {Error} if the request failed
|
|
1692
1692
|
*/
|
|
1693
1693
|
async searchThemes(request) {
|
|
1694
|
-
const response = await this.
|
|
1694
|
+
const response = await this.post(`/search/theme`, {
|
|
1695
1695
|
headers: { Accept: "application/json" },
|
|
1696
1696
|
body: new JsonPayload(request)
|
|
1697
1697
|
});
|
|
@@ -1775,7 +1775,7 @@ let CountryClient$1 = class CountryClient extends Client {
|
|
|
1775
1775
|
* @throws {Error} if the request failed
|
|
1776
1776
|
*/
|
|
1777
1777
|
async searchCountries(request) {
|
|
1778
|
-
const response = await this.
|
|
1778
|
+
const response = await this.post(`/search/country`, {
|
|
1779
1779
|
headers: { Accept: "application/json" },
|
|
1780
1780
|
body: new JsonPayload(request)
|
|
1781
1781
|
});
|
|
@@ -1856,7 +1856,7 @@ let CountryClient$1 = class CountryClient extends Client {
|
|
|
1856
1856
|
* @throws {Error} if the request failed
|
|
1857
1857
|
*/
|
|
1858
1858
|
async searchStates(request) {
|
|
1859
|
-
const response = await this.
|
|
1859
|
+
const response = await this.post(`/search/country-state`, {
|
|
1860
1860
|
headers: { Accept: "application/json" },
|
|
1861
1861
|
body: new JsonPayload(request)
|
|
1862
1862
|
});
|
|
@@ -1940,7 +1940,7 @@ class CountryClient extends Client {
|
|
|
1940
1940
|
* @throws {Error} if the request failed
|
|
1941
1941
|
*/
|
|
1942
1942
|
async searchCurrencies(request) {
|
|
1943
|
-
const response = await this.
|
|
1943
|
+
const response = await this.post(`/search/currency`, {
|
|
1944
1944
|
headers: { Accept: "application/json" },
|
|
1945
1945
|
body: new JsonPayload(request)
|
|
1946
1946
|
});
|
|
@@ -2021,7 +2021,7 @@ class CountryClient extends Client {
|
|
|
2021
2021
|
* @throws {Error} if the request failed
|
|
2022
2022
|
*/
|
|
2023
2023
|
async searchCountryRoundings(request) {
|
|
2024
|
-
const response = await this.
|
|
2024
|
+
const response = await this.post(`/search/currency-country-rounding`, {
|
|
2025
2025
|
headers: { Accept: "application/json" },
|
|
2026
2026
|
body: new JsonPayload(request)
|
|
2027
2027
|
});
|
|
@@ -2105,7 +2105,7 @@ class CustomDataClient extends Client {
|
|
|
2105
2105
|
* @throws {Error} if the request failed
|
|
2106
2106
|
*/
|
|
2107
2107
|
async searchCustomEntities(request) {
|
|
2108
|
-
const response = await this.
|
|
2108
|
+
const response = await this.post(`/search/custom-entity`, {
|
|
2109
2109
|
headers: { Accept: "application/json" },
|
|
2110
2110
|
body: new JsonPayload(request)
|
|
2111
2111
|
});
|
|
@@ -2186,7 +2186,7 @@ class CustomDataClient extends Client {
|
|
|
2186
2186
|
* @throws {Error} if the request failed
|
|
2187
2187
|
*/
|
|
2188
2188
|
async searchCustomFields(request) {
|
|
2189
|
-
const response = await this.
|
|
2189
|
+
const response = await this.post(`/search/custom-field`, {
|
|
2190
2190
|
headers: { Accept: "application/json" },
|
|
2191
2191
|
body: new JsonPayload(request)
|
|
2192
2192
|
});
|
|
@@ -2267,7 +2267,7 @@ class CustomDataClient extends Client {
|
|
|
2267
2267
|
* @throws {Error} if the request failed
|
|
2268
2268
|
*/
|
|
2269
2269
|
async searchCustomFieldSets(request) {
|
|
2270
|
-
const response = await this.
|
|
2270
|
+
const response = await this.post(`/search/custom-field-set`, {
|
|
2271
2271
|
headers: { Accept: "application/json" },
|
|
2272
2272
|
body: new JsonPayload(request)
|
|
2273
2273
|
});
|
|
@@ -2348,7 +2348,7 @@ class CustomDataClient extends Client {
|
|
|
2348
2348
|
* @throws {Error} if the request failed
|
|
2349
2349
|
*/
|
|
2350
2350
|
async searchCustomFieldSetRelations(request) {
|
|
2351
|
-
const response = await this.
|
|
2351
|
+
const response = await this.post(`/search/custom-field-set-relation`, {
|
|
2352
2352
|
headers: { Accept: "application/json" },
|
|
2353
2353
|
body: new JsonPayload(request)
|
|
2354
2354
|
});
|
|
@@ -2445,7 +2445,7 @@ class CustomerClient extends Client {
|
|
|
2445
2445
|
* @throws {Error} if the request failed
|
|
2446
2446
|
*/
|
|
2447
2447
|
async searchCustomers(request) {
|
|
2448
|
-
const response = await this.
|
|
2448
|
+
const response = await this.post(`/search/customer`, {
|
|
2449
2449
|
headers: { Accept: "application/json" },
|
|
2450
2450
|
body: new JsonPayload(request)
|
|
2451
2451
|
});
|
|
@@ -2526,7 +2526,7 @@ class CustomerClient extends Client {
|
|
|
2526
2526
|
* @throws {Error} if the request failed
|
|
2527
2527
|
*/
|
|
2528
2528
|
async searchAddresses(request) {
|
|
2529
|
-
const response = await this.
|
|
2529
|
+
const response = await this.post(`/search/address`, {
|
|
2530
2530
|
headers: { Accept: "application/json" },
|
|
2531
2531
|
body: new JsonPayload(request)
|
|
2532
2532
|
});
|
|
@@ -2607,7 +2607,7 @@ class CustomerClient extends Client {
|
|
|
2607
2607
|
* @throws {Error} if the request failed
|
|
2608
2608
|
*/
|
|
2609
2609
|
async searchGroups(request) {
|
|
2610
|
-
const response = await this.
|
|
2610
|
+
const response = await this.post(`/search/customer-group`, {
|
|
2611
2611
|
headers: { Accept: "application/json" },
|
|
2612
2612
|
body: new JsonPayload(request)
|
|
2613
2613
|
});
|
|
@@ -2688,7 +2688,7 @@ class CustomerClient extends Client {
|
|
|
2688
2688
|
* @throws {Error} if the request failed
|
|
2689
2689
|
*/
|
|
2690
2690
|
async searchRecoveries(request) {
|
|
2691
|
-
const response = await this.
|
|
2691
|
+
const response = await this.post(`/search/customer-recovery`, {
|
|
2692
2692
|
headers: { Accept: "application/json" },
|
|
2693
2693
|
body: new JsonPayload(request)
|
|
2694
2694
|
});
|
|
@@ -2769,7 +2769,7 @@ class CustomerClient extends Client {
|
|
|
2769
2769
|
* @throws {Error} if the request failed
|
|
2770
2770
|
*/
|
|
2771
2771
|
async searchWishlists(request) {
|
|
2772
|
-
const response = await this.
|
|
2772
|
+
const response = await this.post(`/search/customer-wishlist`, {
|
|
2773
2773
|
headers: { Accept: "application/json" },
|
|
2774
2774
|
body: new JsonPayload(request)
|
|
2775
2775
|
});
|
|
@@ -2850,7 +2850,7 @@ class CustomerClient extends Client {
|
|
|
2850
2850
|
* @throws {Error} if the request failed
|
|
2851
2851
|
*/
|
|
2852
2852
|
async searchWishlistProducts(request) {
|
|
2853
|
-
const response = await this.
|
|
2853
|
+
const response = await this.post(`/search/customer-wishlist-product`, {
|
|
2854
2854
|
headers: { Accept: "application/json" },
|
|
2855
2855
|
body: new JsonPayload(request)
|
|
2856
2856
|
});
|
|
@@ -2933,7 +2933,7 @@ let DeliveryTimeClient$4 = class DeliveryTimeClient extends Client {
|
|
|
2933
2933
|
* @throws {Error} if the request failed
|
|
2934
2934
|
*/
|
|
2935
2935
|
async searchDeliveryTimes(request) {
|
|
2936
|
-
const response = await this.
|
|
2936
|
+
const response = await this.post(`/search/delivery-time`, {
|
|
2937
2937
|
headers: { Accept: "application/json" },
|
|
2938
2938
|
body: new JsonPayload(request)
|
|
2939
2939
|
});
|
|
@@ -3059,7 +3059,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
|
|
|
3059
3059
|
* @throws {Error} if the request failed
|
|
3060
3060
|
*/
|
|
3061
3061
|
async searchDocuments(request) {
|
|
3062
|
-
const response = await this.
|
|
3062
|
+
const response = await this.post(`/search/document`, {
|
|
3063
3063
|
headers: { Accept: "application/json" },
|
|
3064
3064
|
body: new JsonPayload(request)
|
|
3065
3065
|
});
|
|
@@ -3140,7 +3140,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
|
|
|
3140
3140
|
* @throws {Error} if the request failed
|
|
3141
3141
|
*/
|
|
3142
3142
|
async searchBaseConfigs(request) {
|
|
3143
|
-
const response = await this.
|
|
3143
|
+
const response = await this.post(`/search/document-base-config`, {
|
|
3144
3144
|
headers: { Accept: "application/json" },
|
|
3145
3145
|
body: new JsonPayload(request)
|
|
3146
3146
|
});
|
|
@@ -3221,7 +3221,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
|
|
|
3221
3221
|
* @throws {Error} if the request failed
|
|
3222
3222
|
*/
|
|
3223
3223
|
async searchBaseConfigSalesChannels(request) {
|
|
3224
|
-
const response = await this.
|
|
3224
|
+
const response = await this.post(`/search/document-base-config-sales-channel`, {
|
|
3225
3225
|
headers: { Accept: "application/json" },
|
|
3226
3226
|
body: new JsonPayload(request)
|
|
3227
3227
|
});
|
|
@@ -3305,7 +3305,7 @@ let DocumentClient$1 = class DocumentClient extends Client {
|
|
|
3305
3305
|
* @throws {Error} if the request failed
|
|
3306
3306
|
*/
|
|
3307
3307
|
async searchDocumentTypes(request) {
|
|
3308
|
-
const response = await this.
|
|
3308
|
+
const response = await this.post(`/search/document-type`, {
|
|
3309
3309
|
headers: { Accept: "application/json" },
|
|
3310
3310
|
body: new JsonPayload(request)
|
|
3311
3311
|
});
|
|
@@ -3388,7 +3388,7 @@ class FlowClient extends Client {
|
|
|
3388
3388
|
* @throws {Error} if the request failed
|
|
3389
3389
|
*/
|
|
3390
3390
|
async searchFlows(request) {
|
|
3391
|
-
const response = await this.
|
|
3391
|
+
const response = await this.post(`/search/flow`, {
|
|
3392
3392
|
headers: { Accept: "application/json" },
|
|
3393
3393
|
body: new JsonPayload(request)
|
|
3394
3394
|
});
|
|
@@ -3469,7 +3469,7 @@ class FlowClient extends Client {
|
|
|
3469
3469
|
* @throws {Error} if the request failed
|
|
3470
3470
|
*/
|
|
3471
3471
|
async searchFlowSequences(request) {
|
|
3472
|
-
const response = await this.
|
|
3472
|
+
const response = await this.post(`/search/flow-sequence`, {
|
|
3473
3473
|
headers: { Accept: "application/json" },
|
|
3474
3474
|
body: new JsonPayload(request)
|
|
3475
3475
|
});
|
|
@@ -3550,7 +3550,7 @@ class FlowClient extends Client {
|
|
|
3550
3550
|
* @throws {Error} if the request failed
|
|
3551
3551
|
*/
|
|
3552
3552
|
async searchFlowTemplates(request) {
|
|
3553
|
-
const response = await this.
|
|
3553
|
+
const response = await this.post(`/search/flow-template`, {
|
|
3554
3554
|
headers: { Accept: "application/json" },
|
|
3555
3555
|
body: new JsonPayload(request)
|
|
3556
3556
|
});
|
|
@@ -3633,7 +3633,7 @@ let DeliveryTimeClient$3 = class DeliveryTimeClient extends Client {
|
|
|
3633
3633
|
* @throws {Error} if the request failed
|
|
3634
3634
|
*/
|
|
3635
3635
|
async searchFiles(request) {
|
|
3636
|
-
const response = await this.
|
|
3636
|
+
const response = await this.post(`/search/import-export-file`, {
|
|
3637
3637
|
headers: { Accept: "application/json" },
|
|
3638
3638
|
body: new JsonPayload(request)
|
|
3639
3639
|
});
|
|
@@ -3713,7 +3713,7 @@ let DeliveryTimeClient$3 = class DeliveryTimeClient extends Client {
|
|
|
3713
3713
|
* @throws {Error} if the request failed
|
|
3714
3714
|
*/
|
|
3715
3715
|
async searchLogs(request) {
|
|
3716
|
-
const response = await this.
|
|
3716
|
+
const response = await this.post(`/search/import-export-log`, {
|
|
3717
3717
|
headers: { Accept: "application/json" },
|
|
3718
3718
|
body: new JsonPayload(request)
|
|
3719
3719
|
});
|
|
@@ -3794,7 +3794,7 @@ let DeliveryTimeClient$3 = class DeliveryTimeClient extends Client {
|
|
|
3794
3794
|
* @throws {Error} if the request failed
|
|
3795
3795
|
*/
|
|
3796
3796
|
async searchProfiles(request) {
|
|
3797
|
-
const response = await this.
|
|
3797
|
+
const response = await this.post(`/search/import-export-profile`, {
|
|
3798
3798
|
headers: { Accept: "application/json" },
|
|
3799
3799
|
body: new JsonPayload(request)
|
|
3800
3800
|
});
|
|
@@ -3877,7 +3877,7 @@ class IntegrationClient extends Client {
|
|
|
3877
3877
|
* @throws {Error} if the request failed
|
|
3878
3878
|
*/
|
|
3879
3879
|
async searchIntegrations(request) {
|
|
3880
|
-
const response = await this.
|
|
3880
|
+
const response = await this.post(`/search/integration`, {
|
|
3881
3881
|
headers: { Accept: "application/json" },
|
|
3882
3882
|
body: new JsonPayload(request)
|
|
3883
3883
|
});
|
|
@@ -3961,7 +3961,7 @@ class LocaleClient extends Client {
|
|
|
3961
3961
|
* @throws {Error} if the request failed
|
|
3962
3962
|
*/
|
|
3963
3963
|
async searchLocales(request) {
|
|
3964
|
-
const response = await this.
|
|
3964
|
+
const response = await this.post(`/search/locale`, {
|
|
3965
3965
|
headers: { Accept: "application/json" },
|
|
3966
3966
|
body: new JsonPayload(request)
|
|
3967
3967
|
});
|
|
@@ -4042,7 +4042,7 @@ class LocaleClient extends Client {
|
|
|
4042
4042
|
* @throws {Error} if the request failed
|
|
4043
4043
|
*/
|
|
4044
4044
|
async searchLanguages(request) {
|
|
4045
|
-
const response = await this.
|
|
4045
|
+
const response = await this.post(`/search/language`, {
|
|
4046
4046
|
headers: { Accept: "application/json" },
|
|
4047
4047
|
body: new JsonPayload(request)
|
|
4048
4048
|
});
|
|
@@ -4160,7 +4160,7 @@ class MailClient extends Client {
|
|
|
4160
4160
|
* @throws {Error} if the request failed
|
|
4161
4161
|
*/
|
|
4162
4162
|
async searchHeaderFooters(request) {
|
|
4163
|
-
const response = await this.
|
|
4163
|
+
const response = await this.post(`/search/header-footer`, {
|
|
4164
4164
|
headers: { Accept: "application/json" },
|
|
4165
4165
|
body: new JsonPayload(request)
|
|
4166
4166
|
});
|
|
@@ -4241,7 +4241,7 @@ class MailClient extends Client {
|
|
|
4241
4241
|
* @throws {Error} if the request failed
|
|
4242
4242
|
*/
|
|
4243
4243
|
async searchTemplates(request) {
|
|
4244
|
-
const response = await this.
|
|
4244
|
+
const response = await this.post(`/search/template`, {
|
|
4245
4245
|
headers: { Accept: "application/json" },
|
|
4246
4246
|
body: new JsonPayload(request)
|
|
4247
4247
|
});
|
|
@@ -4322,7 +4322,7 @@ class MailClient extends Client {
|
|
|
4322
4322
|
* @throws {Error} if the request failed
|
|
4323
4323
|
*/
|
|
4324
4324
|
async searchTemplateTypes(request) {
|
|
4325
|
-
const response = await this.
|
|
4325
|
+
const response = await this.post(`/search/template-type`, {
|
|
4326
4326
|
headers: { Accept: "application/json" },
|
|
4327
4327
|
body: new JsonPayload(request)
|
|
4328
4328
|
});
|
|
@@ -4433,7 +4433,7 @@ class MediaClient extends Client {
|
|
|
4433
4433
|
* @throws {Error} if the request failed
|
|
4434
4434
|
*/
|
|
4435
4435
|
async searchMedia(request) {
|
|
4436
|
-
const response = await this.
|
|
4436
|
+
const response = await this.post(`/search/media`, {
|
|
4437
4437
|
headers: { Accept: "application/json" },
|
|
4438
4438
|
body: new JsonPayload(request)
|
|
4439
4439
|
});
|
|
@@ -4514,7 +4514,7 @@ class MediaClient extends Client {
|
|
|
4514
4514
|
* @throws {Error} if the request failed
|
|
4515
4515
|
*/
|
|
4516
4516
|
async searchDefaultFolders(request) {
|
|
4517
|
-
const response = await this.
|
|
4517
|
+
const response = await this.post(`/search/media-default-folder`, {
|
|
4518
4518
|
headers: { Accept: "application/json" },
|
|
4519
4519
|
body: new JsonPayload(request)
|
|
4520
4520
|
});
|
|
@@ -4595,7 +4595,7 @@ class MediaClient extends Client {
|
|
|
4595
4595
|
* @throws {Error} if the request failed
|
|
4596
4596
|
*/
|
|
4597
4597
|
async searchFolders(request) {
|
|
4598
|
-
const response = await this.
|
|
4598
|
+
const response = await this.post(`/search/media-folder`, {
|
|
4599
4599
|
headers: { Accept: "application/json" },
|
|
4600
4600
|
body: new JsonPayload(request)
|
|
4601
4601
|
});
|
|
@@ -4676,7 +4676,7 @@ class MediaClient extends Client {
|
|
|
4676
4676
|
* @throws {Error} if the request failed
|
|
4677
4677
|
*/
|
|
4678
4678
|
async searchFolderConfigs(request) {
|
|
4679
|
-
const response = await this.
|
|
4679
|
+
const response = await this.post(`/search/media-folder-configuration`, {
|
|
4680
4680
|
headers: { Accept: "application/json" },
|
|
4681
4681
|
body: new JsonPayload(request)
|
|
4682
4682
|
});
|
|
@@ -4757,7 +4757,7 @@ class MediaClient extends Client {
|
|
|
4757
4757
|
* @throws {Error} if the request failed
|
|
4758
4758
|
*/
|
|
4759
4759
|
async searchThumbnails(request) {
|
|
4760
|
-
const response = await this.
|
|
4760
|
+
const response = await this.post(`/search/media-thumbnail`, {
|
|
4761
4761
|
headers: { Accept: "application/json" },
|
|
4762
4762
|
body: new JsonPayload(request)
|
|
4763
4763
|
});
|
|
@@ -4838,7 +4838,7 @@ class MediaClient extends Client {
|
|
|
4838
4838
|
* @throws {Error} if the request failed
|
|
4839
4839
|
*/
|
|
4840
4840
|
async searchThumbnailSizes(request) {
|
|
4841
|
-
const response = await this.
|
|
4841
|
+
const response = await this.post(`/search/media-thumbnail-size`, {
|
|
4842
4842
|
headers: { Accept: "application/json" },
|
|
4843
4843
|
body: new JsonPayload(request)
|
|
4844
4844
|
});
|
|
@@ -4921,7 +4921,7 @@ let NewsletterClient$1 = class NewsletterClient extends Client {
|
|
|
4921
4921
|
* @throws {Error} if the request failed
|
|
4922
4922
|
*/
|
|
4923
4923
|
async searchRecipients(request) {
|
|
4924
|
-
const response = await this.
|
|
4924
|
+
const response = await this.post(`/search/newsletter-recipient`, {
|
|
4925
4925
|
headers: { Accept: "application/json" },
|
|
4926
4926
|
body: new JsonPayload(request)
|
|
4927
4927
|
});
|
|
@@ -5005,7 +5005,7 @@ class NumberRangeClient extends Client {
|
|
|
5005
5005
|
* @throws {Error} if the request failed
|
|
5006
5006
|
*/
|
|
5007
5007
|
async searchRanges(request) {
|
|
5008
|
-
const response = await this.
|
|
5008
|
+
const response = await this.post(`/search/number-range`, {
|
|
5009
5009
|
headers: { Accept: "application/json" },
|
|
5010
5010
|
body: new JsonPayload(request)
|
|
5011
5011
|
});
|
|
@@ -5086,7 +5086,7 @@ class NumberRangeClient extends Client {
|
|
|
5086
5086
|
* @throws {Error} if the request failed
|
|
5087
5087
|
*/
|
|
5088
5088
|
async searchSalesChannels(request) {
|
|
5089
|
-
const response = await this.
|
|
5089
|
+
const response = await this.post(`/search/number-range-sales-channel`, {
|
|
5090
5090
|
headers: { Accept: "application/json" },
|
|
5091
5091
|
body: new JsonPayload(request)
|
|
5092
5092
|
});
|
|
@@ -5167,7 +5167,7 @@ class NumberRangeClient extends Client {
|
|
|
5167
5167
|
* @throws {Error} if the request failed
|
|
5168
5168
|
*/
|
|
5169
5169
|
async searchStates(request) {
|
|
5170
|
-
const response = await this.
|
|
5170
|
+
const response = await this.post(`/search/number-range-state`, {
|
|
5171
5171
|
headers: { Accept: "application/json" },
|
|
5172
5172
|
body: new JsonPayload(request)
|
|
5173
5173
|
});
|
|
@@ -5247,7 +5247,7 @@ class NumberRangeClient extends Client {
|
|
|
5247
5247
|
* @throws {Error} if the request failed
|
|
5248
5248
|
*/
|
|
5249
5249
|
async searchTypes(request) {
|
|
5250
|
-
const response = await this.
|
|
5250
|
+
const response = await this.post(`/search/number-range-type`, {
|
|
5251
5251
|
headers: { Accept: "application/json" },
|
|
5252
5252
|
body: new JsonPayload(request)
|
|
5253
5253
|
});
|
|
@@ -5425,7 +5425,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5425
5425
|
* @throws {Error} if the request failed
|
|
5426
5426
|
*/
|
|
5427
5427
|
async searchOrders(request) {
|
|
5428
|
-
const response = await this.
|
|
5428
|
+
const response = await this.post(`/search/order`, {
|
|
5429
5429
|
headers: { Accept: "application/json" },
|
|
5430
5430
|
body: new JsonPayload(request)
|
|
5431
5431
|
});
|
|
@@ -5506,7 +5506,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5506
5506
|
* @throws {Error} if the request failed
|
|
5507
5507
|
*/
|
|
5508
5508
|
async searchAddresses(request) {
|
|
5509
|
-
const response = await this.
|
|
5509
|
+
const response = await this.post(`/search/order-address`, {
|
|
5510
5510
|
headers: { Accept: "application/json" },
|
|
5511
5511
|
body: new JsonPayload(request)
|
|
5512
5512
|
});
|
|
@@ -5587,7 +5587,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5587
5587
|
* @throws {Error} if the request failed
|
|
5588
5588
|
*/
|
|
5589
5589
|
async searchCustomers(request) {
|
|
5590
|
-
const response = await this.
|
|
5590
|
+
const response = await this.post(`/search/order-customer`, {
|
|
5591
5591
|
headers: { Accept: "application/json" },
|
|
5592
5592
|
body: new JsonPayload(request)
|
|
5593
5593
|
});
|
|
@@ -5668,7 +5668,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5668
5668
|
* @throws {Error} if the request failed
|
|
5669
5669
|
*/
|
|
5670
5670
|
async searchDeliveries(request) {
|
|
5671
|
-
const response = await this.
|
|
5671
|
+
const response = await this.post(`/search/order-delivery`, {
|
|
5672
5672
|
headers: { Accept: "application/json" },
|
|
5673
5673
|
body: new JsonPayload(request)
|
|
5674
5674
|
});
|
|
@@ -5749,7 +5749,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5749
5749
|
* @throws {Error} if the request failed
|
|
5750
5750
|
*/
|
|
5751
5751
|
async searchDeliveryPositions(request) {
|
|
5752
|
-
const response = await this.
|
|
5752
|
+
const response = await this.post(`/search/order-delivery-position`, {
|
|
5753
5753
|
headers: { Accept: "application/json" },
|
|
5754
5754
|
body: new JsonPayload(request)
|
|
5755
5755
|
});
|
|
@@ -5830,7 +5830,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5830
5830
|
* @throws {Error} if the request failed
|
|
5831
5831
|
*/
|
|
5832
5832
|
async searchLineItems(request) {
|
|
5833
|
-
const response = await this.
|
|
5833
|
+
const response = await this.post(`/search/order-line-item`, {
|
|
5834
5834
|
headers: { Accept: "application/json" },
|
|
5835
5835
|
body: new JsonPayload(request)
|
|
5836
5836
|
});
|
|
@@ -5911,7 +5911,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5911
5911
|
* @throws {Error} if the request failed
|
|
5912
5912
|
*/
|
|
5913
5913
|
async searchLineItemDownloads(request) {
|
|
5914
|
-
const response = await this.
|
|
5914
|
+
const response = await this.post(`/search/order-line-item-download`, {
|
|
5915
5915
|
headers: { Accept: "application/json" },
|
|
5916
5916
|
body: new JsonPayload(request)
|
|
5917
5917
|
});
|
|
@@ -5992,7 +5992,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
5992
5992
|
* @throws {Error} if the request failed
|
|
5993
5993
|
*/
|
|
5994
5994
|
async searchTransactions(request) {
|
|
5995
|
-
const response = await this.
|
|
5995
|
+
const response = await this.post(`/search/order-transaction`, {
|
|
5996
5996
|
headers: { Accept: "application/json" },
|
|
5997
5997
|
body: new JsonPayload(request)
|
|
5998
5998
|
});
|
|
@@ -6073,7 +6073,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
6073
6073
|
* @throws {Error} if the request failed
|
|
6074
6074
|
*/
|
|
6075
6075
|
async searchTransactionCaptures(request) {
|
|
6076
|
-
const response = await this.
|
|
6076
|
+
const response = await this.post(`/search/order-transaction-capture`, {
|
|
6077
6077
|
headers: { Accept: "application/json" },
|
|
6078
6078
|
body: new JsonPayload(request)
|
|
6079
6079
|
});
|
|
@@ -6154,7 +6154,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
6154
6154
|
* @throws {Error} if the request failed
|
|
6155
6155
|
*/
|
|
6156
6156
|
async searchTransactionCaptureRefunds(request) {
|
|
6157
|
-
const response = await this.
|
|
6157
|
+
const response = await this.post(`/search/order-transaction-capture-refund`, {
|
|
6158
6158
|
headers: { Accept: "application/json" },
|
|
6159
6159
|
body: new JsonPayload(request)
|
|
6160
6160
|
});
|
|
@@ -6238,7 +6238,7 @@ let OrderClient$1 = class OrderClient extends Client {
|
|
|
6238
6238
|
* @throws {Error} if the request failed
|
|
6239
6239
|
*/
|
|
6240
6240
|
async searchTransactionCaptureRefundPositions(request) {
|
|
6241
|
-
const response = await this.
|
|
6241
|
+
const response = await this.post(`/search/order-transaction-capture-refund-position`, {
|
|
6242
6242
|
headers: { Accept: "application/json" },
|
|
6243
6243
|
body: new JsonPayload(request)
|
|
6244
6244
|
});
|
|
@@ -6324,7 +6324,7 @@ class PaymentMethodClient extends Client {
|
|
|
6324
6324
|
* @throws {Error} if the request failed
|
|
6325
6325
|
*/
|
|
6326
6326
|
async searchPaymentMethods(request) {
|
|
6327
|
-
const response = await this.
|
|
6327
|
+
const response = await this.post(`/search/payment-method`, {
|
|
6328
6328
|
headers: { Accept: "application/json" },
|
|
6329
6329
|
body: new JsonPayload(request)
|
|
6330
6330
|
});
|
|
@@ -6407,7 +6407,7 @@ class PluginClient extends Client {
|
|
|
6407
6407
|
* @throws {Error} if the request failed
|
|
6408
6408
|
*/
|
|
6409
6409
|
async searchPlugins(request) {
|
|
6410
|
-
const response = await this.
|
|
6410
|
+
const response = await this.post(`/search/plugin`, {
|
|
6411
6411
|
headers: { Accept: "application/json" },
|
|
6412
6412
|
body: new JsonPayload(request)
|
|
6413
6413
|
});
|
|
@@ -6491,7 +6491,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6491
6491
|
* @throws {Error} if the request failed
|
|
6492
6492
|
*/
|
|
6493
6493
|
async searchProducts(request) {
|
|
6494
|
-
const response = await this.
|
|
6494
|
+
const response = await this.post(`/search/product`, {
|
|
6495
6495
|
headers: { Accept: "application/json" },
|
|
6496
6496
|
body: new JsonPayload(request)
|
|
6497
6497
|
});
|
|
@@ -6572,7 +6572,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6572
6572
|
* @throws {Error} if the request failed
|
|
6573
6573
|
*/
|
|
6574
6574
|
async searchConfiguratorSettings(request) {
|
|
6575
|
-
const response = await this.
|
|
6575
|
+
const response = await this.post(`/search/product-configurator-setting`, {
|
|
6576
6576
|
headers: { Accept: "application/json" },
|
|
6577
6577
|
body: new JsonPayload(request)
|
|
6578
6578
|
});
|
|
@@ -6653,7 +6653,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6653
6653
|
* @throws {Error} if the request failed
|
|
6654
6654
|
*/
|
|
6655
6655
|
async searchCrossSellings(request) {
|
|
6656
|
-
const response = await this.
|
|
6656
|
+
const response = await this.post(`/search/product-cross-selling`, {
|
|
6657
6657
|
headers: { Accept: "application/json" },
|
|
6658
6658
|
body: new JsonPayload(request)
|
|
6659
6659
|
});
|
|
@@ -6734,7 +6734,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6734
6734
|
* @throws {Error} if the request failed
|
|
6735
6735
|
*/
|
|
6736
6736
|
async searchCrossSellingAssignedProducts(request) {
|
|
6737
|
-
const response = await this.
|
|
6737
|
+
const response = await this.post(`/search/product-cross-selling-assigned-product`, {
|
|
6738
6738
|
headers: { Accept: "application/json" },
|
|
6739
6739
|
body: new JsonPayload(request)
|
|
6740
6740
|
});
|
|
@@ -6818,7 +6818,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6818
6818
|
* @throws {Error} if the request failed
|
|
6819
6819
|
*/
|
|
6820
6820
|
async searchDownloads(request) {
|
|
6821
|
-
const response = await this.
|
|
6821
|
+
const response = await this.post(`/search/product-download`, {
|
|
6822
6822
|
headers: { Accept: "application/json" },
|
|
6823
6823
|
body: new JsonPayload(request)
|
|
6824
6824
|
});
|
|
@@ -6899,7 +6899,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6899
6899
|
* @throws {Error} if the request failed
|
|
6900
6900
|
*/
|
|
6901
6901
|
async searchExports(request) {
|
|
6902
|
-
const response = await this.
|
|
6902
|
+
const response = await this.post(`/search/product-export`, {
|
|
6903
6903
|
headers: { Accept: "application/json" },
|
|
6904
6904
|
body: new JsonPayload(request)
|
|
6905
6905
|
});
|
|
@@ -6980,7 +6980,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
6980
6980
|
* @throws {Error} if the request failed
|
|
6981
6981
|
*/
|
|
6982
6982
|
async searchFeatureSets(request) {
|
|
6983
|
-
const response = await this.
|
|
6983
|
+
const response = await this.post(`/search/product-feature-set`, {
|
|
6984
6984
|
headers: { Accept: "application/json" },
|
|
6985
6985
|
body: new JsonPayload(request)
|
|
6986
6986
|
});
|
|
@@ -7061,7 +7061,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7061
7061
|
* @throws {Error} if the request failed
|
|
7062
7062
|
*/
|
|
7063
7063
|
async searchKeywordDictionaries(request) {
|
|
7064
|
-
const response = await this.
|
|
7064
|
+
const response = await this.post(`/search/product-keyword-dictionary`, {
|
|
7065
7065
|
headers: { Accept: "application/json" },
|
|
7066
7066
|
body: new JsonPayload(request)
|
|
7067
7067
|
});
|
|
@@ -7142,7 +7142,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7142
7142
|
* @throws {Error} if the request failed
|
|
7143
7143
|
*/
|
|
7144
7144
|
async searchManufacturers(request) {
|
|
7145
|
-
const response = await this.
|
|
7145
|
+
const response = await this.post(`/search/product-manufacturer`, {
|
|
7146
7146
|
headers: { Accept: "application/json" },
|
|
7147
7147
|
body: new JsonPayload(request)
|
|
7148
7148
|
});
|
|
@@ -7223,7 +7223,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7223
7223
|
* @throws {Error} if the request failed
|
|
7224
7224
|
*/
|
|
7225
7225
|
async searchMedia(request) {
|
|
7226
|
-
const response = await this.
|
|
7226
|
+
const response = await this.post(`/search/product-media`, {
|
|
7227
7227
|
headers: { Accept: "application/json" },
|
|
7228
7228
|
body: new JsonPayload(request)
|
|
7229
7229
|
});
|
|
@@ -7304,7 +7304,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7304
7304
|
* @throws {Error} if the request failed
|
|
7305
7305
|
*/
|
|
7306
7306
|
async searchPrices(request) {
|
|
7307
|
-
const response = await this.
|
|
7307
|
+
const response = await this.post(`/search/product-price`, {
|
|
7308
7308
|
headers: { Accept: "application/json" },
|
|
7309
7309
|
body: new JsonPayload(request)
|
|
7310
7310
|
});
|
|
@@ -7385,7 +7385,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7385
7385
|
* @throws {Error} if the request failed
|
|
7386
7386
|
*/
|
|
7387
7387
|
async searchReviews(request) {
|
|
7388
|
-
const response = await this.
|
|
7388
|
+
const response = await this.post(`/search/product-review`, {
|
|
7389
7389
|
headers: { Accept: "application/json" },
|
|
7390
7390
|
body: new JsonPayload(request)
|
|
7391
7391
|
});
|
|
@@ -7466,7 +7466,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7466
7466
|
* @throws {Error} if the request failed
|
|
7467
7467
|
*/
|
|
7468
7468
|
async searchSearchConfigs(request) {
|
|
7469
|
-
const response = await this.
|
|
7469
|
+
const response = await this.post(`/search/product-search-config`, {
|
|
7470
7470
|
headers: { Accept: "application/json" },
|
|
7471
7471
|
body: new JsonPayload(request)
|
|
7472
7472
|
});
|
|
@@ -7547,7 +7547,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7547
7547
|
* @throws {Error} if the request failed
|
|
7548
7548
|
*/
|
|
7549
7549
|
async searchSearchConfigFields(request) {
|
|
7550
|
-
const response = await this.
|
|
7550
|
+
const response = await this.post(`/search/product-search-config-field`, {
|
|
7551
7551
|
headers: { Accept: "application/json" },
|
|
7552
7552
|
body: new JsonPayload(request)
|
|
7553
7553
|
});
|
|
@@ -7628,7 +7628,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7628
7628
|
* @throws {Error} if the request failed
|
|
7629
7629
|
*/
|
|
7630
7630
|
async searchSearchKeywords(request) {
|
|
7631
|
-
const response = await this.
|
|
7631
|
+
const response = await this.post(`/search/product-search-keyword`, {
|
|
7632
7632
|
headers: { Accept: "application/json" },
|
|
7633
7633
|
body: new JsonPayload(request)
|
|
7634
7634
|
});
|
|
@@ -7709,7 +7709,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7709
7709
|
* @throws {Error} if the request failed
|
|
7710
7710
|
*/
|
|
7711
7711
|
async searchSortings(request) {
|
|
7712
|
-
const response = await this.
|
|
7712
|
+
const response = await this.post(`/search/product-sorting`, {
|
|
7713
7713
|
headers: { Accept: "application/json" },
|
|
7714
7714
|
body: new JsonPayload(request)
|
|
7715
7715
|
});
|
|
@@ -7790,7 +7790,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7790
7790
|
* @throws {Error} if the request failed
|
|
7791
7791
|
*/
|
|
7792
7792
|
async searchStreams(request) {
|
|
7793
|
-
const response = await this.
|
|
7793
|
+
const response = await this.post(`/search/product-stream`, {
|
|
7794
7794
|
headers: { Accept: "application/json" },
|
|
7795
7795
|
body: new JsonPayload(request)
|
|
7796
7796
|
});
|
|
@@ -7871,7 +7871,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7871
7871
|
* @throws {Error} if the request failed
|
|
7872
7872
|
*/
|
|
7873
7873
|
async searchStreamFilters(request) {
|
|
7874
|
-
const response = await this.
|
|
7874
|
+
const response = await this.post(`/search/product-stream-filter`, {
|
|
7875
7875
|
headers: { Accept: "application/json" },
|
|
7876
7876
|
body: new JsonPayload(request)
|
|
7877
7877
|
});
|
|
@@ -7952,7 +7952,7 @@ let ProductClient$1 = class ProductClient extends Client {
|
|
|
7952
7952
|
* @throws {Error} if the request failed
|
|
7953
7953
|
*/
|
|
7954
7954
|
async searchVisibilities(request) {
|
|
7955
|
-
const response = await this.
|
|
7955
|
+
const response = await this.post(`/search/product-visibility`, {
|
|
7956
7956
|
headers: { Accept: "application/json" },
|
|
7957
7957
|
body: new JsonPayload(request)
|
|
7958
7958
|
});
|
|
@@ -8036,7 +8036,7 @@ class PromotionClient extends Client {
|
|
|
8036
8036
|
* @throws {Error} if the request failed
|
|
8037
8037
|
*/
|
|
8038
8038
|
async searchPromotions(request) {
|
|
8039
|
-
const response = await this.
|
|
8039
|
+
const response = await this.post(`/search/promotion`, {
|
|
8040
8040
|
headers: { Accept: "application/json" },
|
|
8041
8041
|
body: new JsonPayload(request)
|
|
8042
8042
|
});
|
|
@@ -8117,7 +8117,7 @@ class PromotionClient extends Client {
|
|
|
8117
8117
|
* @throws {Error} if the request failed
|
|
8118
8118
|
*/
|
|
8119
8119
|
async searchDiscounts(request) {
|
|
8120
|
-
const response = await this.
|
|
8120
|
+
const response = await this.post(`/search/promotion-discount`, {
|
|
8121
8121
|
headers: { Accept: "application/json" },
|
|
8122
8122
|
body: new JsonPayload(request)
|
|
8123
8123
|
});
|
|
@@ -8198,7 +8198,7 @@ class PromotionClient extends Client {
|
|
|
8198
8198
|
* @throws {Error} if the request failed
|
|
8199
8199
|
*/
|
|
8200
8200
|
async searchDiscountPrices(request) {
|
|
8201
|
-
const response = await this.
|
|
8201
|
+
const response = await this.post(`/search/promotion-discount-price`, {
|
|
8202
8202
|
headers: { Accept: "application/json" },
|
|
8203
8203
|
body: new JsonPayload(request)
|
|
8204
8204
|
});
|
|
@@ -8279,7 +8279,7 @@ class PromotionClient extends Client {
|
|
|
8279
8279
|
* @throws {Error} if the request failed
|
|
8280
8280
|
*/
|
|
8281
8281
|
async searchIndividualCodes(request) {
|
|
8282
|
-
const response = await this.
|
|
8282
|
+
const response = await this.post(`/search/promotion-individual-code`, {
|
|
8283
8283
|
headers: { Accept: "application/json" },
|
|
8284
8284
|
body: new JsonPayload(request)
|
|
8285
8285
|
});
|
|
@@ -8360,7 +8360,7 @@ class PromotionClient extends Client {
|
|
|
8360
8360
|
* @throws {Error} if the request failed
|
|
8361
8361
|
*/
|
|
8362
8362
|
async searchSalesChannels(request) {
|
|
8363
|
-
const response = await this.
|
|
8363
|
+
const response = await this.post(`/search/promotion-sales-channel`, {
|
|
8364
8364
|
headers: { Accept: "application/json" },
|
|
8365
8365
|
body: new JsonPayload(request)
|
|
8366
8366
|
});
|
|
@@ -8441,7 +8441,7 @@ class PromotionClient extends Client {
|
|
|
8441
8441
|
* @throws {Error} if the request failed
|
|
8442
8442
|
*/
|
|
8443
8443
|
async searchSetGroups(request) {
|
|
8444
|
-
const response = await this.
|
|
8444
|
+
const response = await this.post(`/search/promotion-setgroup`, {
|
|
8445
8445
|
headers: { Accept: "application/json" },
|
|
8446
8446
|
body: new JsonPayload(request)
|
|
8447
8447
|
});
|
|
@@ -8525,7 +8525,7 @@ class PropertyGroupClient extends Client {
|
|
|
8525
8525
|
* @throws {Error} if the request failed
|
|
8526
8526
|
*/
|
|
8527
8527
|
async searchPropertyGroups(request) {
|
|
8528
|
-
const response = await this.
|
|
8528
|
+
const response = await this.post(`/search/property-group`, {
|
|
8529
8529
|
headers: { Accept: "application/json" },
|
|
8530
8530
|
body: new JsonPayload(request)
|
|
8531
8531
|
});
|
|
@@ -8606,7 +8606,7 @@ class PropertyGroupClient extends Client {
|
|
|
8606
8606
|
* @throws {Error} if the request failed
|
|
8607
8607
|
*/
|
|
8608
8608
|
async searchOptions(request) {
|
|
8609
|
-
const response = await this.
|
|
8609
|
+
const response = await this.post(`/search/property-group-option`, {
|
|
8610
8610
|
headers: { Accept: "application/json" },
|
|
8611
8611
|
body: new JsonPayload(request)
|
|
8612
8612
|
});
|
|
@@ -8689,7 +8689,7 @@ class RuleClient extends Client {
|
|
|
8689
8689
|
* @throws {Error} if the request failed
|
|
8690
8690
|
*/
|
|
8691
8691
|
async searchRules(request) {
|
|
8692
|
-
const response = await this.
|
|
8692
|
+
const response = await this.post(`/search/rule`, {
|
|
8693
8693
|
headers: { Accept: "application/json" },
|
|
8694
8694
|
body: new JsonPayload(request)
|
|
8695
8695
|
});
|
|
@@ -8770,7 +8770,7 @@ class RuleClient extends Client {
|
|
|
8770
8770
|
* @throws {Error} if the request failed
|
|
8771
8771
|
*/
|
|
8772
8772
|
async searchConditions(request) {
|
|
8773
|
-
const response = await this.
|
|
8773
|
+
const response = await this.post(`/search/rule-condition`, {
|
|
8774
8774
|
headers: { Accept: "application/json" },
|
|
8775
8775
|
body: new JsonPayload(request)
|
|
8776
8776
|
});
|
|
@@ -8854,7 +8854,7 @@ class SalesChannelClient extends Client {
|
|
|
8854
8854
|
* @throws {Error} if the request failed
|
|
8855
8855
|
*/
|
|
8856
8856
|
async searchSalesChannels(request) {
|
|
8857
|
-
const response = await this.
|
|
8857
|
+
const response = await this.post(`/search/sales-channel`, {
|
|
8858
8858
|
headers: { Accept: "application/json" },
|
|
8859
8859
|
body: new JsonPayload(request)
|
|
8860
8860
|
});
|
|
@@ -8935,7 +8935,7 @@ class SalesChannelClient extends Client {
|
|
|
8935
8935
|
* @throws {Error} if the request failed
|
|
8936
8936
|
*/
|
|
8937
8937
|
async searchAnalytics(request) {
|
|
8938
|
-
const response = await this.
|
|
8938
|
+
const response = await this.post(`/search/sales-channel-analytics`, {
|
|
8939
8939
|
headers: { Accept: "application/json" },
|
|
8940
8940
|
body: new JsonPayload(request)
|
|
8941
8941
|
});
|
|
@@ -9016,7 +9016,7 @@ class SalesChannelClient extends Client {
|
|
|
9016
9016
|
* @throws {Error} if the request failed
|
|
9017
9017
|
*/
|
|
9018
9018
|
async searchDomains(request) {
|
|
9019
|
-
const response = await this.
|
|
9019
|
+
const response = await this.post(`/search/sales-channel-domain`, {
|
|
9020
9020
|
headers: { Accept: "application/json" },
|
|
9021
9021
|
body: new JsonPayload(request)
|
|
9022
9022
|
});
|
|
@@ -9096,7 +9096,7 @@ class SalesChannelClient extends Client {
|
|
|
9096
9096
|
* @throws {Error} if the request failed
|
|
9097
9097
|
*/
|
|
9098
9098
|
async searchTypes(request) {
|
|
9099
|
-
const response = await this.
|
|
9099
|
+
const response = await this.post(`/search/sales-channel-type`, {
|
|
9100
9100
|
headers: { Accept: "application/json" },
|
|
9101
9101
|
body: new JsonPayload(request)
|
|
9102
9102
|
});
|
|
@@ -9179,7 +9179,7 @@ class SalutationClient extends Client {
|
|
|
9179
9179
|
* @throws {Error} if the request failed
|
|
9180
9180
|
*/
|
|
9181
9181
|
async searchSalutations(request) {
|
|
9182
|
-
const response = await this.
|
|
9182
|
+
const response = await this.post(`/search/salutation`, {
|
|
9183
9183
|
headers: { Accept: "application/json" },
|
|
9184
9184
|
body: new JsonPayload(request)
|
|
9185
9185
|
});
|
|
@@ -9262,7 +9262,7 @@ class ScriptClient extends Client {
|
|
|
9262
9262
|
* @throws {Error} if the request failed
|
|
9263
9263
|
*/
|
|
9264
9264
|
async searchScripts(request) {
|
|
9265
|
-
const response = await this.
|
|
9265
|
+
const response = await this.post(`/search/script`, {
|
|
9266
9266
|
headers: { Accept: "application/json" },
|
|
9267
9267
|
body: new JsonPayload(request)
|
|
9268
9268
|
});
|
|
@@ -9345,7 +9345,7 @@ class SecurityClient extends Client {
|
|
|
9345
9345
|
* @throws {Error} if the request failed
|
|
9346
9346
|
*/
|
|
9347
9347
|
async searchAclRoles(request) {
|
|
9348
|
-
const response = await this.
|
|
9348
|
+
const response = await this.post(`/search/acl-role`, {
|
|
9349
9349
|
headers: { Accept: "application/json" },
|
|
9350
9350
|
body: new JsonPayload(request)
|
|
9351
9351
|
});
|
|
@@ -9428,7 +9428,7 @@ let DeliveryTimeClient$2 = class DeliveryTimeClient extends Client {
|
|
|
9428
9428
|
* @throws {Error} if the request failed
|
|
9429
9429
|
*/
|
|
9430
9430
|
async searchUrls(request) {
|
|
9431
|
-
const response = await this.
|
|
9431
|
+
const response = await this.post(`/search/seo-url`, {
|
|
9432
9432
|
headers: { Accept: "application/json" },
|
|
9433
9433
|
body: new JsonPayload(request)
|
|
9434
9434
|
});
|
|
@@ -9509,7 +9509,7 @@ let DeliveryTimeClient$2 = class DeliveryTimeClient extends Client {
|
|
|
9509
9509
|
* @throws {Error} if the request failed
|
|
9510
9510
|
*/
|
|
9511
9511
|
async searchUrlTemplates(request) {
|
|
9512
|
-
const response = await this.
|
|
9512
|
+
const response = await this.post(`/search/seo-url-template`, {
|
|
9513
9513
|
headers: { Accept: "application/json" },
|
|
9514
9514
|
body: new JsonPayload(request)
|
|
9515
9515
|
});
|
|
@@ -9593,7 +9593,7 @@ class ShippingMethodClient extends Client {
|
|
|
9593
9593
|
* @throws {Error} if the request failed
|
|
9594
9594
|
*/
|
|
9595
9595
|
async searchShippingMethods(request) {
|
|
9596
|
-
const response = await this.
|
|
9596
|
+
const response = await this.post(`/search/shipping-method`, {
|
|
9597
9597
|
headers: { Accept: "application/json" },
|
|
9598
9598
|
body: new JsonPayload(request)
|
|
9599
9599
|
});
|
|
@@ -9674,7 +9674,7 @@ class ShippingMethodClient extends Client {
|
|
|
9674
9674
|
* @throws {Error} if the request failed
|
|
9675
9675
|
*/
|
|
9676
9676
|
async searchPrices(request) {
|
|
9677
|
-
const response = await this.
|
|
9677
|
+
const response = await this.post(`/search/shipping-method-price`, {
|
|
9678
9678
|
headers: { Accept: "application/json" },
|
|
9679
9679
|
body: new JsonPayload(request)
|
|
9680
9680
|
});
|
|
@@ -9758,7 +9758,7 @@ let DeliveryTimeClient$1 = class DeliveryTimeClient extends Client {
|
|
|
9758
9758
|
* @throws {Error} if the request failed
|
|
9759
9759
|
*/
|
|
9760
9760
|
async searchSnippets(request) {
|
|
9761
|
-
const response = await this.
|
|
9761
|
+
const response = await this.post(`/search/snippet`, {
|
|
9762
9762
|
headers: { Accept: "application/json" },
|
|
9763
9763
|
body: new JsonPayload(request)
|
|
9764
9764
|
});
|
|
@@ -9838,7 +9838,7 @@ let DeliveryTimeClient$1 = class DeliveryTimeClient extends Client {
|
|
|
9838
9838
|
* @throws {Error} if the request failed
|
|
9839
9839
|
*/
|
|
9840
9840
|
async searchSets(request) {
|
|
9841
|
-
const response = await this.
|
|
9841
|
+
const response = await this.post(`/search/snippet-set`, {
|
|
9842
9842
|
headers: { Accept: "application/json" },
|
|
9843
9843
|
body: new JsonPayload(request)
|
|
9844
9844
|
});
|
|
@@ -9922,7 +9922,7 @@ class DeliveryTimeClient extends Client {
|
|
|
9922
9922
|
* @throws {Error} if the request failed
|
|
9923
9923
|
*/
|
|
9924
9924
|
async searchStateMachines(request) {
|
|
9925
|
-
const response = await this.
|
|
9925
|
+
const response = await this.post(`/search/state-machine`, {
|
|
9926
9926
|
headers: { Accept: "application/json" },
|
|
9927
9927
|
body: new JsonPayload(request)
|
|
9928
9928
|
});
|
|
@@ -10003,7 +10003,7 @@ class DeliveryTimeClient extends Client {
|
|
|
10003
10003
|
* @throws {Error} if the request failed
|
|
10004
10004
|
*/
|
|
10005
10005
|
async searchStates(request) {
|
|
10006
|
-
const response = await this.
|
|
10006
|
+
const response = await this.post(`/search/state-machine-state`, {
|
|
10007
10007
|
headers: { Accept: "application/json" },
|
|
10008
10008
|
body: new JsonPayload(request)
|
|
10009
10009
|
});
|
|
@@ -10084,7 +10084,7 @@ class DeliveryTimeClient extends Client {
|
|
|
10084
10084
|
* @throws {Error} if the request failed
|
|
10085
10085
|
*/
|
|
10086
10086
|
async searchTransitions(request) {
|
|
10087
|
-
const response = await this.
|
|
10087
|
+
const response = await this.post(`/search/state-machine-transition`, {
|
|
10088
10088
|
headers: { Accept: "application/json" },
|
|
10089
10089
|
body: new JsonPayload(request)
|
|
10090
10090
|
});
|
|
@@ -10335,7 +10335,7 @@ let SystemClient$1 = class SystemClient extends Client {
|
|
|
10335
10335
|
* @throws {Error} if the request failed
|
|
10336
10336
|
*/
|
|
10337
10337
|
async searchLogEntries(request) {
|
|
10338
|
-
const response = await this.
|
|
10338
|
+
const response = await this.post(`/search/log-entry`, {
|
|
10339
10339
|
headers: { Accept: "application/json" },
|
|
10340
10340
|
body: new JsonPayload(request)
|
|
10341
10341
|
});
|
|
@@ -10416,7 +10416,7 @@ let SystemClient$1 = class SystemClient extends Client {
|
|
|
10416
10416
|
* @throws {Error} if the request failed
|
|
10417
10417
|
*/
|
|
10418
10418
|
async searchNotifications(request) {
|
|
10419
|
-
const response = await this.
|
|
10419
|
+
const response = await this.post(`/search/notification`, {
|
|
10420
10420
|
headers: { Accept: "application/json" },
|
|
10421
10421
|
body: new JsonPayload(request)
|
|
10422
10422
|
});
|
|
@@ -10497,7 +10497,7 @@ let SystemClient$1 = class SystemClient extends Client {
|
|
|
10497
10497
|
* @throws {Error} if the request failed
|
|
10498
10498
|
*/
|
|
10499
10499
|
async searchConfigEntries(request) {
|
|
10500
|
-
const response = await this.
|
|
10500
|
+
const response = await this.post(`/search/system-config`, {
|
|
10501
10501
|
headers: { Accept: "application/json" },
|
|
10502
10502
|
body: new JsonPayload(request)
|
|
10503
10503
|
});
|
|
@@ -10578,7 +10578,7 @@ let SystemClient$1 = class SystemClient extends Client {
|
|
|
10578
10578
|
* @throws {Error} if the request failed
|
|
10579
10579
|
*/
|
|
10580
10580
|
async searchScheduledTasks(request) {
|
|
10581
|
-
const response = await this.
|
|
10581
|
+
const response = await this.post(`/search/scheduled-task`, {
|
|
10582
10582
|
headers: { Accept: "application/json" },
|
|
10583
10583
|
body: new JsonPayload(request)
|
|
10584
10584
|
});
|
|
@@ -10660,7 +10660,7 @@ class TagClient extends Client {
|
|
|
10660
10660
|
* @throws {Error} if the request failed
|
|
10661
10661
|
*/
|
|
10662
10662
|
async searchTags(request) {
|
|
10663
|
-
const response = await this.
|
|
10663
|
+
const response = await this.post(`/search/tag`, {
|
|
10664
10664
|
headers: { Accept: "application/json" },
|
|
10665
10665
|
body: new JsonPayload(request)
|
|
10666
10666
|
});
|
|
@@ -10743,7 +10743,7 @@ class TaxClient extends Client {
|
|
|
10743
10743
|
* @throws {Error} if the request failed
|
|
10744
10744
|
*/
|
|
10745
10745
|
async searchTaxes(request) {
|
|
10746
|
-
const response = await this.
|
|
10746
|
+
const response = await this.post(`/search/tax`, {
|
|
10747
10747
|
headers: { Accept: "application/json" },
|
|
10748
10748
|
body: new JsonPayload(request)
|
|
10749
10749
|
});
|
|
@@ -10824,7 +10824,7 @@ class TaxClient extends Client {
|
|
|
10824
10824
|
* @throws {Error} if the request failed
|
|
10825
10825
|
*/
|
|
10826
10826
|
async searchProviders(request) {
|
|
10827
|
-
const response = await this.
|
|
10827
|
+
const response = await this.post(`/search/tax-provider`, {
|
|
10828
10828
|
headers: { Accept: "application/json" },
|
|
10829
10829
|
body: new JsonPayload(request)
|
|
10830
10830
|
});
|
|
@@ -10904,7 +10904,7 @@ class TaxClient extends Client {
|
|
|
10904
10904
|
* @throws {Error} if the request failed
|
|
10905
10905
|
*/
|
|
10906
10906
|
async searchRules(request) {
|
|
10907
|
-
const response = await this.
|
|
10907
|
+
const response = await this.post(`/search/tax-rule`, {
|
|
10908
10908
|
headers: { Accept: "application/json" },
|
|
10909
10909
|
body: new JsonPayload(request)
|
|
10910
10910
|
});
|
|
@@ -10985,7 +10985,7 @@ class TaxClient extends Client {
|
|
|
10985
10985
|
* @throws {Error} if the request failed
|
|
10986
10986
|
*/
|
|
10987
10987
|
async searchRuleTypes(request) {
|
|
10988
|
-
const response = await this.
|
|
10988
|
+
const response = await this.post(`/search/tax-rule-type`, {
|
|
10989
10989
|
headers: { Accept: "application/json" },
|
|
10990
10990
|
body: new JsonPayload(request)
|
|
10991
10991
|
});
|
|
@@ -11067,7 +11067,7 @@ class UnitClient extends Client {
|
|
|
11067
11067
|
* @throws {Error} if the request failed
|
|
11068
11068
|
*/
|
|
11069
11069
|
async searchUnits(request) {
|
|
11070
|
-
const response = await this.
|
|
11070
|
+
const response = await this.post(`/search/unit`, {
|
|
11071
11071
|
headers: { Accept: "application/json" },
|
|
11072
11072
|
body: new JsonPayload(request)
|
|
11073
11073
|
});
|
|
@@ -11150,7 +11150,7 @@ class UserClient extends Client {
|
|
|
11150
11150
|
* @throws {Error} if the request failed
|
|
11151
11151
|
*/
|
|
11152
11152
|
async searchUsers(request) {
|
|
11153
|
-
const response = await this.
|
|
11153
|
+
const response = await this.post(`/search/user`, {
|
|
11154
11154
|
headers: { Accept: "application/json" },
|
|
11155
11155
|
body: new JsonPayload(request)
|
|
11156
11156
|
});
|
|
@@ -11231,7 +11231,7 @@ class UserClient extends Client {
|
|
|
11231
11231
|
* @throws {Error} if the request failed
|
|
11232
11232
|
*/
|
|
11233
11233
|
async searchAccessKeys(request) {
|
|
11234
|
-
const response = await this.
|
|
11234
|
+
const response = await this.post(`/search/user-access-key`, {
|
|
11235
11235
|
headers: { Accept: "application/json" },
|
|
11236
11236
|
body: new JsonPayload(request)
|
|
11237
11237
|
});
|
|
@@ -11312,7 +11312,7 @@ class UserClient extends Client {
|
|
|
11312
11312
|
* @throws {Error} if the request failed
|
|
11313
11313
|
*/
|
|
11314
11314
|
async searchConfigs(request) {
|
|
11315
|
-
const response = await this.
|
|
11315
|
+
const response = await this.post(`/search/user-config`, {
|
|
11316
11316
|
headers: { Accept: "application/json" },
|
|
11317
11317
|
body: new JsonPayload(request)
|
|
11318
11318
|
});
|
|
@@ -11393,7 +11393,7 @@ class UserClient extends Client {
|
|
|
11393
11393
|
* @throws {Error} if the request failed
|
|
11394
11394
|
*/
|
|
11395
11395
|
async searchRecoveries(request) {
|
|
11396
|
-
const response = await this.
|
|
11396
|
+
const response = await this.post(`/search/user-recovery`, {
|
|
11397
11397
|
headers: { Accept: "application/json" },
|
|
11398
11398
|
body: new JsonPayload(request)
|
|
11399
11399
|
});
|
|
@@ -11477,7 +11477,7 @@ class WebhookClient extends Client {
|
|
|
11477
11477
|
* @throws {Error} if the request failed
|
|
11478
11478
|
*/
|
|
11479
11479
|
async searchWebhooks(request) {
|
|
11480
|
-
const response = await this.
|
|
11480
|
+
const response = await this.post(`/search/webhook`, {
|
|
11481
11481
|
headers: { Accept: "application/json" },
|
|
11482
11482
|
body: new JsonPayload(request)
|
|
11483
11483
|
});
|
|
@@ -11558,7 +11558,7 @@ class WebhookClient extends Client {
|
|
|
11558
11558
|
* @throws {Error} if the request failed
|
|
11559
11559
|
*/
|
|
11560
11560
|
async searchEventLogs(request) {
|
|
11561
|
-
const response = await this.
|
|
11561
|
+
const response = await this.post(`/search/webhook-event-log`, {
|
|
11562
11562
|
headers: { Accept: "application/json" },
|
|
11563
11563
|
body: new JsonPayload(request)
|
|
11564
11564
|
});
|
|
@@ -12768,6 +12768,11 @@ class StoreShopwareClient extends ShopwareClient {
|
|
|
12768
12768
|
}
|
|
12769
12769
|
|
|
12770
12770
|
exports.AdminShopwareClient = AdminShopwareClient;
|
|
12771
|
+
exports.BinaryPayload = BinaryPayload;
|
|
12772
|
+
exports.HTTPRequestMethod = HTTPRequestMethod;
|
|
12773
|
+
exports.HtmlPayload = HtmlPayload;
|
|
12774
|
+
exports.JsonPayload = JsonPayload;
|
|
12775
|
+
exports.Payload = Payload;
|
|
12771
12776
|
exports.ShopwareClient = ShopwareClient;
|
|
12772
12777
|
exports.ShopwareError = ShopwareError;
|
|
12773
12778
|
exports.StoreShopwareClient = StoreShopwareClient;
|