@gofynd/fdk-client-javascript 1.3.10-beta.3 → 1.3.11-beta.4
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/README.md +1 -1
- package/package.json +2 -2
- package/sdk/application/Cart/CartApplicationClient.js +28 -28
- package/sdk/application/Catalog/CatalogApplicationClient.js +30 -30
- package/sdk/application/Common/CommonApplicationClient.js +2 -2
- package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +16 -16
- package/sdk/application/Content/ContentApplicationClient.js +19 -19
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
- package/sdk/application/Lead/LeadApplicationClient.js +7 -7
- package/sdk/application/Logistic/LogisticApplicationClient.js +5 -5
- package/sdk/application/Order/OrderApplicationClient.js +12 -12
- package/sdk/application/Payment/PaymentApplicationClient.js +42 -42
- package/sdk/application/PosCart/PosCartApplicationClient.js +27 -27
- package/sdk/application/Rewards/RewardsApplicationClient.js +7 -7
- package/sdk/application/Share/ShareApplicationClient.js +7 -7
- package/sdk/application/Theme/ThemeApplicationClient.js +4 -4
- package/sdk/application/User/UserApplicationClient.js +40 -40
- package/sdk/common/utils.js +1 -1
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +3 -3
- package/sdk/partner/Theme/ThemePartnerClient.js +19 -19
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -4
- package/sdk/platform/Billing/BillingPlatformClient.js +17 -17
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +57 -57
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +64 -64
- package/sdk/platform/Catalog/CatalogPlatformClient.js +77 -77
- package/sdk/platform/Common/CommonPlatformClient.js +2 -2
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +59 -59
- package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +14 -14
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +32 -32
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +18 -18
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +69 -69
- package/sdk/platform/Discount/DiscountPlatformClient.js +11 -11
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +11 -11
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.js +24 -24
- package/sdk/platform/Inventory/InventoryPlatformClient.js +12 -12
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +13 -13
- package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
- package/sdk/platform/Order/OrderPlatformClient.d.ts +10 -0
- package/sdk/platform/Order/OrderPlatformClient.js +125 -44
- package/sdk/platform/Order/OrderPlatformModel.d.ts +58 -1
- package/sdk/platform/Order/OrderPlatformModel.js +72 -0
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +15 -1
- package/sdk/platform/Order/OrderPlatformValidator.js +14 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +2 -2
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +42 -42
- package/sdk/platform/Payment/PaymentPlatformClient.js +10 -10
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +12 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +14 -14
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +18 -18
- package/sdk/platform/Share/SharePlatformApplicationClient.js +5 -5
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +28 -28
- package/sdk/platform/Theme/ThemePlatformClient.js +3 -3
- package/sdk/platform/User/UserPlatformApplicationClient.js +18 -18
- package/sdk/platform/Webhook/WebhookPlatformClient.js +16 -16
- package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
- package/sdk/public/Inventory/InventoryPublicClient.js +6 -6
- package/sdk/public/Partner/PartnerPublicClient.js +1 -1
- package/sdk/public/Webhook/WebhookPublicClient.js +2 -2
|
@@ -78,7 +78,7 @@ class Catalog {
|
|
|
78
78
|
error: res_error,
|
|
79
79
|
} = CatalogPlatformModel.UpdatedResponse().validate(responseData, {
|
|
80
80
|
abortEarly: false,
|
|
81
|
-
allowUnknown:
|
|
81
|
+
allowUnknown: true,
|
|
82
82
|
});
|
|
83
83
|
|
|
84
84
|
if (res_error) {
|
|
@@ -159,7 +159,7 @@ class Catalog {
|
|
|
159
159
|
error: res_error,
|
|
160
160
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
161
161
|
abortEarly: false,
|
|
162
|
-
allowUnknown:
|
|
162
|
+
allowUnknown: true,
|
|
163
163
|
});
|
|
164
164
|
|
|
165
165
|
if (res_error) {
|
|
@@ -240,7 +240,7 @@ class Catalog {
|
|
|
240
240
|
error: res_error,
|
|
241
241
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
242
242
|
abortEarly: false,
|
|
243
|
-
allowUnknown:
|
|
243
|
+
allowUnknown: true,
|
|
244
244
|
});
|
|
245
245
|
|
|
246
246
|
if (res_error) {
|
|
@@ -320,7 +320,7 @@ class Catalog {
|
|
|
320
320
|
error: res_error,
|
|
321
321
|
} = CatalogPlatformModel.CollectionCreateResponse().validate(responseData, {
|
|
322
322
|
abortEarly: false,
|
|
323
|
-
allowUnknown:
|
|
323
|
+
allowUnknown: true,
|
|
324
324
|
});
|
|
325
325
|
|
|
326
326
|
if (res_error) {
|
|
@@ -404,7 +404,7 @@ class Catalog {
|
|
|
404
404
|
error: res_error,
|
|
405
405
|
} = CatalogPlatformModel.GetAppCatalogConfiguration().validate(
|
|
406
406
|
responseData,
|
|
407
|
-
{ abortEarly: false, allowUnknown:
|
|
407
|
+
{ abortEarly: false, allowUnknown: true }
|
|
408
408
|
);
|
|
409
409
|
|
|
410
410
|
if (res_error) {
|
|
@@ -486,7 +486,7 @@ class Catalog {
|
|
|
486
486
|
error: res_error,
|
|
487
487
|
} = CatalogPlatformModel.GetAppCatalogConfiguration().validate(
|
|
488
488
|
responseData,
|
|
489
|
-
{ abortEarly: false, allowUnknown:
|
|
489
|
+
{ abortEarly: false, allowUnknown: true }
|
|
490
490
|
);
|
|
491
491
|
|
|
492
492
|
if (res_error) {
|
|
@@ -569,7 +569,7 @@ class Catalog {
|
|
|
569
569
|
error: res_error,
|
|
570
570
|
} = CatalogPlatformModel.CreateAutocompleteWordsResponse().validate(
|
|
571
571
|
responseData,
|
|
572
|
-
{ abortEarly: false, allowUnknown:
|
|
572
|
+
{ abortEarly: false, allowUnknown: true }
|
|
573
573
|
);
|
|
574
574
|
|
|
575
575
|
if (res_error) {
|
|
@@ -650,7 +650,7 @@ class Catalog {
|
|
|
650
650
|
error: res_error,
|
|
651
651
|
} = CatalogPlatformModel.GetSearchWordsData().validate(responseData, {
|
|
652
652
|
abortEarly: false,
|
|
653
|
-
allowUnknown:
|
|
653
|
+
allowUnknown: true,
|
|
654
654
|
});
|
|
655
655
|
|
|
656
656
|
if (res_error) {
|
|
@@ -733,7 +733,7 @@ class Catalog {
|
|
|
733
733
|
error: res_error,
|
|
734
734
|
} = CatalogPlatformModel.AppConfigurationDetail().validate(responseData, {
|
|
735
735
|
abortEarly: false,
|
|
736
|
-
allowUnknown:
|
|
736
|
+
allowUnknown: true,
|
|
737
737
|
});
|
|
738
738
|
|
|
739
739
|
if (res_error) {
|
|
@@ -816,7 +816,7 @@ class Catalog {
|
|
|
816
816
|
error: res_error,
|
|
817
817
|
} = CatalogPlatformModel.AppConfigurationsSort().validate(responseData, {
|
|
818
818
|
abortEarly: false,
|
|
819
|
-
allowUnknown:
|
|
819
|
+
allowUnknown: true,
|
|
820
820
|
});
|
|
821
821
|
|
|
822
822
|
if (res_error) {
|
|
@@ -899,7 +899,7 @@ class Catalog {
|
|
|
899
899
|
error: res_error,
|
|
900
900
|
} = CatalogPlatformModel.CreateSearchConfigurationResponse().validate(
|
|
901
901
|
responseData,
|
|
902
|
-
{ abortEarly: false, allowUnknown:
|
|
902
|
+
{ abortEarly: false, allowUnknown: true }
|
|
903
903
|
);
|
|
904
904
|
|
|
905
905
|
if (res_error) {
|
|
@@ -980,7 +980,7 @@ class Catalog {
|
|
|
980
980
|
error: res_error,
|
|
981
981
|
} = CatalogPlatformModel.SuccessResponse().validate(responseData, {
|
|
982
982
|
abortEarly: false,
|
|
983
|
-
allowUnknown:
|
|
983
|
+
allowUnknown: true,
|
|
984
984
|
});
|
|
985
985
|
|
|
986
986
|
if (res_error) {
|
|
@@ -1061,7 +1061,7 @@ class Catalog {
|
|
|
1061
1061
|
error: res_error,
|
|
1062
1062
|
} = CatalogPlatformModel.DeleteResponse().validate(responseData, {
|
|
1063
1063
|
abortEarly: false,
|
|
1064
|
-
allowUnknown:
|
|
1064
|
+
allowUnknown: true,
|
|
1065
1065
|
});
|
|
1066
1066
|
|
|
1067
1067
|
if (res_error) {
|
|
@@ -1140,7 +1140,7 @@ class Catalog {
|
|
|
1140
1140
|
error: res_error,
|
|
1141
1141
|
} = CatalogPlatformModel.DeleteResponse().validate(responseData, {
|
|
1142
1142
|
abortEarly: false,
|
|
1143
|
-
allowUnknown:
|
|
1143
|
+
allowUnknown: true,
|
|
1144
1144
|
});
|
|
1145
1145
|
|
|
1146
1146
|
if (res_error) {
|
|
@@ -1223,7 +1223,7 @@ class Catalog {
|
|
|
1223
1223
|
error: res_error,
|
|
1224
1224
|
} = CatalogPlatformModel.ConfigSuccessResponse().validate(responseData, {
|
|
1225
1225
|
abortEarly: false,
|
|
1226
|
-
allowUnknown:
|
|
1226
|
+
allowUnknown: true,
|
|
1227
1227
|
});
|
|
1228
1228
|
|
|
1229
1229
|
if (res_error) {
|
|
@@ -1306,7 +1306,7 @@ class Catalog {
|
|
|
1306
1306
|
error: res_error,
|
|
1307
1307
|
} = CatalogPlatformModel.ConfigSuccessResponse().validate(responseData, {
|
|
1308
1308
|
abortEarly: false,
|
|
1309
|
-
allowUnknown:
|
|
1309
|
+
allowUnknown: true,
|
|
1310
1310
|
});
|
|
1311
1311
|
|
|
1312
1312
|
if (res_error) {
|
|
@@ -1385,7 +1385,7 @@ class Catalog {
|
|
|
1385
1385
|
error: res_error,
|
|
1386
1386
|
} = CatalogPlatformModel.DeleteSearchConfigurationResponse().validate(
|
|
1387
1387
|
responseData,
|
|
1388
|
-
{ abortEarly: false, allowUnknown:
|
|
1388
|
+
{ abortEarly: false, allowUnknown: true }
|
|
1389
1389
|
);
|
|
1390
1390
|
|
|
1391
1391
|
if (res_error) {
|
|
@@ -1466,7 +1466,7 @@ class Catalog {
|
|
|
1466
1466
|
error: res_error,
|
|
1467
1467
|
} = CatalogPlatformModel.DeleteResponse().validate(responseData, {
|
|
1468
1468
|
abortEarly: false,
|
|
1469
|
-
allowUnknown:
|
|
1469
|
+
allowUnknown: true,
|
|
1470
1470
|
});
|
|
1471
1471
|
|
|
1472
1472
|
if (res_error) {
|
|
@@ -1576,7 +1576,7 @@ class Catalog {
|
|
|
1576
1576
|
error: res_error,
|
|
1577
1577
|
} = CatalogPlatformModel.GetCollectionListingResponse().validate(
|
|
1578
1578
|
responseData,
|
|
1579
|
-
{ abortEarly: false, allowUnknown:
|
|
1579
|
+
{ abortEarly: false, allowUnknown: true }
|
|
1580
1580
|
);
|
|
1581
1581
|
|
|
1582
1582
|
if (res_error) {
|
|
@@ -1653,7 +1653,7 @@ class Catalog {
|
|
|
1653
1653
|
error: res_error,
|
|
1654
1654
|
} = CatalogPlatformModel.GetSearchWordsResponse().validate(responseData, {
|
|
1655
1655
|
abortEarly: false,
|
|
1656
|
-
allowUnknown:
|
|
1656
|
+
allowUnknown: true,
|
|
1657
1657
|
});
|
|
1658
1658
|
|
|
1659
1659
|
if (res_error) {
|
|
@@ -1732,7 +1732,7 @@ class Catalog {
|
|
|
1732
1732
|
error: res_error,
|
|
1733
1733
|
} = CatalogPlatformModel.BaseAppCategoryReturnConfigResponse().validate(
|
|
1734
1734
|
responseData,
|
|
1735
|
-
{ abortEarly: false, allowUnknown:
|
|
1735
|
+
{ abortEarly: false, allowUnknown: true }
|
|
1736
1736
|
);
|
|
1737
1737
|
|
|
1738
1738
|
if (res_error) {
|
|
@@ -1839,7 +1839,7 @@ class Catalog {
|
|
|
1839
1839
|
error: res_error,
|
|
1840
1840
|
} = CatalogPlatformModel.InventoryStockResponse().validate(responseData, {
|
|
1841
1841
|
abortEarly: false,
|
|
1842
|
-
allowUnknown:
|
|
1842
|
+
allowUnknown: true,
|
|
1843
1843
|
});
|
|
1844
1844
|
|
|
1845
1845
|
if (res_error) {
|
|
@@ -1936,7 +1936,7 @@ class Catalog {
|
|
|
1936
1936
|
error: res_error,
|
|
1937
1937
|
} = CatalogPlatformModel.LocationListSerializer().validate(responseData, {
|
|
1938
1938
|
abortEarly: false,
|
|
1939
|
-
allowUnknown:
|
|
1939
|
+
allowUnknown: true,
|
|
1940
1940
|
});
|
|
1941
1941
|
|
|
1942
1942
|
if (res_error) {
|
|
@@ -2067,7 +2067,7 @@ class Catalog {
|
|
|
2067
2067
|
error: res_error,
|
|
2068
2068
|
} = CatalogPlatformModel.OwnerAppItemResponse().validate(responseData, {
|
|
2069
2069
|
abortEarly: false,
|
|
2070
|
-
allowUnknown:
|
|
2070
|
+
allowUnknown: true,
|
|
2071
2071
|
});
|
|
2072
2072
|
|
|
2073
2073
|
if (res_error) {
|
|
@@ -2179,7 +2179,7 @@ class Catalog {
|
|
|
2179
2179
|
error: res_error,
|
|
2180
2180
|
} = CatalogPlatformModel.RawProductListingResponse().validate(
|
|
2181
2181
|
responseData,
|
|
2182
|
-
{ abortEarly: false, allowUnknown:
|
|
2182
|
+
{ abortEarly: false, allowUnknown: true }
|
|
2183
2183
|
);
|
|
2184
2184
|
|
|
2185
2185
|
if (res_error) {
|
|
@@ -2256,7 +2256,7 @@ class Catalog {
|
|
|
2256
2256
|
error: res_error,
|
|
2257
2257
|
} = CatalogPlatformModel.AppReturnConfigResponse().validate(responseData, {
|
|
2258
2258
|
abortEarly: false,
|
|
2259
|
-
allowUnknown:
|
|
2259
|
+
allowUnknown: true,
|
|
2260
2260
|
});
|
|
2261
2261
|
|
|
2262
2262
|
if (res_error) {
|
|
@@ -2383,7 +2383,7 @@ class Catalog {
|
|
|
2383
2383
|
error: res_error,
|
|
2384
2384
|
} = CatalogPlatformModel.ApplicationProductListingResponse().validate(
|
|
2385
2385
|
responseData,
|
|
2386
|
-
{ abortEarly: false, allowUnknown:
|
|
2386
|
+
{ abortEarly: false, allowUnknown: true }
|
|
2387
2387
|
);
|
|
2388
2388
|
|
|
2389
2389
|
if (res_error) {
|
|
@@ -2543,7 +2543,7 @@ class Catalog {
|
|
|
2543
2543
|
error: res_error,
|
|
2544
2544
|
} = CatalogPlatformModel.BrandListingResponse().validate(responseData, {
|
|
2545
2545
|
abortEarly: false,
|
|
2546
|
-
allowUnknown:
|
|
2546
|
+
allowUnknown: true,
|
|
2547
2547
|
});
|
|
2548
2548
|
|
|
2549
2549
|
if (res_error) {
|
|
@@ -2681,7 +2681,7 @@ class Catalog {
|
|
|
2681
2681
|
error: res_error,
|
|
2682
2682
|
} = CatalogPlatformModel.BrandListingResponse().validate(responseData, {
|
|
2683
2683
|
abortEarly: false,
|
|
2684
|
-
allowUnknown:
|
|
2684
|
+
allowUnknown: true,
|
|
2685
2685
|
});
|
|
2686
2686
|
|
|
2687
2687
|
if (res_error) {
|
|
@@ -2826,7 +2826,7 @@ class Catalog {
|
|
|
2826
2826
|
error: res_error,
|
|
2827
2827
|
} = CatalogPlatformModel.BrandListingResponse().validate(responseData, {
|
|
2828
2828
|
abortEarly: false,
|
|
2829
|
-
allowUnknown:
|
|
2829
|
+
allowUnknown: true,
|
|
2830
2830
|
});
|
|
2831
2831
|
|
|
2832
2832
|
if (res_error) {
|
|
@@ -2962,7 +2962,7 @@ class Catalog {
|
|
|
2962
2962
|
error: res_error,
|
|
2963
2963
|
} = CatalogPlatformModel.ApplicationDepartmentListingResponse().validate(
|
|
2964
2964
|
responseData,
|
|
2965
|
-
{ abortEarly: false, allowUnknown:
|
|
2965
|
+
{ abortEarly: false, allowUnknown: true }
|
|
2966
2966
|
);
|
|
2967
2967
|
|
|
2968
2968
|
if (res_error) {
|
|
@@ -3082,7 +3082,7 @@ class Catalog {
|
|
|
3082
3082
|
error: res_error,
|
|
3083
3083
|
} = CatalogPlatformModel.GetAutocompleteWordsResponse().validate(
|
|
3084
3084
|
responseData,
|
|
3085
|
-
{ abortEarly: false, allowUnknown:
|
|
3085
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3086
3086
|
);
|
|
3087
3087
|
|
|
3088
3088
|
if (res_error) {
|
|
@@ -3164,7 +3164,7 @@ class Catalog {
|
|
|
3164
3164
|
error: res_error,
|
|
3165
3165
|
} = CatalogPlatformModel.GetAutocompleteWordsResponse().validate(
|
|
3166
3166
|
responseData,
|
|
3167
|
-
{ abortEarly: false, allowUnknown:
|
|
3167
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3168
3168
|
);
|
|
3169
3169
|
|
|
3170
3170
|
if (res_error) {
|
|
@@ -3243,7 +3243,7 @@ class Catalog {
|
|
|
3243
3243
|
error: res_error,
|
|
3244
3244
|
} = CatalogPlatformModel.GetCatalogConfigurationMetaData().validate(
|
|
3245
3245
|
responseData,
|
|
3246
|
-
{ abortEarly: false, allowUnknown:
|
|
3246
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3247
3247
|
);
|
|
3248
3248
|
|
|
3249
3249
|
if (res_error) {
|
|
@@ -3325,7 +3325,7 @@ class Catalog {
|
|
|
3325
3325
|
error: res_error,
|
|
3326
3326
|
} = CatalogPlatformModel.CatalogInsightResponse().validate(responseData, {
|
|
3327
3327
|
abortEarly: false,
|
|
3328
|
-
allowUnknown:
|
|
3328
|
+
allowUnknown: true,
|
|
3329
3329
|
});
|
|
3330
3330
|
|
|
3331
3331
|
if (res_error) {
|
|
@@ -3405,7 +3405,7 @@ class Catalog {
|
|
|
3405
3405
|
error: res_error,
|
|
3406
3406
|
} = CatalogPlatformModel.CategoryListingResponse().validate(responseData, {
|
|
3407
3407
|
abortEarly: false,
|
|
3408
|
-
allowUnknown:
|
|
3408
|
+
allowUnknown: true,
|
|
3409
3409
|
});
|
|
3410
3410
|
|
|
3411
3411
|
if (res_error) {
|
|
@@ -3487,7 +3487,7 @@ class Catalog {
|
|
|
3487
3487
|
error: res_error,
|
|
3488
3488
|
} = CatalogPlatformModel.CollectionDetailResponse().validate(responseData, {
|
|
3489
3489
|
abortEarly: false,
|
|
3490
|
-
allowUnknown:
|
|
3490
|
+
allowUnknown: true,
|
|
3491
3491
|
});
|
|
3492
3492
|
|
|
3493
3493
|
if (res_error) {
|
|
@@ -3578,7 +3578,7 @@ class Catalog {
|
|
|
3578
3578
|
error: res_error,
|
|
3579
3579
|
} = CatalogPlatformModel.GetCollectionItemsResponse().validate(
|
|
3580
3580
|
responseData,
|
|
3581
|
-
{ abortEarly: false, allowUnknown:
|
|
3581
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3582
3582
|
);
|
|
3583
3583
|
|
|
3584
3584
|
if (res_error) {
|
|
@@ -3661,7 +3661,7 @@ class Catalog {
|
|
|
3661
3661
|
error: res_error,
|
|
3662
3662
|
} = CatalogPlatformModel.GetAppCatalogEntityConfiguration().validate(
|
|
3663
3663
|
responseData,
|
|
3664
|
-
{ abortEarly: false, allowUnknown:
|
|
3664
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3665
3665
|
);
|
|
3666
3666
|
|
|
3667
3667
|
if (res_error) {
|
|
@@ -3746,7 +3746,7 @@ class Catalog {
|
|
|
3746
3746
|
error: res_error,
|
|
3747
3747
|
} = CatalogPlatformModel.GetConfigMetadataResponse().validate(
|
|
3748
3748
|
responseData,
|
|
3749
|
-
{ abortEarly: false, allowUnknown:
|
|
3749
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3750
3750
|
);
|
|
3751
3751
|
|
|
3752
3752
|
if (res_error) {
|
|
@@ -3824,7 +3824,7 @@ class Catalog {
|
|
|
3824
3824
|
error: res_error,
|
|
3825
3825
|
} = CatalogPlatformModel.GetAppCatalogConfiguration().validate(
|
|
3826
3826
|
responseData,
|
|
3827
|
-
{ abortEarly: false, allowUnknown:
|
|
3827
|
+
{ abortEarly: false, allowUnknown: true }
|
|
3828
3828
|
);
|
|
3829
3829
|
|
|
3830
3830
|
if (res_error) {
|
|
@@ -3899,7 +3899,7 @@ class Catalog {
|
|
|
3899
3899
|
error: res_error,
|
|
3900
3900
|
} = CatalogPlatformModel.DepartmentResponse().validate(responseData, {
|
|
3901
3901
|
abortEarly: false,
|
|
3902
|
-
allowUnknown:
|
|
3902
|
+
allowUnknown: true,
|
|
3903
3903
|
});
|
|
3904
3904
|
|
|
3905
3905
|
if (res_error) {
|
|
@@ -4004,7 +4004,7 @@ class Catalog {
|
|
|
4004
4004
|
error: res_error,
|
|
4005
4005
|
} = CatalogPlatformModel.InventorySellerIdentifierResponsePaginated().validate(
|
|
4006
4006
|
responseData,
|
|
4007
|
-
{ abortEarly: false, allowUnknown:
|
|
4007
|
+
{ abortEarly: false, allowUnknown: true }
|
|
4008
4008
|
);
|
|
4009
4009
|
|
|
4010
4010
|
if (res_error) {
|
|
@@ -4099,7 +4099,7 @@ class Catalog {
|
|
|
4099
4099
|
error: res_error,
|
|
4100
4100
|
} = CatalogPlatformModel.GetConfigResponse().validate(responseData, {
|
|
4101
4101
|
abortEarly: false,
|
|
4102
|
-
allowUnknown:
|
|
4102
|
+
allowUnknown: true,
|
|
4103
4103
|
});
|
|
4104
4104
|
|
|
4105
4105
|
if (res_error) {
|
|
@@ -4191,7 +4191,7 @@ class Catalog {
|
|
|
4191
4191
|
error: res_error,
|
|
4192
4192
|
} = CatalogPlatformModel.GetConfigResponse().validate(responseData, {
|
|
4193
4193
|
abortEarly: false,
|
|
4194
|
-
allowUnknown:
|
|
4194
|
+
allowUnknown: true,
|
|
4195
4195
|
});
|
|
4196
4196
|
|
|
4197
4197
|
if (res_error) {
|
|
@@ -4272,7 +4272,7 @@ class Catalog {
|
|
|
4272
4272
|
error: res_error,
|
|
4273
4273
|
} = CatalogPlatformModel.ProductDetail().validate(responseData, {
|
|
4274
4274
|
abortEarly: false,
|
|
4275
|
-
allowUnknown:
|
|
4275
|
+
allowUnknown: true,
|
|
4276
4276
|
});
|
|
4277
4277
|
|
|
4278
4278
|
if (res_error) {
|
|
@@ -4349,7 +4349,7 @@ class Catalog {
|
|
|
4349
4349
|
error: res_error,
|
|
4350
4350
|
} = CatalogPlatformModel.GetCollectionQueryOptionResponse().validate(
|
|
4351
4351
|
responseData,
|
|
4352
|
-
{ abortEarly: false, allowUnknown:
|
|
4352
|
+
{ abortEarly: false, allowUnknown: true }
|
|
4353
4353
|
);
|
|
4354
4354
|
|
|
4355
4355
|
if (res_error) {
|
|
@@ -4428,7 +4428,7 @@ class Catalog {
|
|
|
4428
4428
|
error: res_error,
|
|
4429
4429
|
} = CatalogPlatformModel.GetSearchConfigurationResponse().validate(
|
|
4430
4430
|
responseData,
|
|
4431
|
-
{ abortEarly: false, allowUnknown:
|
|
4431
|
+
{ abortEarly: false, allowUnknown: true }
|
|
4432
4432
|
);
|
|
4433
4433
|
|
|
4434
4434
|
if (res_error) {
|
|
@@ -4510,7 +4510,7 @@ class Catalog {
|
|
|
4510
4510
|
error: res_error,
|
|
4511
4511
|
} = CatalogPlatformModel.GetSearchWordsDetailResponse().validate(
|
|
4512
4512
|
responseData,
|
|
4513
|
-
{ abortEarly: false, allowUnknown:
|
|
4513
|
+
{ abortEarly: false, allowUnknown: true }
|
|
4514
4514
|
);
|
|
4515
4515
|
|
|
4516
4516
|
if (res_error) {
|
|
@@ -4591,7 +4591,7 @@ class Catalog {
|
|
|
4591
4591
|
error: res_error,
|
|
4592
4592
|
} = CatalogPlatformModel.ConfigSuccessResponse().validate(responseData, {
|
|
4593
4593
|
abortEarly: false,
|
|
4594
|
-
allowUnknown:
|
|
4594
|
+
allowUnknown: true,
|
|
4595
4595
|
});
|
|
4596
4596
|
|
|
4597
4597
|
if (res_error) {
|
|
@@ -4672,7 +4672,7 @@ class Catalog {
|
|
|
4672
4672
|
error: res_error,
|
|
4673
4673
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
4674
4674
|
abortEarly: false,
|
|
4675
|
-
allowUnknown:
|
|
4675
|
+
allowUnknown: true,
|
|
4676
4676
|
});
|
|
4677
4677
|
|
|
4678
4678
|
if (res_error) {
|
|
@@ -4755,7 +4755,7 @@ class Catalog {
|
|
|
4755
4755
|
error: res_error,
|
|
4756
4756
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
4757
4757
|
abortEarly: false,
|
|
4758
|
-
allowUnknown:
|
|
4758
|
+
allowUnknown: true,
|
|
4759
4759
|
});
|
|
4760
4760
|
|
|
4761
4761
|
if (res_error) {
|
|
@@ -4836,7 +4836,7 @@ class Catalog {
|
|
|
4836
4836
|
error: res_error,
|
|
4837
4837
|
} = CatalogPlatformModel.SuccessResponse().validate(responseData, {
|
|
4838
4838
|
abortEarly: false,
|
|
4839
|
-
allowUnknown:
|
|
4839
|
+
allowUnknown: true,
|
|
4840
4840
|
});
|
|
4841
4841
|
|
|
4842
4842
|
if (res_error) {
|
|
@@ -4919,7 +4919,7 @@ class Catalog {
|
|
|
4919
4919
|
error: res_error,
|
|
4920
4920
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
4921
4921
|
abortEarly: false,
|
|
4922
|
-
allowUnknown:
|
|
4922
|
+
allowUnknown: true,
|
|
4923
4923
|
});
|
|
4924
4924
|
|
|
4925
4925
|
if (res_error) {
|
|
@@ -5002,7 +5002,7 @@ class Catalog {
|
|
|
5002
5002
|
error: res_error,
|
|
5003
5003
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
5004
5004
|
abortEarly: false,
|
|
5005
|
-
allowUnknown:
|
|
5005
|
+
allowUnknown: true,
|
|
5006
5006
|
});
|
|
5007
5007
|
|
|
5008
5008
|
if (res_error) {
|
|
@@ -5083,7 +5083,7 @@ class Catalog {
|
|
|
5083
5083
|
error: res_error,
|
|
5084
5084
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
5085
5085
|
abortEarly: false,
|
|
5086
|
-
allowUnknown:
|
|
5086
|
+
allowUnknown: true,
|
|
5087
5087
|
});
|
|
5088
5088
|
|
|
5089
5089
|
if (res_error) {
|
|
@@ -5164,7 +5164,7 @@ class Catalog {
|
|
|
5164
5164
|
error: res_error,
|
|
5165
5165
|
} = CatalogPlatformModel.SuccessResponse1().validate(responseData, {
|
|
5166
5166
|
abortEarly: false,
|
|
5167
|
-
allowUnknown:
|
|
5167
|
+
allowUnknown: true,
|
|
5168
5168
|
});
|
|
5169
5169
|
|
|
5170
5170
|
if (res_error) {
|
|
@@ -5248,7 +5248,7 @@ class Catalog {
|
|
|
5248
5248
|
error: res_error,
|
|
5249
5249
|
} = CatalogPlatformModel.GetAutocompleteWordsResponse().validate(
|
|
5250
5250
|
responseData,
|
|
5251
|
-
{ abortEarly: false, allowUnknown:
|
|
5251
|
+
{ abortEarly: false, allowUnknown: true }
|
|
5252
5252
|
);
|
|
5253
5253
|
|
|
5254
5254
|
if (res_error) {
|
|
@@ -5329,7 +5329,7 @@ class Catalog {
|
|
|
5329
5329
|
error: res_error,
|
|
5330
5330
|
} = CatalogPlatformModel.UpdateCollection().validate(responseData, {
|
|
5331
5331
|
abortEarly: false,
|
|
5332
|
-
allowUnknown:
|
|
5332
|
+
allowUnknown: true,
|
|
5333
5333
|
});
|
|
5334
5334
|
|
|
5335
5335
|
if (res_error) {
|
|
@@ -5410,7 +5410,7 @@ class Catalog {
|
|
|
5410
5410
|
error: res_error,
|
|
5411
5411
|
} = CatalogPlatformModel.ConfigSuccessResponse().validate(responseData, {
|
|
5412
5412
|
abortEarly: false,
|
|
5413
|
-
allowUnknown:
|
|
5413
|
+
allowUnknown: true,
|
|
5414
5414
|
});
|
|
5415
5415
|
|
|
5416
5416
|
if (res_error) {
|
|
@@ -5495,7 +5495,7 @@ class Catalog {
|
|
|
5495
5495
|
error: res_error,
|
|
5496
5496
|
} = CatalogPlatformModel.AppConfigurationDetail().validate(responseData, {
|
|
5497
5497
|
abortEarly: false,
|
|
5498
|
-
allowUnknown:
|
|
5498
|
+
allowUnknown: true,
|
|
5499
5499
|
});
|
|
5500
5500
|
|
|
5501
5501
|
if (res_error) {
|
|
@@ -5580,7 +5580,7 @@ class Catalog {
|
|
|
5580
5580
|
error: res_error,
|
|
5581
5581
|
} = CatalogPlatformModel.AppConfigurationsSort().validate(responseData, {
|
|
5582
5582
|
abortEarly: false,
|
|
5583
|
-
allowUnknown:
|
|
5583
|
+
allowUnknown: true,
|
|
5584
5584
|
});
|
|
5585
5585
|
|
|
5586
5586
|
if (res_error) {
|
|
@@ -5663,7 +5663,7 @@ class Catalog {
|
|
|
5663
5663
|
error: res_error,
|
|
5664
5664
|
} = CatalogPlatformModel.UpdateSearchConfigurationResponse().validate(
|
|
5665
5665
|
responseData,
|
|
5666
|
-
{ abortEarly: false, allowUnknown:
|
|
5666
|
+
{ abortEarly: false, allowUnknown: true }
|
|
5667
5667
|
);
|
|
5668
5668
|
|
|
5669
5669
|
if (res_error) {
|
|
@@ -5746,7 +5746,7 @@ class Catalog {
|
|
|
5746
5746
|
error: res_error,
|
|
5747
5747
|
} = CatalogPlatformModel.GetSearchWordsData().validate(responseData, {
|
|
5748
5748
|
abortEarly: false,
|
|
5749
|
-
allowUnknown:
|
|
5749
|
+
allowUnknown: true,
|
|
5750
5750
|
});
|
|
5751
5751
|
|
|
5752
5752
|
if (res_error) {
|