@gofynd/fdk-client-javascript 1.3.10-beta.3 → 1.3.11-beta.5
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 +76 -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
|
@@ -100,7 +100,7 @@ class FileStorage {
|
|
|
100
100
|
error: res_error,
|
|
101
101
|
} = FileStoragePlatformModel.CompleteResponse().validate(responseData, {
|
|
102
102
|
abortEarly: false,
|
|
103
|
-
allowUnknown:
|
|
103
|
+
allowUnknown: true,
|
|
104
104
|
});
|
|
105
105
|
|
|
106
106
|
if (res_error) {
|
|
@@ -180,7 +180,7 @@ class FileStorage {
|
|
|
180
180
|
|
|
181
181
|
const { error: res_error } = Joi.any().validate(responseData, {
|
|
182
182
|
abortEarly: false,
|
|
183
|
-
allowUnknown:
|
|
183
|
+
allowUnknown: true,
|
|
184
184
|
});
|
|
185
185
|
|
|
186
186
|
if (res_error) {
|
|
@@ -283,7 +283,7 @@ class FileStorage {
|
|
|
283
283
|
error: res_error,
|
|
284
284
|
} = FileStoragePlatformModel.StartResponse().validate(responseData, {
|
|
285
285
|
abortEarly: false,
|
|
286
|
-
allowUnknown:
|
|
286
|
+
allowUnknown: true,
|
|
287
287
|
});
|
|
288
288
|
|
|
289
289
|
if (res_error) {
|
|
@@ -368,7 +368,7 @@ class FileStorage {
|
|
|
368
368
|
|
|
369
369
|
const { error: res_error } = Joi.any().validate(responseData, {
|
|
370
370
|
abortEarly: false,
|
|
371
|
-
allowUnknown:
|
|
371
|
+
allowUnknown: true,
|
|
372
372
|
});
|
|
373
373
|
|
|
374
374
|
if (res_error) {
|
|
@@ -447,7 +447,7 @@ class FileStorage {
|
|
|
447
447
|
|
|
448
448
|
const { error: res_error } = Joi.any().validate(responseData, {
|
|
449
449
|
abortEarly: false,
|
|
450
|
-
allowUnknown:
|
|
450
|
+
allowUnknown: true,
|
|
451
451
|
});
|
|
452
452
|
|
|
453
453
|
if (res_error) {
|
|
@@ -532,7 +532,7 @@ class FileStorage {
|
|
|
532
532
|
error: res_error,
|
|
533
533
|
} = FileStoragePlatformModel.PdfConfigSuccess().validate(responseData, {
|
|
534
534
|
abortEarly: false,
|
|
535
|
-
allowUnknown:
|
|
535
|
+
allowUnknown: true,
|
|
536
536
|
});
|
|
537
537
|
|
|
538
538
|
if (res_error) {
|
|
@@ -615,7 +615,7 @@ class FileStorage {
|
|
|
615
615
|
error: res_error,
|
|
616
616
|
} = FileStoragePlatformModel.DummyTemplateDataItems().validate(
|
|
617
617
|
responseData,
|
|
618
|
-
{ abortEarly: false, allowUnknown:
|
|
618
|
+
{ abortEarly: false, allowUnknown: true }
|
|
619
619
|
);
|
|
620
620
|
|
|
621
621
|
if (res_error) {
|
|
@@ -701,7 +701,7 @@ class FileStorage {
|
|
|
701
701
|
error: res_error,
|
|
702
702
|
} = FileStoragePlatformModel.PdfDefaultTemplateSuccess().validate(
|
|
703
703
|
responseData,
|
|
704
|
-
{ abortEarly: false, allowUnknown:
|
|
704
|
+
{ abortEarly: false, allowUnknown: true }
|
|
705
705
|
);
|
|
706
706
|
|
|
707
707
|
if (res_error) {
|
|
@@ -777,7 +777,7 @@ class FileStorage {
|
|
|
777
777
|
error: res_error,
|
|
778
778
|
} = FileStoragePlatformModel.InvoiceTypesResponse().validate(responseData, {
|
|
779
779
|
abortEarly: false,
|
|
780
|
-
allowUnknown:
|
|
780
|
+
allowUnknown: true,
|
|
781
781
|
});
|
|
782
782
|
|
|
783
783
|
if (res_error) {
|
|
@@ -859,7 +859,7 @@ class FileStorage {
|
|
|
859
859
|
error: res_error,
|
|
860
860
|
} = FileStoragePlatformModel.PdfConfigSaveSuccess().validate(responseData, {
|
|
861
861
|
abortEarly: false,
|
|
862
|
-
allowUnknown:
|
|
862
|
+
allowUnknown: true,
|
|
863
863
|
});
|
|
864
864
|
|
|
865
865
|
if (res_error) {
|
|
@@ -943,7 +943,7 @@ class FileStorage {
|
|
|
943
943
|
error: res_error,
|
|
944
944
|
} = FileStoragePlatformModel.PdfConfigSaveSuccess().validate(responseData, {
|
|
945
945
|
abortEarly: false,
|
|
946
|
-
allowUnknown:
|
|
946
|
+
allowUnknown: true,
|
|
947
947
|
});
|
|
948
948
|
|
|
949
949
|
if (res_error) {
|
|
@@ -82,7 +82,7 @@ class FileStorage {
|
|
|
82
82
|
|
|
83
83
|
const { error: res_error } = Joi.any().validate(responseData, {
|
|
84
84
|
abortEarly: false,
|
|
85
|
-
allowUnknown:
|
|
85
|
+
allowUnknown: true,
|
|
86
86
|
});
|
|
87
87
|
|
|
88
88
|
if (res_error) {
|
|
@@ -183,7 +183,7 @@ class FileStorage {
|
|
|
183
183
|
error: res_error,
|
|
184
184
|
} = FileStoragePlatformModel.CompleteResponse().validate(responseData, {
|
|
185
185
|
abortEarly: false,
|
|
186
|
-
allowUnknown:
|
|
186
|
+
allowUnknown: true,
|
|
187
187
|
});
|
|
188
188
|
|
|
189
189
|
if (res_error) {
|
|
@@ -263,7 +263,7 @@ class FileStorage {
|
|
|
263
263
|
|
|
264
264
|
const { error: res_error } = Joi.any().validate(responseData, {
|
|
265
265
|
abortEarly: false,
|
|
266
|
-
allowUnknown:
|
|
266
|
+
allowUnknown: true,
|
|
267
267
|
});
|
|
268
268
|
|
|
269
269
|
if (res_error) {
|
|
@@ -342,7 +342,7 @@ class FileStorage {
|
|
|
342
342
|
error: res_error,
|
|
343
343
|
} = FileStoragePlatformModel.SignUrlResponse().validate(responseData, {
|
|
344
344
|
abortEarly: false,
|
|
345
|
-
allowUnknown:
|
|
345
|
+
allowUnknown: true,
|
|
346
346
|
});
|
|
347
347
|
|
|
348
348
|
if (res_error) {
|
|
@@ -418,7 +418,7 @@ class FileStorage {
|
|
|
418
418
|
|
|
419
419
|
const { error: res_error } = Joi.string()
|
|
420
420
|
.allow("")
|
|
421
|
-
.validate(responseData, { abortEarly: false, allowUnknown:
|
|
421
|
+
.validate(responseData, { abortEarly: false, allowUnknown: true });
|
|
422
422
|
|
|
423
423
|
if (res_error) {
|
|
424
424
|
if (this.config.options.strictResponseCheck === true) {
|
|
@@ -518,7 +518,7 @@ class FileStorage {
|
|
|
518
518
|
error: res_error,
|
|
519
519
|
} = FileStoragePlatformModel.StartResponse().validate(responseData, {
|
|
520
520
|
abortEarly: false,
|
|
521
|
-
allowUnknown:
|
|
521
|
+
allowUnknown: true,
|
|
522
522
|
});
|
|
523
523
|
|
|
524
524
|
if (res_error) {
|
|
@@ -78,7 +78,7 @@ class Finance {
|
|
|
78
78
|
error: res_error,
|
|
79
79
|
} = FinancePlatformModel.ChannelDisplayNameResponse().validate(
|
|
80
80
|
responseData,
|
|
81
|
-
{ abortEarly: false, allowUnknown:
|
|
81
|
+
{ abortEarly: false, allowUnknown: true }
|
|
82
82
|
);
|
|
83
83
|
|
|
84
84
|
if (res_error) {
|
|
@@ -163,7 +163,7 @@ class Finance {
|
|
|
163
163
|
error: res_error,
|
|
164
164
|
} = FinancePlatformModel.CreateSellerCreditNoteConfigResponse().validate(
|
|
165
165
|
responseData,
|
|
166
|
-
{ abortEarly: false, allowUnknown:
|
|
166
|
+
{ abortEarly: false, allowUnknown: true }
|
|
167
167
|
);
|
|
168
168
|
|
|
169
169
|
if (res_error) {
|
|
@@ -243,7 +243,7 @@ class Finance {
|
|
|
243
243
|
error: res_error,
|
|
244
244
|
} = FinancePlatformModel.CreditNoteDetailsResponse().validate(
|
|
245
245
|
responseData,
|
|
246
|
-
{ abortEarly: false, allowUnknown:
|
|
246
|
+
{ abortEarly: false, allowUnknown: true }
|
|
247
247
|
);
|
|
248
248
|
|
|
249
249
|
if (res_error) {
|
|
@@ -326,7 +326,7 @@ class Finance {
|
|
|
326
326
|
error: res_error,
|
|
327
327
|
} = FinancePlatformModel.CreditlineDataPlatformResponse().validate(
|
|
328
328
|
responseData,
|
|
329
|
-
{ abortEarly: false, allowUnknown:
|
|
329
|
+
{ abortEarly: false, allowUnknown: true }
|
|
330
330
|
);
|
|
331
331
|
|
|
332
332
|
if (res_error) {
|
|
@@ -405,7 +405,7 @@ class Finance {
|
|
|
405
405
|
error: res_error,
|
|
406
406
|
} = FinancePlatformModel.DeleteConfigResponse().validate(responseData, {
|
|
407
407
|
abortEarly: false,
|
|
408
|
-
allowUnknown:
|
|
408
|
+
allowUnknown: true,
|
|
409
409
|
});
|
|
410
410
|
|
|
411
411
|
if (res_error) {
|
|
@@ -488,7 +488,7 @@ class Finance {
|
|
|
488
488
|
error: res_error,
|
|
489
489
|
} = FinancePlatformModel.DownloadCreditDebitNoteResponse().validate(
|
|
490
490
|
responseData,
|
|
491
|
-
{ abortEarly: false, allowUnknown:
|
|
491
|
+
{ abortEarly: false, allowUnknown: true }
|
|
492
492
|
);
|
|
493
493
|
|
|
494
494
|
if (res_error) {
|
|
@@ -567,7 +567,7 @@ class Finance {
|
|
|
567
567
|
error: res_error,
|
|
568
568
|
} = FinancePlatformModel.DownloadReportList().validate(responseData, {
|
|
569
569
|
abortEarly: false,
|
|
570
|
-
allowUnknown:
|
|
570
|
+
allowUnknown: true,
|
|
571
571
|
});
|
|
572
572
|
|
|
573
573
|
if (res_error) {
|
|
@@ -650,7 +650,7 @@ class Finance {
|
|
|
650
650
|
error: res_error,
|
|
651
651
|
} = FinancePlatformModel.DownloadReportCustomerCnResponse().validate(
|
|
652
652
|
responseData,
|
|
653
|
-
{ abortEarly: false, allowUnknown:
|
|
653
|
+
{ abortEarly: false, allowUnknown: true }
|
|
654
654
|
);
|
|
655
655
|
|
|
656
656
|
if (res_error) {
|
|
@@ -729,7 +729,7 @@ class Finance {
|
|
|
729
729
|
error: res_error,
|
|
730
730
|
} = FinancePlatformModel.GenerateReportJson().validate(responseData, {
|
|
731
731
|
abortEarly: false,
|
|
732
|
-
allowUnknown:
|
|
732
|
+
allowUnknown: true,
|
|
733
733
|
});
|
|
734
734
|
|
|
735
735
|
if (res_error) {
|
|
@@ -812,7 +812,7 @@ class Finance {
|
|
|
812
812
|
error: res_error,
|
|
813
813
|
} = FinancePlatformModel.GenerateReportCustomerCnResponse().validate(
|
|
814
814
|
responseData,
|
|
815
|
-
{ abortEarly: false, allowUnknown:
|
|
815
|
+
{ abortEarly: false, allowUnknown: true }
|
|
816
816
|
);
|
|
817
817
|
|
|
818
818
|
if (res_error) {
|
|
@@ -891,7 +891,7 @@ class Finance {
|
|
|
891
891
|
error: res_error,
|
|
892
892
|
} = FinancePlatformModel.GetAffiliateResponse().validate(responseData, {
|
|
893
893
|
abortEarly: false,
|
|
894
|
-
allowUnknown:
|
|
894
|
+
allowUnknown: true,
|
|
895
895
|
});
|
|
896
896
|
|
|
897
897
|
if (res_error) {
|
|
@@ -968,7 +968,7 @@ class Finance {
|
|
|
968
968
|
error: res_error,
|
|
969
969
|
} = FinancePlatformModel.GetCnConfigResponse().validate(responseData, {
|
|
970
970
|
abortEarly: false,
|
|
971
|
-
allowUnknown:
|
|
971
|
+
allowUnknown: true,
|
|
972
972
|
});
|
|
973
973
|
|
|
974
974
|
if (res_error) {
|
|
@@ -1051,7 +1051,7 @@ class Finance {
|
|
|
1051
1051
|
error: res_error,
|
|
1052
1052
|
} = FinancePlatformModel.GetCustomerCreditBalanceResponse().validate(
|
|
1053
1053
|
responseData,
|
|
1054
|
-
{ abortEarly: false, allowUnknown:
|
|
1054
|
+
{ abortEarly: false, allowUnknown: true }
|
|
1055
1055
|
);
|
|
1056
1056
|
|
|
1057
1057
|
if (res_error) {
|
|
@@ -1128,7 +1128,7 @@ class Finance {
|
|
|
1128
1128
|
error: res_error,
|
|
1129
1129
|
} = FinancePlatformModel.GetEngineResponse().validate(responseData, {
|
|
1130
1130
|
abortEarly: false,
|
|
1131
|
-
allowUnknown:
|
|
1131
|
+
allowUnknown: true,
|
|
1132
1132
|
});
|
|
1133
1133
|
|
|
1134
1134
|
if (res_error) {
|
|
@@ -1207,7 +1207,7 @@ class Finance {
|
|
|
1207
1207
|
error: res_error,
|
|
1208
1208
|
} = FinancePlatformModel.GetPdfUrlViewResponse().validate(responseData, {
|
|
1209
1209
|
abortEarly: false,
|
|
1210
|
-
allowUnknown:
|
|
1210
|
+
allowUnknown: true,
|
|
1211
1211
|
});
|
|
1212
1212
|
|
|
1213
1213
|
if (res_error) {
|
|
@@ -1284,7 +1284,7 @@ class Finance {
|
|
|
1284
1284
|
error: res_error,
|
|
1285
1285
|
} = FinancePlatformModel.GetReasonResponse().validate(responseData, {
|
|
1286
1286
|
abortEarly: false,
|
|
1287
|
-
allowUnknown:
|
|
1287
|
+
allowUnknown: true,
|
|
1288
1288
|
});
|
|
1289
1289
|
|
|
1290
1290
|
if (res_error) {
|
|
@@ -1363,7 +1363,7 @@ class Finance {
|
|
|
1363
1363
|
error: res_error,
|
|
1364
1364
|
} = FinancePlatformModel.GetReportListResponse().validate(responseData, {
|
|
1365
1365
|
abortEarly: false,
|
|
1366
|
-
allowUnknown:
|
|
1366
|
+
allowUnknown: true,
|
|
1367
1367
|
});
|
|
1368
1368
|
|
|
1369
1369
|
if (res_error) {
|
|
@@ -1447,7 +1447,7 @@ class Finance {
|
|
|
1447
1447
|
error: res_error,
|
|
1448
1448
|
} = FinancePlatformModel.GetReportingFiltersResponse().validate(
|
|
1449
1449
|
responseData,
|
|
1450
|
-
{ abortEarly: false, allowUnknown:
|
|
1450
|
+
{ abortEarly: false, allowUnknown: true }
|
|
1451
1451
|
);
|
|
1452
1452
|
|
|
1453
1453
|
if (res_error) {
|
|
@@ -1526,7 +1526,7 @@ class Finance {
|
|
|
1526
1526
|
error: res_error,
|
|
1527
1527
|
} = FinancePlatformModel.InvoiceListingResponse().validate(responseData, {
|
|
1528
1528
|
abortEarly: false,
|
|
1529
|
-
allowUnknown:
|
|
1529
|
+
allowUnknown: true,
|
|
1530
1530
|
});
|
|
1531
1531
|
|
|
1532
1532
|
if (res_error) {
|
|
@@ -1603,7 +1603,7 @@ class Finance {
|
|
|
1603
1603
|
error: res_error,
|
|
1604
1604
|
} = FinancePlatformModel.InvoicePdfResponse().validate(responseData, {
|
|
1605
1605
|
abortEarly: false,
|
|
1606
|
-
allowUnknown:
|
|
1606
|
+
allowUnknown: true,
|
|
1607
1607
|
});
|
|
1608
1608
|
|
|
1609
1609
|
if (res_error) {
|
|
@@ -1680,7 +1680,7 @@ class Finance {
|
|
|
1680
1680
|
error: res_error,
|
|
1681
1681
|
} = FinancePlatformModel.InvoiceTypeResponse().validate(responseData, {
|
|
1682
1682
|
abortEarly: false,
|
|
1683
|
-
allowUnknown:
|
|
1683
|
+
allowUnknown: true,
|
|
1684
1684
|
});
|
|
1685
1685
|
|
|
1686
1686
|
if (res_error) {
|
|
@@ -1760,7 +1760,7 @@ class Finance {
|
|
|
1760
1760
|
error: res_error,
|
|
1761
1761
|
} = FinancePlatformModel.IsCnRefundMethodResponse().validate(responseData, {
|
|
1762
1762
|
abortEarly: false,
|
|
1763
|
-
allowUnknown:
|
|
1763
|
+
allowUnknown: true,
|
|
1764
1764
|
});
|
|
1765
1765
|
|
|
1766
1766
|
if (res_error) {
|
|
@@ -1840,7 +1840,7 @@ class Finance {
|
|
|
1840
1840
|
error: res_error,
|
|
1841
1841
|
} = FinancePlatformModel.IsCreditlinePlatformResponse().validate(
|
|
1842
1842
|
responseData,
|
|
1843
|
-
{ abortEarly: false, allowUnknown:
|
|
1843
|
+
{ abortEarly: false, allowUnknown: true }
|
|
1844
1844
|
);
|
|
1845
1845
|
|
|
1846
1846
|
if (res_error) {
|
|
@@ -1919,7 +1919,7 @@ class Finance {
|
|
|
1919
1919
|
error: res_error,
|
|
1920
1920
|
} = FinancePlatformModel.PaymentProcessResponse().validate(responseData, {
|
|
1921
1921
|
abortEarly: false,
|
|
1922
|
-
allowUnknown:
|
|
1922
|
+
allowUnknown: true,
|
|
1923
1923
|
});
|
|
1924
1924
|
|
|
1925
1925
|
if (res_error) {
|
|
@@ -75,7 +75,7 @@ class Inventory {
|
|
|
75
75
|
error: res_error,
|
|
76
76
|
} = InventoryPlatformModel.ResponseEnvelopeString().validate(responseData, {
|
|
77
77
|
abortEarly: false,
|
|
78
|
-
allowUnknown:
|
|
78
|
+
allowUnknown: true,
|
|
79
79
|
});
|
|
80
80
|
|
|
81
81
|
if (res_error) {
|
|
@@ -153,7 +153,7 @@ class Inventory {
|
|
|
153
153
|
error: res_error,
|
|
154
154
|
} = InventoryPlatformModel.ResponseEnvelopeString().validate(responseData, {
|
|
155
155
|
abortEarly: false,
|
|
156
|
-
allowUnknown:
|
|
156
|
+
allowUnknown: true,
|
|
157
157
|
});
|
|
158
158
|
|
|
159
159
|
if (res_error) {
|
|
@@ -230,7 +230,7 @@ class Inventory {
|
|
|
230
230
|
error: res_error,
|
|
231
231
|
} = InventoryPlatformModel.ResponseEnvelopeListSlingshotConfigurationDetail().validate(
|
|
232
232
|
responseData,
|
|
233
|
-
{ abortEarly: false, allowUnknown:
|
|
233
|
+
{ abortEarly: false, allowUnknown: true }
|
|
234
234
|
);
|
|
235
235
|
|
|
236
236
|
if (res_error) {
|
|
@@ -311,7 +311,7 @@ class Inventory {
|
|
|
311
311
|
error: res_error,
|
|
312
312
|
} = InventoryPlatformModel.ResponseEnvelopeJobConfigDTO().validate(
|
|
313
313
|
responseData,
|
|
314
|
-
{ abortEarly: false, allowUnknown:
|
|
314
|
+
{ abortEarly: false, allowUnknown: true }
|
|
315
315
|
);
|
|
316
316
|
|
|
317
317
|
if (res_error) {
|
|
@@ -404,7 +404,7 @@ class Inventory {
|
|
|
404
404
|
error: res_error,
|
|
405
405
|
} = InventoryPlatformModel.ResponseEnvelopeListJobConfigDTO().validate(
|
|
406
406
|
responseData,
|
|
407
|
-
{ abortEarly: false, allowUnknown:
|
|
407
|
+
{ abortEarly: false, allowUnknown: true }
|
|
408
408
|
);
|
|
409
409
|
|
|
410
410
|
if (res_error) {
|
|
@@ -499,7 +499,7 @@ class Inventory {
|
|
|
499
499
|
error: res_error,
|
|
500
500
|
} = InventoryPlatformModel.ResponseEnvelopeJobMetricsDto().validate(
|
|
501
501
|
responseData,
|
|
502
|
-
{ abortEarly: false, allowUnknown:
|
|
502
|
+
{ abortEarly: false, allowUnknown: true }
|
|
503
503
|
);
|
|
504
504
|
|
|
505
505
|
if (res_error) {
|
|
@@ -592,7 +592,7 @@ class Inventory {
|
|
|
592
592
|
error: res_error,
|
|
593
593
|
} = InventoryPlatformModel.ResponseEnvelopeListJobConfigListDTO().validate(
|
|
594
594
|
responseData,
|
|
595
|
-
{ abortEarly: false, allowUnknown:
|
|
595
|
+
{ abortEarly: false, allowUnknown: true }
|
|
596
596
|
);
|
|
597
597
|
|
|
598
598
|
if (res_error) {
|
|
@@ -671,7 +671,7 @@ class Inventory {
|
|
|
671
671
|
error: res_error,
|
|
672
672
|
} = InventoryPlatformModel.ResponseEnvelopeJobConfigDTO().validate(
|
|
673
673
|
responseData,
|
|
674
|
-
{ abortEarly: false, allowUnknown:
|
|
674
|
+
{ abortEarly: false, allowUnknown: true }
|
|
675
675
|
);
|
|
676
676
|
|
|
677
677
|
if (res_error) {
|
|
@@ -752,7 +752,7 @@ class Inventory {
|
|
|
752
752
|
error: res_error,
|
|
753
753
|
} = InventoryPlatformModel.ResponseEnvelopeListJobStepsDTO().validate(
|
|
754
754
|
responseData,
|
|
755
|
-
{ abortEarly: false, allowUnknown:
|
|
755
|
+
{ abortEarly: false, allowUnknown: true }
|
|
756
756
|
);
|
|
757
757
|
|
|
758
758
|
if (res_error) {
|
|
@@ -837,7 +837,7 @@ class Inventory {
|
|
|
837
837
|
error: res_error,
|
|
838
838
|
} = InventoryPlatformModel.ResponseEnvelopeListJobConfigRawDTO().validate(
|
|
839
839
|
responseData,
|
|
840
|
-
{ abortEarly: false, allowUnknown:
|
|
840
|
+
{ abortEarly: false, allowUnknown: true }
|
|
841
841
|
);
|
|
842
842
|
|
|
843
843
|
if (res_error) {
|
|
@@ -918,7 +918,7 @@ class Inventory {
|
|
|
918
918
|
error: res_error,
|
|
919
919
|
} = InventoryPlatformModel.ResponseEnvelopeKafkaResponse().validate(
|
|
920
920
|
responseData,
|
|
921
|
-
{ abortEarly: false, allowUnknown:
|
|
921
|
+
{ abortEarly: false, allowUnknown: true }
|
|
922
922
|
);
|
|
923
923
|
|
|
924
924
|
if (res_error) {
|
|
@@ -996,7 +996,7 @@ class Inventory {
|
|
|
996
996
|
error: res_error,
|
|
997
997
|
} = InventoryPlatformModel.ResponseEnvelopeString().validate(responseData, {
|
|
998
998
|
abortEarly: false,
|
|
999
|
-
allowUnknown:
|
|
999
|
+
allowUnknown: true,
|
|
1000
1000
|
});
|
|
1001
1001
|
|
|
1002
1002
|
if (res_error) {
|
|
@@ -74,7 +74,7 @@ class Lead {
|
|
|
74
74
|
error: res_error,
|
|
75
75
|
} = LeadPlatformModel.CloseVideoRoomResponse().validate(responseData, {
|
|
76
76
|
abortEarly: false,
|
|
77
|
-
allowUnknown:
|
|
77
|
+
allowUnknown: true,
|
|
78
78
|
});
|
|
79
79
|
|
|
80
80
|
if (res_error) {
|
|
@@ -153,7 +153,7 @@ class Lead {
|
|
|
153
153
|
error: res_error,
|
|
154
154
|
} = LeadPlatformModel.CustomForm().validate(responseData, {
|
|
155
155
|
abortEarly: false,
|
|
156
|
-
allowUnknown:
|
|
156
|
+
allowUnknown: true,
|
|
157
157
|
});
|
|
158
158
|
|
|
159
159
|
if (res_error) {
|
|
@@ -232,7 +232,7 @@ class Lead {
|
|
|
232
232
|
error: res_error,
|
|
233
233
|
} = LeadPlatformModel.TicketHistory().validate(responseData, {
|
|
234
234
|
abortEarly: false,
|
|
235
|
-
allowUnknown:
|
|
235
|
+
allowUnknown: true,
|
|
236
236
|
});
|
|
237
237
|
|
|
238
238
|
if (res_error) {
|
|
@@ -313,7 +313,7 @@ class Lead {
|
|
|
313
313
|
error: res_error,
|
|
314
314
|
} = LeadPlatformModel.CustomForm().validate(responseData, {
|
|
315
315
|
abortEarly: false,
|
|
316
|
-
allowUnknown:
|
|
316
|
+
allowUnknown: true,
|
|
317
317
|
});
|
|
318
318
|
|
|
319
319
|
if (res_error) {
|
|
@@ -392,7 +392,7 @@ class Lead {
|
|
|
392
392
|
error: res_error,
|
|
393
393
|
} = LeadPlatformModel.Ticket().validate(responseData, {
|
|
394
394
|
abortEarly: false,
|
|
395
|
-
allowUnknown:
|
|
395
|
+
allowUnknown: true,
|
|
396
396
|
});
|
|
397
397
|
|
|
398
398
|
if (res_error) {
|
|
@@ -469,7 +469,7 @@ class Lead {
|
|
|
469
469
|
error: res_error,
|
|
470
470
|
} = LeadPlatformModel.CustomForm().validate(responseData, {
|
|
471
471
|
abortEarly: false,
|
|
472
|
-
allowUnknown:
|
|
472
|
+
allowUnknown: true,
|
|
473
473
|
});
|
|
474
474
|
|
|
475
475
|
if (res_error) {
|
|
@@ -544,7 +544,7 @@ class Lead {
|
|
|
544
544
|
error: res_error,
|
|
545
545
|
} = LeadPlatformModel.CustomFormList().validate(responseData, {
|
|
546
546
|
abortEarly: false,
|
|
547
|
-
allowUnknown:
|
|
547
|
+
allowUnknown: true,
|
|
548
548
|
});
|
|
549
549
|
|
|
550
550
|
if (res_error) {
|
|
@@ -621,7 +621,7 @@ class Lead {
|
|
|
621
621
|
error: res_error,
|
|
622
622
|
} = LeadPlatformModel.Ticket().validate(responseData, {
|
|
623
623
|
abortEarly: false,
|
|
624
|
-
allowUnknown:
|
|
624
|
+
allowUnknown: true,
|
|
625
625
|
});
|
|
626
626
|
|
|
627
627
|
if (res_error) {
|
|
@@ -700,7 +700,7 @@ class Lead {
|
|
|
700
700
|
error: res_error,
|
|
701
701
|
} = LeadPlatformModel.TicketHistoryList().validate(responseData, {
|
|
702
702
|
abortEarly: false,
|
|
703
|
-
allowUnknown:
|
|
703
|
+
allowUnknown: true,
|
|
704
704
|
});
|
|
705
705
|
|
|
706
706
|
if (res_error) {
|
|
@@ -795,7 +795,7 @@ class Lead {
|
|
|
795
795
|
error: res_error,
|
|
796
796
|
} = LeadPlatformModel.TicketList().validate(responseData, {
|
|
797
797
|
abortEarly: false,
|
|
798
|
-
allowUnknown:
|
|
798
|
+
allowUnknown: true,
|
|
799
799
|
});
|
|
800
800
|
|
|
801
801
|
if (res_error) {
|
|
@@ -877,7 +877,7 @@ class Lead {
|
|
|
877
877
|
error: res_error,
|
|
878
878
|
} = LeadPlatformModel.GetTokenForVideoRoomResponse().validate(
|
|
879
879
|
responseData,
|
|
880
|
-
{ abortEarly: false, allowUnknown:
|
|
880
|
+
{ abortEarly: false, allowUnknown: true }
|
|
881
881
|
);
|
|
882
882
|
|
|
883
883
|
if (res_error) {
|
|
@@ -960,7 +960,7 @@ class Lead {
|
|
|
960
960
|
error: res_error,
|
|
961
961
|
} = LeadPlatformModel.GetParticipantsInsideVideoRoomResponse().validate(
|
|
962
962
|
responseData,
|
|
963
|
-
{ abortEarly: false, allowUnknown:
|
|
963
|
+
{ abortEarly: false, allowUnknown: true }
|
|
964
964
|
);
|
|
965
965
|
|
|
966
966
|
if (res_error) {
|
|
@@ -1037,7 +1037,7 @@ class Lead {
|
|
|
1037
1037
|
error: res_error,
|
|
1038
1038
|
} = LeadPlatformModel.CreateVideoRoomResponse().validate(responseData, {
|
|
1039
1039
|
abortEarly: false,
|
|
1040
|
-
allowUnknown:
|
|
1040
|
+
allowUnknown: true,
|
|
1041
1041
|
});
|
|
1042
1042
|
|
|
1043
1043
|
if (res_error) {
|
|
@@ -80,7 +80,7 @@ class Lead {
|
|
|
80
80
|
error: res_error,
|
|
81
81
|
} = LeadPlatformModel.TicketHistory().validate(responseData, {
|
|
82
82
|
abortEarly: false,
|
|
83
|
-
allowUnknown:
|
|
83
|
+
allowUnknown: true,
|
|
84
84
|
});
|
|
85
85
|
|
|
86
86
|
if (res_error) {
|
|
@@ -157,7 +157,7 @@ class Lead {
|
|
|
157
157
|
error: res_error,
|
|
158
158
|
} = LeadPlatformModel.Ticket().validate(responseData, {
|
|
159
159
|
abortEarly: false,
|
|
160
|
-
allowUnknown:
|
|
160
|
+
allowUnknown: true,
|
|
161
161
|
});
|
|
162
162
|
|
|
163
163
|
if (res_error) {
|
|
@@ -238,7 +238,7 @@ class Lead {
|
|
|
238
238
|
error: res_error,
|
|
239
239
|
} = LeadPlatformModel.Ticket().validate(responseData, {
|
|
240
240
|
abortEarly: false,
|
|
241
|
-
allowUnknown:
|
|
241
|
+
allowUnknown: true,
|
|
242
242
|
});
|
|
243
243
|
|
|
244
244
|
if (res_error) {
|
|
@@ -315,7 +315,7 @@ class Lead {
|
|
|
315
315
|
error: res_error,
|
|
316
316
|
} = LeadPlatformModel.TicketFeedbackList().validate(responseData, {
|
|
317
317
|
abortEarly: false,
|
|
318
|
-
allowUnknown:
|
|
318
|
+
allowUnknown: true,
|
|
319
319
|
});
|
|
320
320
|
|
|
321
321
|
if (res_error) {
|
|
@@ -390,7 +390,7 @@ class Lead {
|
|
|
390
390
|
error: res_error,
|
|
391
391
|
} = LeadPlatformModel.CloseVideoRoomResponse().validate(responseData, {
|
|
392
392
|
abortEarly: false,
|
|
393
|
-
allowUnknown:
|
|
393
|
+
allowUnknown: true,
|
|
394
394
|
});
|
|
395
395
|
|
|
396
396
|
if (res_error) {
|
|
@@ -469,7 +469,7 @@ class Lead {
|
|
|
469
469
|
error: res_error,
|
|
470
470
|
} = LeadPlatformModel.Ticket().validate(responseData, {
|
|
471
471
|
abortEarly: false,
|
|
472
|
-
allowUnknown:
|
|
472
|
+
allowUnknown: true,
|
|
473
473
|
});
|
|
474
474
|
|
|
475
475
|
if (res_error) {
|
|
@@ -548,7 +548,7 @@ class Lead {
|
|
|
548
548
|
error: res_error,
|
|
549
549
|
} = LeadPlatformModel.TicketHistoryList().validate(responseData, {
|
|
550
550
|
abortEarly: false,
|
|
551
|
-
allowUnknown:
|
|
551
|
+
allowUnknown: true,
|
|
552
552
|
});
|
|
553
553
|
|
|
554
554
|
if (res_error) {
|
|
@@ -659,7 +659,7 @@ class Lead {
|
|
|
659
659
|
error: res_error,
|
|
660
660
|
} = LeadPlatformModel.TicketList().validate(responseData, {
|
|
661
661
|
abortEarly: false,
|
|
662
|
-
allowUnknown:
|
|
662
|
+
allowUnknown: true,
|
|
663
663
|
});
|
|
664
664
|
|
|
665
665
|
if (res_error) {
|
|
@@ -792,7 +792,7 @@ class Lead {
|
|
|
792
792
|
error: res_error,
|
|
793
793
|
} = LeadPlatformModel.GetParticipantsInsideVideoRoomResponse().validate(
|
|
794
794
|
responseData,
|
|
795
|
-
{ abortEarly: false, allowUnknown:
|
|
795
|
+
{ abortEarly: false, allowUnknown: true }
|
|
796
796
|
);
|
|
797
797
|
|
|
798
798
|
if (res_error) {
|
|
@@ -874,7 +874,7 @@ class Lead {
|
|
|
874
874
|
error: res_error,
|
|
875
875
|
} = LeadPlatformModel.GetTokenForVideoRoomResponse().validate(
|
|
876
876
|
responseData,
|
|
877
|
-
{ abortEarly: false, allowUnknown:
|
|
877
|
+
{ abortEarly: false, allowUnknown: true }
|
|
878
878
|
);
|
|
879
879
|
|
|
880
880
|
if (res_error) {
|
|
@@ -953,7 +953,7 @@ class Lead {
|
|
|
953
953
|
error: res_error,
|
|
954
954
|
} = LeadPlatformModel.TicketFeedback().validate(responseData, {
|
|
955
955
|
abortEarly: false,
|
|
956
|
-
allowUnknown:
|
|
956
|
+
allowUnknown: true,
|
|
957
957
|
});
|
|
958
958
|
|
|
959
959
|
if (res_error) {
|
|
@@ -138,7 +138,7 @@ class Order {
|
|
|
138
138
|
error: res_error,
|
|
139
139
|
} = OrderPlatformModel.ShipmentInternalPlatformViewResponse().validate(
|
|
140
140
|
responseData,
|
|
141
|
-
{ abortEarly: false, allowUnknown:
|
|
141
|
+
{ abortEarly: false, allowUnknown: true }
|
|
142
142
|
);
|
|
143
143
|
|
|
144
144
|
if (res_error) {
|
|
@@ -219,7 +219,7 @@ class Order {
|
|
|
219
219
|
error: res_error,
|
|
220
220
|
} = OrderPlatformModel.ShipmentReasonsResponse().validate(responseData, {
|
|
221
221
|
abortEarly: false,
|
|
222
|
-
allowUnknown:
|
|
222
|
+
allowUnknown: true,
|
|
223
223
|
});
|
|
224
224
|
|
|
225
225
|
if (res_error) {
|
|
@@ -302,7 +302,7 @@ class Order {
|
|
|
302
302
|
error: res_error,
|
|
303
303
|
} = OrderPlatformModel.ShipmentBagReasons().validate(responseData, {
|
|
304
304
|
abortEarly: false,
|
|
305
|
-
allowUnknown:
|
|
305
|
+
allowUnknown: true,
|
|
306
306
|
});
|
|
307
307
|
|
|
308
308
|
if (res_error) {
|
|
@@ -383,7 +383,7 @@ class Order {
|
|
|
383
383
|
error: res_error,
|
|
384
384
|
} = OrderPlatformModel.PlatformShipmentTrack().validate(responseData, {
|
|
385
385
|
abortEarly: false,
|
|
386
|
-
allowUnknown:
|
|
386
|
+
allowUnknown: true,
|
|
387
387
|
});
|
|
388
388
|
|
|
389
389
|
if (res_error) {
|