@gofynd/fdk-client-javascript 1.4.10 → 1.4.12-beta.1
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.d.ts +8 -19
- package/sdk/application/Cart/CartApplicationClient.js +8 -89
- package/sdk/application/Cart/CartApplicationModel.d.ts +1 -178
- package/sdk/application/Cart/CartApplicationModel.js +0 -92
- package/sdk/application/Cart/CartApplicationValidator.d.ts +1 -20
- package/sdk/application/Cart/CartApplicationValidator.js +0 -16
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +5 -0
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +2 -0
- package/sdk/application/Content/ContentApplicationModel.d.ts +3 -2
- package/sdk/application/Content/ContentApplicationModel.js +5 -2
- package/sdk/application/Logistic/LogisticApplicationModel.js +3 -3
- package/sdk/application/Order/OrderApplicationModel.js +1 -1
- package/sdk/application/Payment/PaymentApplicationModel.js +2 -2
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +3 -2
- package/sdk/application/Theme/ThemeApplicationModel.js +5 -2
- package/sdk/common/Clickstream.js +46 -15
- package/sdk/common/Constant.d.ts +5 -0
- package/sdk/common/Constant.js +5 -0
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +3 -2
- package/sdk/partner/Theme/ThemePartnerModel.js +5 -2
- package/sdk/partner/Webhook/WebhookPartnerModel.js +1 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +8 -20
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +8 -92
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +1 -15
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +0 -14
- package/sdk/platform/Cart/CartPlatformModel.d.ts +1 -87
- package/sdk/platform/Cart/CartPlatformModel.js +0 -88
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +1 -1
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +14 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +27 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +14 -2
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +10 -51
- package/sdk/platform/Catalog/CatalogPlatformClient.js +79 -400
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +8 -242
- package/sdk/platform/Catalog/CatalogPlatformModel.js +8 -171
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +15 -61
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +13 -65
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +5 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +2 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +3 -2
- package/sdk/platform/Content/ContentPlatformModel.js +5 -2
- package/sdk/platform/Finance/FinancePlatformModel.js +1 -1
- package/sdk/platform/Order/OrderPlatformModel.d.ts +120 -39
- package/sdk/platform/Order/OrderPlatformModel.js +88 -38
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +38 -4
- package/sdk/platform/Payment/PaymentPlatformModel.js +17 -7
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +3 -2
- package/sdk/platform/Theme/ThemePlatformModel.js +5 -2
- package/sdk/platform/Webhook/WebhookPlatformModel.js +1 -1
|
@@ -26,14 +26,6 @@ export = CatalogPlatformValidator;
|
|
|
26
26
|
* @typedef CreateBulkProductUploadJobParam
|
|
27
27
|
* @property {CatalogPlatformModel.BulkJob} body
|
|
28
28
|
*/
|
|
29
|
-
/**
|
|
30
|
-
* @typedef CreateCategoriesParam
|
|
31
|
-
* @property {CatalogPlatformModel.CategoryRequestBody} body
|
|
32
|
-
*/
|
|
33
|
-
/**
|
|
34
|
-
* @typedef CreateDepartmentsParam
|
|
35
|
-
* @property {CatalogPlatformModel.DepartmentCreateUpdate} body
|
|
36
|
-
*/
|
|
37
29
|
/**
|
|
38
30
|
* @typedef CreateInventoryExportParam
|
|
39
31
|
* @property {CatalogPlatformModel.InventoryCreateRequest} body
|
|
@@ -125,6 +117,11 @@ export = CatalogPlatformValidator;
|
|
|
125
117
|
* @property {string} [q] - Search using hsn code, description, reporting_hsn
|
|
126
118
|
* @property {string} [type] - Search using type
|
|
127
119
|
*/
|
|
120
|
+
/**
|
|
121
|
+
* @typedef GetAttributeParam
|
|
122
|
+
* @property {string} attributeSlug - Slug of the attribute for which you want
|
|
123
|
+
* to view the details
|
|
124
|
+
*/
|
|
128
125
|
/**
|
|
129
126
|
* @typedef GetCategoryDataParam
|
|
130
127
|
* @property {string} uid - Category unique id
|
|
@@ -145,11 +142,6 @@ export = CatalogPlatformValidator;
|
|
|
145
142
|
* @typedef GetDepartmentDataParam
|
|
146
143
|
* @property {string} uid - A `uid` is a unique identifier of a department.
|
|
147
144
|
*/
|
|
148
|
-
/**
|
|
149
|
-
* @typedef GetGenderAttributeParam
|
|
150
|
-
* @property {string} attributeSlug - Slug of the attribute for which you want
|
|
151
|
-
* to view the genders
|
|
152
|
-
*/
|
|
153
145
|
/**
|
|
154
146
|
* @typedef GetHsnCodeParam
|
|
155
147
|
* @property {string} id - Unique id
|
|
@@ -409,16 +401,6 @@ export = CatalogPlatformValidator;
|
|
|
409
401
|
* @property {string} [itemType] - A `item_type` is the identifier of the type
|
|
410
402
|
* of template required.
|
|
411
403
|
*/
|
|
412
|
-
/**
|
|
413
|
-
* @typedef UpdateCategoryParam
|
|
414
|
-
* @property {string} uid - Category unique id
|
|
415
|
-
* @property {CatalogPlatformModel.CategoryRequestBody} body
|
|
416
|
-
*/
|
|
417
|
-
/**
|
|
418
|
-
* @typedef UpdateDepartmentParam
|
|
419
|
-
* @property {string} uid - A `uid` is a unique identifier of a department.
|
|
420
|
-
* @property {CatalogPlatformModel.DepartmentCreateUpdate} body
|
|
421
|
-
*/
|
|
422
404
|
/**
|
|
423
405
|
* @typedef UpdateHsnCodeParam
|
|
424
406
|
* @property {string} id - Unique id
|
|
@@ -486,10 +468,6 @@ declare class CatalogPlatformValidator {
|
|
|
486
468
|
static createBulkInventoryJob(): CreateBulkInventoryJobParam;
|
|
487
469
|
/** @returns {CreateBulkProductUploadJobParam} */
|
|
488
470
|
static createBulkProductUploadJob(): CreateBulkProductUploadJobParam;
|
|
489
|
-
/** @returns {CreateCategoriesParam} */
|
|
490
|
-
static createCategories(): CreateCategoriesParam;
|
|
491
|
-
/** @returns {CreateDepartmentsParam} */
|
|
492
|
-
static createDepartments(): CreateDepartmentsParam;
|
|
493
471
|
/** @returns {CreateInventoryExportParam} */
|
|
494
472
|
static createInventoryExport(): CreateInventoryExportParam;
|
|
495
473
|
/** @returns {CreateInventoryExportJobParam} */
|
|
@@ -528,6 +506,8 @@ declare class CatalogPlatformValidator {
|
|
|
528
506
|
static exportInventoryConfig(): ExportInventoryConfigParam;
|
|
529
507
|
/** @returns {GetAllProductHsnCodesParam} */
|
|
530
508
|
static getAllProductHsnCodes(): GetAllProductHsnCodesParam;
|
|
509
|
+
/** @returns {GetAttributeParam} */
|
|
510
|
+
static getAttribute(): GetAttributeParam;
|
|
531
511
|
/** @returns {GetCategoryDataParam} */
|
|
532
512
|
static getCategoryData(): GetCategoryDataParam;
|
|
533
513
|
/** @returns {GetCompanyBrandDetailParam} */
|
|
@@ -538,8 +518,6 @@ declare class CatalogPlatformValidator {
|
|
|
538
518
|
static getCompanyMetrics(): any;
|
|
539
519
|
/** @returns {GetDepartmentDataParam} */
|
|
540
520
|
static getDepartmentData(): GetDepartmentDataParam;
|
|
541
|
-
/** @returns {GetGenderAttributeParam} */
|
|
542
|
-
static getGenderAttribute(): GetGenderAttributeParam;
|
|
543
521
|
/** @returns {GetHsnCodeParam} */
|
|
544
522
|
static getHsnCode(): GetHsnCodeParam;
|
|
545
523
|
/** @returns {GetInventoriesParam} */
|
|
@@ -608,10 +586,6 @@ declare class CatalogPlatformValidator {
|
|
|
608
586
|
static listProductTemplateExportDetails(): any;
|
|
609
587
|
/** @returns {ListTemplateBrandTypeValuesParam} */
|
|
610
588
|
static listTemplateBrandTypeValues(): ListTemplateBrandTypeValuesParam;
|
|
611
|
-
/** @returns {UpdateCategoryParam} */
|
|
612
|
-
static updateCategory(): UpdateCategoryParam;
|
|
613
|
-
/** @returns {UpdateDepartmentParam} */
|
|
614
|
-
static updateDepartment(): UpdateDepartmentParam;
|
|
615
589
|
/** @returns {UpdateHsnCodeParam} */
|
|
616
590
|
static updateHsnCode(): UpdateHsnCodeParam;
|
|
617
591
|
/** @returns {UpdateInventoriesParam} */
|
|
@@ -632,7 +606,7 @@ declare class CatalogPlatformValidator {
|
|
|
632
606
|
static validateProductTemplateSchema(): ValidateProductTemplateSchemaParam;
|
|
633
607
|
}
|
|
634
608
|
declare namespace CatalogPlatformValidator {
|
|
635
|
-
export { AddInventoryParam, AllSizesParam, BulkHsnCodeParam, CreateBulkInventoryParam, CreateBulkInventoryJobParam, CreateBulkProductUploadJobParam,
|
|
609
|
+
export { AddInventoryParam, AllSizesParam, BulkHsnCodeParam, CreateBulkInventoryParam, CreateBulkInventoryJobParam, CreateBulkProductUploadJobParam, CreateInventoryExportParam, CreateInventoryExportJobParam, CreateMarketplaceOptinParam, CreateProductParam, CreateProductAssetsInBulkParam, CreateProductBundleParam, CreateProductExportJobParam, CreateProductsInBulkParam, CreateSizeGuideParam, DeleteBulkInventoryJobParam, DeleteProductParam, DeleteProductBulkJobParam, DeleteRealtimeInventoryParam, DeleteSizeParam, DownloadInventoryTemplateViewParam, DownloadProductTemplateViewsParam, EditProductParam, ExportInventoryConfigParam, GetAllProductHsnCodesParam, GetAttributeParam, GetCategoryDataParam, GetCompanyBrandDetailParam, GetCompanyDetailParam, GetCompanyMetricsParam, GetDepartmentDataParam, GetHsnCodeParam, GetInventoriesParam, GetInventoryBulkUploadHistoryParam, GetInventoryBySizeParam, GetInventoryBySizeIdentifierParam, GetInventoryExportParam, GetMarketplaceOptinDetailParam, GetMarketplacesParam, GetOptimalLocationsParam, GetProductParam, GetProductAssetsInBulkParam, GetProductAttributesParam, GetProductBulkUploadHistoryParam, GetProductBundleParam, GetProductBundleDetailParam, GetProductExportJobsParam, GetProductSizeParam, GetProductTagsParam, GetProductValidationParam, GetProductsParam, GetSellerInsightsParam, GetSingleProductHSNCodeParam, GetSizeGuideParam, GetSizeGuidesParam, GetStoreDetailParam, GetVariantsOfProductsParam, ListCategoriesParam, ListDepartmentsDataParam, ListHSNCodesParam, ListInventoryExportParam, ListProductTemplateParam, ListProductTemplateCategoriesParam, ListProductTemplateExportDetailsParam, ListTemplateBrandTypeValuesParam, UpdateHsnCodeParam, UpdateInventoriesParam, UpdateMarketplaceOptinParam, UpdateProductBundleParam, UpdateRealtimeInventoryParam, UpdateSizeGuideParam, UploadBulkProductsParam, ValidateProductTemplateParam, ValidateProductTemplateSchemaParam };
|
|
636
610
|
}
|
|
637
611
|
type AddInventoryParam = {
|
|
638
612
|
/**
|
|
@@ -667,12 +641,6 @@ type CreateBulkInventoryJobParam = {
|
|
|
667
641
|
type CreateBulkProductUploadJobParam = {
|
|
668
642
|
body: CatalogPlatformModel.BulkJob;
|
|
669
643
|
};
|
|
670
|
-
type CreateCategoriesParam = {
|
|
671
|
-
body: CatalogPlatformModel.CategoryRequestBody;
|
|
672
|
-
};
|
|
673
|
-
type CreateDepartmentsParam = {
|
|
674
|
-
body: CatalogPlatformModel.DepartmentCreateUpdate;
|
|
675
|
-
};
|
|
676
644
|
type CreateInventoryExportParam = {
|
|
677
645
|
body: CatalogPlatformModel.InventoryCreateRequest;
|
|
678
646
|
};
|
|
@@ -802,6 +770,13 @@ type GetAllProductHsnCodesParam = {
|
|
|
802
770
|
*/
|
|
803
771
|
type?: string;
|
|
804
772
|
};
|
|
773
|
+
type GetAttributeParam = {
|
|
774
|
+
/**
|
|
775
|
+
* - Slug of the attribute for which you want
|
|
776
|
+
* to view the details
|
|
777
|
+
*/
|
|
778
|
+
attributeSlug: string;
|
|
779
|
+
};
|
|
805
780
|
type GetCategoryDataParam = {
|
|
806
781
|
/**
|
|
807
782
|
* - Category unique id
|
|
@@ -838,13 +813,6 @@ type GetDepartmentDataParam = {
|
|
|
838
813
|
*/
|
|
839
814
|
uid: string;
|
|
840
815
|
};
|
|
841
|
-
type GetGenderAttributeParam = {
|
|
842
|
-
/**
|
|
843
|
-
* - Slug of the attribute for which you want
|
|
844
|
-
* to view the genders
|
|
845
|
-
*/
|
|
846
|
-
attributeSlug: string;
|
|
847
|
-
};
|
|
848
816
|
type GetHsnCodeParam = {
|
|
849
817
|
/**
|
|
850
818
|
* - Unique id
|
|
@@ -1409,20 +1377,6 @@ type ListTemplateBrandTypeValuesParam = {
|
|
|
1409
1377
|
*/
|
|
1410
1378
|
itemType?: string;
|
|
1411
1379
|
};
|
|
1412
|
-
type UpdateCategoryParam = {
|
|
1413
|
-
/**
|
|
1414
|
-
* - Category unique id
|
|
1415
|
-
*/
|
|
1416
|
-
uid: string;
|
|
1417
|
-
body: CatalogPlatformModel.CategoryRequestBody;
|
|
1418
|
-
};
|
|
1419
|
-
type UpdateDepartmentParam = {
|
|
1420
|
-
/**
|
|
1421
|
-
* - A `uid` is a unique identifier of a department.
|
|
1422
|
-
*/
|
|
1423
|
-
uid: string;
|
|
1424
|
-
body: CatalogPlatformModel.DepartmentCreateUpdate;
|
|
1425
|
-
};
|
|
1426
1380
|
type UpdateHsnCodeParam = {
|
|
1427
1381
|
/**
|
|
1428
1382
|
* - Unique id
|
|
@@ -35,16 +35,6 @@ const CatalogPlatformModel = require("./CatalogPlatformModel");
|
|
|
35
35
|
* @property {CatalogPlatformModel.BulkJob} body
|
|
36
36
|
*/
|
|
37
37
|
|
|
38
|
-
/**
|
|
39
|
-
* @typedef CreateCategoriesParam
|
|
40
|
-
* @property {CatalogPlatformModel.CategoryRequestBody} body
|
|
41
|
-
*/
|
|
42
|
-
|
|
43
|
-
/**
|
|
44
|
-
* @typedef CreateDepartmentsParam
|
|
45
|
-
* @property {CatalogPlatformModel.DepartmentCreateUpdate} body
|
|
46
|
-
*/
|
|
47
|
-
|
|
48
38
|
/**
|
|
49
39
|
* @typedef CreateInventoryExportParam
|
|
50
40
|
* @property {CatalogPlatformModel.InventoryCreateRequest} body
|
|
@@ -155,6 +145,12 @@ const CatalogPlatformModel = require("./CatalogPlatformModel");
|
|
|
155
145
|
* @property {string} [type] - Search using type
|
|
156
146
|
*/
|
|
157
147
|
|
|
148
|
+
/**
|
|
149
|
+
* @typedef GetAttributeParam
|
|
150
|
+
* @property {string} attributeSlug - Slug of the attribute for which you want
|
|
151
|
+
* to view the details
|
|
152
|
+
*/
|
|
153
|
+
|
|
158
154
|
/**
|
|
159
155
|
* @typedef GetCategoryDataParam
|
|
160
156
|
* @property {string} uid - Category unique id
|
|
@@ -180,12 +176,6 @@ const CatalogPlatformModel = require("./CatalogPlatformModel");
|
|
|
180
176
|
* @property {string} uid - A `uid` is a unique identifier of a department.
|
|
181
177
|
*/
|
|
182
178
|
|
|
183
|
-
/**
|
|
184
|
-
* @typedef GetGenderAttributeParam
|
|
185
|
-
* @property {string} attributeSlug - Slug of the attribute for which you want
|
|
186
|
-
* to view the genders
|
|
187
|
-
*/
|
|
188
|
-
|
|
189
179
|
/**
|
|
190
180
|
* @typedef GetHsnCodeParam
|
|
191
181
|
* @property {string} id - Unique id
|
|
@@ -479,18 +469,6 @@ const CatalogPlatformModel = require("./CatalogPlatformModel");
|
|
|
479
469
|
* of template required.
|
|
480
470
|
*/
|
|
481
471
|
|
|
482
|
-
/**
|
|
483
|
-
* @typedef UpdateCategoryParam
|
|
484
|
-
* @property {string} uid - Category unique id
|
|
485
|
-
* @property {CatalogPlatformModel.CategoryRequestBody} body
|
|
486
|
-
*/
|
|
487
|
-
|
|
488
|
-
/**
|
|
489
|
-
* @typedef UpdateDepartmentParam
|
|
490
|
-
* @property {string} uid - A `uid` is a unique identifier of a department.
|
|
491
|
-
* @property {CatalogPlatformModel.DepartmentCreateUpdate} body
|
|
492
|
-
*/
|
|
493
|
-
|
|
494
472
|
/**
|
|
495
473
|
* @typedef UpdateHsnCodeParam
|
|
496
474
|
* @property {string} id - Unique id
|
|
@@ -600,20 +578,6 @@ class CatalogPlatformValidator {
|
|
|
600
578
|
}).required();
|
|
601
579
|
}
|
|
602
580
|
|
|
603
|
-
/** @returns {CreateCategoriesParam} */
|
|
604
|
-
static createCategories() {
|
|
605
|
-
return Joi.object({
|
|
606
|
-
body: CatalogPlatformModel.CategoryRequestBody().required(),
|
|
607
|
-
}).required();
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
/** @returns {CreateDepartmentsParam} */
|
|
611
|
-
static createDepartments() {
|
|
612
|
-
return Joi.object({
|
|
613
|
-
body: CatalogPlatformModel.DepartmentCreateUpdate().required(),
|
|
614
|
-
}).required();
|
|
615
|
-
}
|
|
616
|
-
|
|
617
581
|
/** @returns {CreateInventoryExportParam} */
|
|
618
582
|
static createInventoryExport() {
|
|
619
583
|
return Joi.object({
|
|
@@ -758,6 +722,13 @@ class CatalogPlatformValidator {
|
|
|
758
722
|
}).required();
|
|
759
723
|
}
|
|
760
724
|
|
|
725
|
+
/** @returns {GetAttributeParam} */
|
|
726
|
+
static getAttribute() {
|
|
727
|
+
return Joi.object({
|
|
728
|
+
attributeSlug: Joi.string().allow("").required(),
|
|
729
|
+
}).required();
|
|
730
|
+
}
|
|
731
|
+
|
|
761
732
|
/** @returns {GetCategoryDataParam} */
|
|
762
733
|
static getCategoryData() {
|
|
763
734
|
return Joi.object({
|
|
@@ -793,13 +764,6 @@ class CatalogPlatformValidator {
|
|
|
793
764
|
}).required();
|
|
794
765
|
}
|
|
795
766
|
|
|
796
|
-
/** @returns {GetGenderAttributeParam} */
|
|
797
|
-
static getGenderAttribute() {
|
|
798
|
-
return Joi.object({
|
|
799
|
-
attributeSlug: Joi.string().allow("").required(),
|
|
800
|
-
}).required();
|
|
801
|
-
}
|
|
802
|
-
|
|
803
767
|
/** @returns {GetHsnCodeParam} */
|
|
804
768
|
static getHsnCode() {
|
|
805
769
|
return Joi.object({
|
|
@@ -1111,22 +1075,6 @@ class CatalogPlatformValidator {
|
|
|
1111
1075
|
}).required();
|
|
1112
1076
|
}
|
|
1113
1077
|
|
|
1114
|
-
/** @returns {UpdateCategoryParam} */
|
|
1115
|
-
static updateCategory() {
|
|
1116
|
-
return Joi.object({
|
|
1117
|
-
uid: Joi.string().allow("").required(),
|
|
1118
|
-
body: CatalogPlatformModel.CategoryRequestBody().required(),
|
|
1119
|
-
}).required();
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
/** @returns {UpdateDepartmentParam} */
|
|
1123
|
-
static updateDepartment() {
|
|
1124
|
-
return Joi.object({
|
|
1125
|
-
uid: Joi.string().allow("").required(),
|
|
1126
|
-
body: CatalogPlatformModel.DepartmentCreateUpdate().required(),
|
|
1127
|
-
}).required();
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
1078
|
/** @returns {UpdateHsnCodeParam} */
|
|
1131
1079
|
static updateHsnCode() {
|
|
1132
1080
|
return Joi.object({
|
|
@@ -774,6 +774,7 @@ export = ConfigurationPlatformModel;
|
|
|
774
774
|
*/
|
|
775
775
|
/**
|
|
776
776
|
* @typedef GoogleMap
|
|
777
|
+
* @property {boolean} [enabled] - Shows whether Google map integration is enabled or not.
|
|
777
778
|
* @property {GoogleMapCredentials} [credentials]
|
|
778
779
|
*/
|
|
779
780
|
/**
|
|
@@ -2882,6 +2883,10 @@ type FyndRewardsCredentials = {
|
|
|
2882
2883
|
/** @returns {GoogleMap} */
|
|
2883
2884
|
declare function GoogleMap(): GoogleMap;
|
|
2884
2885
|
type GoogleMap = {
|
|
2886
|
+
/**
|
|
2887
|
+
* - Shows whether Google map integration is enabled or not.
|
|
2888
|
+
*/
|
|
2889
|
+
enabled?: boolean;
|
|
2885
2890
|
credentials?: GoogleMapCredentials;
|
|
2886
2891
|
};
|
|
2887
2892
|
/** @returns {GoogleMapCredentials} */
|
|
@@ -876,6 +876,7 @@ const Joi = require("joi");
|
|
|
876
876
|
|
|
877
877
|
/**
|
|
878
878
|
* @typedef GoogleMap
|
|
879
|
+
* @property {boolean} [enabled] - Shows whether Google map integration is enabled or not.
|
|
879
880
|
* @property {GoogleMapCredentials} [credentials]
|
|
880
881
|
*/
|
|
881
882
|
|
|
@@ -2473,6 +2474,7 @@ class ConfigurationPlatformModel {
|
|
|
2473
2474
|
/** @returns {GoogleMap} */
|
|
2474
2475
|
static GoogleMap() {
|
|
2475
2476
|
return Joi.object({
|
|
2477
|
+
enabled: Joi.boolean(),
|
|
2476
2478
|
credentials: ConfigurationPlatformModel.GoogleMapCredentials(),
|
|
2477
2479
|
});
|
|
2478
2480
|
}
|
|
@@ -1230,7 +1230,8 @@ export = ContentPlatformModel;
|
|
|
1230
1230
|
* | "register"
|
|
1231
1231
|
* | "shipping-policy"
|
|
1232
1232
|
* | "return-policy"
|
|
1233
|
-
* | "order-status"
|
|
1233
|
+
* | "order-status"
|
|
1234
|
+
* | "locate-us"} PageType
|
|
1234
1235
|
*/
|
|
1235
1236
|
declare class ContentPlatformModel {
|
|
1236
1237
|
}
|
|
@@ -2633,4 +2634,4 @@ type GenerationEntityType = "title" | "description";
|
|
|
2633
2634
|
* @returns {PageType}
|
|
2634
2635
|
*/
|
|
2635
2636
|
declare function PageType(): PageType;
|
|
2636
|
-
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-emails" | "profile-phones" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status";
|
|
2637
|
+
type PageType = "about-us" | "addresses" | "blog" | "brands" | "cards" | "cart" | "categories" | "brand" | "category" | "collection" | "collections" | "custom" | "contact-us" | "external" | "faq" | "freshchat" | "home" | "notification-settings" | "orders" | "page" | "policy" | "product" | "product-request" | "products" | "profile" | "profile-order-shipment" | "profile-basic" | "profile-company" | "profile-emails" | "profile-phones" | "rate-us" | "refer-earn" | "settings" | "shared-cart" | "tnc" | "track-order" | "wishlist" | "sections" | "form" | "cart-delivery" | "cart-payment" | "cart-review" | "login" | "register" | "shipping-policy" | "return-policy" | "order-status" | "locate-us";
|
|
@@ -1387,7 +1387,8 @@ const Joi = require("joi");
|
|
|
1387
1387
|
* | "register"
|
|
1388
1388
|
* | "shipping-policy"
|
|
1389
1389
|
* | "return-policy"
|
|
1390
|
-
* | "order-status"
|
|
1390
|
+
* | "order-status"
|
|
1391
|
+
* | "locate-us"} PageType
|
|
1391
1392
|
*/
|
|
1392
1393
|
|
|
1393
1394
|
class ContentPlatformModel {
|
|
@@ -3196,7 +3197,9 @@ class ContentPlatformModel {
|
|
|
3196
3197
|
|
|
3197
3198
|
"return-policy",
|
|
3198
3199
|
|
|
3199
|
-
"order-status"
|
|
3200
|
+
"order-status",
|
|
3201
|
+
|
|
3202
|
+
"locate-us"
|
|
3200
3203
|
);
|
|
3201
3204
|
}
|
|
3202
3205
|
}
|
|
@@ -435,6 +435,33 @@ export = OrderPlatformModel;
|
|
|
435
435
|
* @property {string} [store_lookup]
|
|
436
436
|
* @property {AffiliateStoreIdMapping[]} affiliate_store_id_mapping
|
|
437
437
|
*/
|
|
438
|
+
/**
|
|
439
|
+
* @typedef DPConfiguration
|
|
440
|
+
* @property {string} [shipping_by] - Shipping_by denotes dp assignment
|
|
441
|
+
* strategy- if shipping_by is fynd dp assignment would be handled by OMS
|
|
442
|
+
*/
|
|
443
|
+
/**
|
|
444
|
+
* @typedef PaymentConfig
|
|
445
|
+
* @property {string} [mode_of_payment] - Specifies the mode through which the
|
|
446
|
+
* payment was collected, serving as an identifier for the payment's origin.
|
|
447
|
+
* @property {string} [source] - The source field identifies the channel through
|
|
448
|
+
* which the order was placed, such as MARKETPLACE, ECOMM.
|
|
449
|
+
*/
|
|
450
|
+
/**
|
|
451
|
+
* @typedef CreateOrderConfig
|
|
452
|
+
* @property {DPConfiguration} [dp_configuration]
|
|
453
|
+
* @property {string} [integration_type] - Flag denotes integration type which
|
|
454
|
+
* is used to retrieve specific configurations and application details
|
|
455
|
+
* relevant to channel fulfillment.
|
|
456
|
+
* @property {boolean} [location_reassignment] - Flag denotes if the location
|
|
457
|
+
* for the store needs to be reassigned post cancellation.
|
|
458
|
+
* @property {PaymentConfig} [payment]
|
|
459
|
+
* @property {boolean} [optimal_shipment_creation] - Denotes the shipment
|
|
460
|
+
* breaking strategy. If the flag is set true, the shipment is created using
|
|
461
|
+
* optimal shipment creation strategy based on the servicability & packaging
|
|
462
|
+
* dimensions by OMS .If false, shipment details, including location_id, must
|
|
463
|
+
* be passed to FDK for processing.
|
|
464
|
+
*/
|
|
438
465
|
/**
|
|
439
466
|
* @typedef CreateOrderPayload
|
|
440
467
|
* @property {string} affiliate_id
|
|
@@ -615,6 +642,14 @@ export = OrderPlatformModel;
|
|
|
615
642
|
* @property {OrderDetails} order_details
|
|
616
643
|
* @property {string[]} [errors]
|
|
617
644
|
* @property {ShipmentDetail[]} [shipment_details]
|
|
645
|
+
* @property {string} [text] - A label or description of the delivery status,
|
|
646
|
+
* such as 'Expected Delivery Date'.
|
|
647
|
+
* @property {string} [value] - The detailed delivery status or time
|
|
648
|
+
* information, such as 'Arriving on 24 Nov 2022 15:54:00'.
|
|
649
|
+
* @property {string} [color_code] - Hex code for the color representing the
|
|
650
|
+
* delivery status.
|
|
651
|
+
* @property {string} [expected_delivery_date] - The ISO 8601 formatted date and
|
|
652
|
+
* time when the delivery is expected, e.g., '2022-11-24T22:15:54+00:00'.
|
|
618
653
|
*/
|
|
619
654
|
/**
|
|
620
655
|
* @typedef OrderStatusResult
|
|
@@ -683,8 +718,12 @@ export = OrderPlatformModel;
|
|
|
683
718
|
* @property {ProcessingDates} [processing_dates]
|
|
684
719
|
* @property {Object} [meta] - Meta data of the shipment.
|
|
685
720
|
* @property {number} [priority] - Integer value indicating high and low priority.
|
|
686
|
-
* @property {number} location_id - Location Identifier or Store/Fulfillment
|
|
687
|
-
* Identifier of the shipment
|
|
721
|
+
* @property {number} [location_id] - Location Identifier or Store/Fulfillment
|
|
722
|
+
* Identifier of the shipment- This field is mandatory when
|
|
723
|
+
* optimal_shipment_creation flag is set to false, indicating that shipments
|
|
724
|
+
* must be associated with a specific location. When
|
|
725
|
+
* `optimal_shipment_creation` is true, the optimal location for order
|
|
726
|
+
* creation would be assigned, location_id becomes optional.
|
|
688
727
|
* @property {string} [order_type] - The order type of shipment HomeDelivery -
|
|
689
728
|
* If the customer wants the order home-delivered PickAtStore - If the
|
|
690
729
|
* customer wants the handover of an order at the store itself.
|
|
@@ -716,16 +755,6 @@ export = OrderPlatformModel;
|
|
|
716
755
|
* @property {Prices} [price]
|
|
717
756
|
* @property {ShipmentGstDetails} [gst]
|
|
718
757
|
*/
|
|
719
|
-
/**
|
|
720
|
-
* @typedef ShipmentRequestData
|
|
721
|
-
* @property {LineItem[]} line_items
|
|
722
|
-
* @property {ProcessingDates} [processing_dates]
|
|
723
|
-
* @property {Object} [meta] - Meta data of the shipment.
|
|
724
|
-
* @property {number} [priority] - Integer value indicating high and low priority.
|
|
725
|
-
* @property {string} [order_type] - The order type of shipment HomeDelivery -
|
|
726
|
-
* If the customer wants the order home-delivered PickAtStore - If the
|
|
727
|
-
* customer wants the handover of an order at the store itself.
|
|
728
|
-
*/
|
|
729
758
|
/**
|
|
730
759
|
* @typedef ShippingInfo
|
|
731
760
|
* @property {string} [alternate_mobile_number]
|
|
@@ -820,7 +849,6 @@ export = OrderPlatformModel;
|
|
|
820
849
|
/**
|
|
821
850
|
* @typedef CreateOrderAPI
|
|
822
851
|
* @property {Shipment[]} shipments
|
|
823
|
-
* @property {ShipmentRequestData} [shipment_request_data]
|
|
824
852
|
* @property {ShippingInfo} shipping_info
|
|
825
853
|
* @property {BillingInfo} billing_info
|
|
826
854
|
* @property {Object} [currency_info]
|
|
@@ -829,7 +857,7 @@ export = OrderPlatformModel;
|
|
|
829
857
|
* @property {string} [external_creation_date]
|
|
830
858
|
* @property {Object} [meta]
|
|
831
859
|
* @property {TaxInfo} [tax_info]
|
|
832
|
-
* @property {
|
|
860
|
+
* @property {CreateOrderConfig} [config]
|
|
833
861
|
* @property {PaymentInfo} payment_info
|
|
834
862
|
* @property {UserInfo} [user_info]
|
|
835
863
|
* @property {number} [ordering_store_id]
|
|
@@ -2515,6 +2543,7 @@ export = OrderPlatformModel;
|
|
|
2515
2543
|
* @property {InvoiceInfo} [invoice]
|
|
2516
2544
|
* @property {string} [shipment_status]
|
|
2517
2545
|
* @property {GSTDetailsData} [gst_details]
|
|
2546
|
+
* @property {OrderStatusData} [order_status]
|
|
2518
2547
|
* @property {Object} [delivery_slot]
|
|
2519
2548
|
* @property {OrderDetailsData} [order]
|
|
2520
2549
|
* @property {UserDataInfo} [user]
|
|
@@ -3086,7 +3115,7 @@ export = OrderPlatformModel;
|
|
|
3086
3115
|
declare class OrderPlatformModel {
|
|
3087
3116
|
}
|
|
3088
3117
|
declare namespace OrderPlatformModel {
|
|
3089
|
-
export { InvalidateShipmentCachePayload, InvalidateShipmentCacheNestedResponse, InvalidateShipmentCacheResponse, ErrorResponse, StoreReassign, StoreReassignResponse, Entities, UpdateShipmentLockPayload, OriginalFilter, Bags, CheckResponse, UpdateShipmentLockResponse, AnnouncementResponse, AnnouncementsResponse, BaseResponse, Click2CallResponse, ErrorDetail, ProductsReasonsFilters, ProductsReasonsData, ProductsReasons, EntityReasonData, EntitiesReasons, ReasonsData, Products, OrderItemDataUpdates, ProductsDataUpdatesFilters, ProductsDataUpdates, EntitiesDataUpdates, DataUpdates, ShipmentsRequest, StatuesRequest, UpdateShipmentStatusRequest, ShipmentsResponse, StatuesResponse, UpdateShipmentStatusResponseBody, OrderUser, OrderPriority, ArticleDetails, LocationDetails, ShipmentDetails, ShipmentConfig, ShipmentData, MarketPlacePdf, AffiliateBag, UserData, OrderInfo, AffiliateAppConfigMeta, AffiliateAppConfig, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateInventoryOrderConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryConfig, AffiliateConfig, Affiliate, AffiliateStoreIdMapping, OrderConfig, CreateOrderPayload, CreateOrderResponse, DispatchManifest, SuccessResponse, ActionInfo, GetActionsResponse, HistoryReason, HistoryMeta, HistoryDict, ShipmentHistoryResponse, PostHistoryFilters, PostHistoryData, PostHistoryDict, PostShipmentHistory, SmsDataPayload, SendSmsPayload, OrderDetails, Meta, ShipmentDetail, OrderStatusData, OrderStatusResult, Dimension, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponse, Tax, Charge, LineItem, ProcessingDates, Shipment,
|
|
3118
|
+
export { InvalidateShipmentCachePayload, InvalidateShipmentCacheNestedResponse, InvalidateShipmentCacheResponse, ErrorResponse, StoreReassign, StoreReassignResponse, Entities, UpdateShipmentLockPayload, OriginalFilter, Bags, CheckResponse, UpdateShipmentLockResponse, AnnouncementResponse, AnnouncementsResponse, BaseResponse, Click2CallResponse, ErrorDetail, ProductsReasonsFilters, ProductsReasonsData, ProductsReasons, EntityReasonData, EntitiesReasons, ReasonsData, Products, OrderItemDataUpdates, ProductsDataUpdatesFilters, ProductsDataUpdates, EntitiesDataUpdates, DataUpdates, ShipmentsRequest, StatuesRequest, UpdateShipmentStatusRequest, ShipmentsResponse, StatuesResponse, UpdateShipmentStatusResponseBody, OrderUser, OrderPriority, ArticleDetails, LocationDetails, ShipmentDetails, ShipmentConfig, ShipmentData, MarketPlacePdf, AffiliateBag, UserData, OrderInfo, AffiliateAppConfigMeta, AffiliateAppConfig, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateInventoryOrderConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryConfig, AffiliateConfig, Affiliate, AffiliateStoreIdMapping, OrderConfig, DPConfiguration, PaymentConfig, CreateOrderConfig, CreateOrderPayload, CreateOrderResponse, DispatchManifest, SuccessResponse, ActionInfo, GetActionsResponse, HistoryReason, HistoryMeta, HistoryDict, ShipmentHistoryResponse, PostHistoryFilters, PostHistoryData, PostHistoryDict, PostShipmentHistory, SmsDataPayload, SendSmsPayload, OrderDetails, Meta, ShipmentDetail, OrderStatusData, OrderStatusResult, Dimension, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponse, Tax, Charge, LineItem, ProcessingDates, Shipment, ShippingInfo, BillingInfo, UserInfo, TaxInfo, PaymentMethod, PaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, DpConfiguration, PaymentMethods, CreateChannelPaymentInfo, CreateChannelConfig, CreateChannelConfigData, CreateChannelConifgErrorResponse, CreateChannelConfigResponse, UploadConsent, PlatformOrderUpdate, ResponseDetail, FyndOrderIdList, OrderStatus, BagStateTransitionMap, RoleBaseStateTransitionMapping, FetchCreditBalanceRequestPayload, CreditBalanceInfo, FetchCreditBalanceResponsePayload, RefundModeConfigRequestPayload, RefundOption, RefundModeInfo, RefundModeConfigResponsePayload, AttachUserOtpData, AttachUserInfo, AttachOrderUser, AttachOrderUserResponse, SendUserMobileOTP, PointBlankOtpData, SendUserMobileOtpResponse, VerifyOtpData, VerifyMobileOTP, VerifyOtpResponseData, VerifyOtpResponse, BulkReportsDownloadRequest, BulkReportsDownloadResponse, BulkFailedResponse, BulkStateTransistionRequest, BulkStateTransistionResponse, ShipmentActionInfo, BulkActionListingData, BulkListinPage, BulkListingResponse, JobDetailsData, JobDetailsResponse, JobFailedResponse, ManifestPageInfo, ManifestItemDetails, ManifestShipmentListing, DateRange, Filters, ManifestFile, ManifestMediaUpdate, PDFMeta, TotalShipmentPricesCount, ManifestMeta, Manifest, ManifestList, ManifestDetails, FiltersRequest, ProcessManifest, ProcessManifestResponse, ProcessManifestItemResponse, FilterInfoOption, FiltersInfo, ManifestFiltersResponse, PageDetails, EInvoiceIrnDetails, EInvoiceErrorDetails, EInvoiceDetails, EInvoiceResponseData, EInvoiceRetry, EInvoiceRetryResponse, EInvoiceErrorInfo, EInvoiceErrorResponseData, EInvoiceErrorResponse, EInvoiceErrorResponseDetails, EInvoiceRetryShipmentData, CourierPartnerTrackingDetails, CourierPartnerTrackingResponse, LogsChannelDetails, LogPaymentDetails, FailedOrdersItem, FailedOrderLogs, FailedOrderLogDetails, GenerateInvoiceIDResponseData, GenerateInvoiceIDErrorResponseData, GenerateInvoiceIDRequest, GenerateInvoiceIDResponse, GenerateInvoiceIDErrorResponse, ManifestResponse, ProcessManifestRequest, ManifestItems, ManifestErrorResponse, ConfigData, ConfigUpdatedResponse, FlagData, Flags, Filter, PostHook, PreHook, Config, TransitionConfigCondition, TransitionConfigData, TransitionConfigPayload, Page, BagReasonMeta, QuestionSet, BagReasons, ShipmentBagReasons, ShipmentStatus, UserDataInfo, PlatformDeliveryAddress, ShipmentListingChannel, Prices, Identifier, FinancialBreakup, GSTDetailsData, BagStateMapper, BagStatusHistory, Dimensions, ReturnConfig, Weight, Article, ShipmentListingBrand, ReplacementDetails, AffiliateMeta, AffiliateBagDetails, PlatformArticleAttributes, PlatformItem, Dates, BagReturnableCancelableStatus, BagUnit, ShipmentItemFulFillingStore, Currency, OrderingCurrency, ConversionRate, CurrencyInfo, ShipmentItem, ShipmentInternalPlatformViewResponse, TrackingList, InvoiceInfo, OrderDetailsData, UserDetailsData, PhoneDetails, ContactDetails, CompanyDetails, OrderingStoreDetails, DPDetailsData, BuyerDetails, DebugInfo, EinvoiceInfo, Formatted, ShipmentTags, LockData, ShipmentTimeStamp, ShipmentMeta, PDFLinks, AffiliateDetails, BagConfigs, OrderBagArticle, OrderBrandName, AffiliateBagsDetails, BagPaymentMethods, DiscountRules, ItemCriterias, BuyRules, AppliedPromos, CurrentStatus, OrderBags, FulfillingStore, ShipmentPayments, ShipmentStatusData, ShipmentLockDetails, PlatformShipment, ShipmentInfoResponse, TaxDetails, PaymentInfoData, OrderData, OrderDetailsResponse, SubLane, SuperLane, LaneConfigResponse, PlatformBreakupValues, PlatformChannel, PlatformOrderItems, OrderListingResponse, PlatformTrack, PlatformShipmentTrack, AdvanceFilterInfo, FiltersResponse, URL, FileResponse, BulkActionTemplate, BulkActionTemplateResponse, Reason, PlatformShipmentReasonsResponse, ShipmentResponseReasons, ShipmentReasonsResponse, StoreAddress, EInvoicePortalDetails, StoreEinvoice, StoreEwaybill, StoreGstCredentials, Document, StoreDocuments, StoreMeta, Store, Brand, Item, ArticleStatusDetails, Company, ShipmentGstDetails, DeliverySlotDetails, InvoiceDetails, UserDetails, WeightData, BagDetails, BagDetailsPlatformResponse, BagsPage, BagData, GetBagsPlatformResponse, GeneratePosOrderReceiptResponse, Templates, AllowedTemplatesResponse, TemplateDownloadResponse, Error };
|
|
3090
3119
|
}
|
|
3091
3120
|
/** @returns {InvalidateShipmentCachePayload} */
|
|
3092
3121
|
declare function InvalidateShipmentCachePayload(): InvalidateShipmentCachePayload;
|
|
@@ -3738,6 +3767,54 @@ type OrderConfig = {
|
|
|
3738
3767
|
store_lookup?: string;
|
|
3739
3768
|
affiliate_store_id_mapping: AffiliateStoreIdMapping[];
|
|
3740
3769
|
};
|
|
3770
|
+
/** @returns {DPConfiguration} */
|
|
3771
|
+
declare function DPConfiguration(): DPConfiguration;
|
|
3772
|
+
type DPConfiguration = {
|
|
3773
|
+
/**
|
|
3774
|
+
* - Shipping_by denotes dp assignment
|
|
3775
|
+
* strategy- if shipping_by is fynd dp assignment would be handled by OMS
|
|
3776
|
+
*/
|
|
3777
|
+
shipping_by?: string;
|
|
3778
|
+
};
|
|
3779
|
+
/** @returns {PaymentConfig} */
|
|
3780
|
+
declare function PaymentConfig(): PaymentConfig;
|
|
3781
|
+
type PaymentConfig = {
|
|
3782
|
+
/**
|
|
3783
|
+
* - Specifies the mode through which the
|
|
3784
|
+
* payment was collected, serving as an identifier for the payment's origin.
|
|
3785
|
+
*/
|
|
3786
|
+
mode_of_payment?: string;
|
|
3787
|
+
/**
|
|
3788
|
+
* - The source field identifies the channel through
|
|
3789
|
+
* which the order was placed, such as MARKETPLACE, ECOMM.
|
|
3790
|
+
*/
|
|
3791
|
+
source?: string;
|
|
3792
|
+
};
|
|
3793
|
+
/** @returns {CreateOrderConfig} */
|
|
3794
|
+
declare function CreateOrderConfig(): CreateOrderConfig;
|
|
3795
|
+
type CreateOrderConfig = {
|
|
3796
|
+
dp_configuration?: DPConfiguration;
|
|
3797
|
+
/**
|
|
3798
|
+
* - Flag denotes integration type which
|
|
3799
|
+
* is used to retrieve specific configurations and application details
|
|
3800
|
+
* relevant to channel fulfillment.
|
|
3801
|
+
*/
|
|
3802
|
+
integration_type?: string;
|
|
3803
|
+
/**
|
|
3804
|
+
* - Flag denotes if the location
|
|
3805
|
+
* for the store needs to be reassigned post cancellation.
|
|
3806
|
+
*/
|
|
3807
|
+
location_reassignment?: boolean;
|
|
3808
|
+
payment?: PaymentConfig;
|
|
3809
|
+
/**
|
|
3810
|
+
* - Denotes the shipment
|
|
3811
|
+
* breaking strategy. If the flag is set true, the shipment is created using
|
|
3812
|
+
* optimal shipment creation strategy based on the servicability & packaging
|
|
3813
|
+
* dimensions by OMS .If false, shipment details, including location_id, must
|
|
3814
|
+
* be passed to FDK for processing.
|
|
3815
|
+
*/
|
|
3816
|
+
optimal_shipment_creation?: boolean;
|
|
3817
|
+
};
|
|
3741
3818
|
/** @returns {CreateOrderPayload} */
|
|
3742
3819
|
declare function CreateOrderPayload(): CreateOrderPayload;
|
|
3743
3820
|
type CreateOrderPayload = {
|
|
@@ -4016,6 +4093,26 @@ type OrderStatusData = {
|
|
|
4016
4093
|
order_details: OrderDetails;
|
|
4017
4094
|
errors?: string[];
|
|
4018
4095
|
shipment_details?: ShipmentDetail[];
|
|
4096
|
+
/**
|
|
4097
|
+
* - A label or description of the delivery status,
|
|
4098
|
+
* such as 'Expected Delivery Date'.
|
|
4099
|
+
*/
|
|
4100
|
+
text?: string;
|
|
4101
|
+
/**
|
|
4102
|
+
* - The detailed delivery status or time
|
|
4103
|
+
* information, such as 'Arriving on 24 Nov 2022 15:54:00'.
|
|
4104
|
+
*/
|
|
4105
|
+
value?: string;
|
|
4106
|
+
/**
|
|
4107
|
+
* - Hex code for the color representing the
|
|
4108
|
+
* delivery status.
|
|
4109
|
+
*/
|
|
4110
|
+
color_code?: string;
|
|
4111
|
+
/**
|
|
4112
|
+
* - The ISO 8601 formatted date and
|
|
4113
|
+
* time when the delivery is expected, e.g., '2022-11-24T22:15:54+00:00'.
|
|
4114
|
+
*/
|
|
4115
|
+
expected_delivery_date?: string;
|
|
4019
4116
|
};
|
|
4020
4117
|
/** @returns {OrderStatusResult} */
|
|
4021
4118
|
declare function OrderStatusResult(): OrderStatusResult;
|
|
@@ -4131,9 +4228,13 @@ type Shipment = {
|
|
|
4131
4228
|
priority?: number;
|
|
4132
4229
|
/**
|
|
4133
4230
|
* - Location Identifier or Store/Fulfillment
|
|
4134
|
-
* Identifier of the shipment
|
|
4231
|
+
* Identifier of the shipment- This field is mandatory when
|
|
4232
|
+
* optimal_shipment_creation flag is set to false, indicating that shipments
|
|
4233
|
+
* must be associated with a specific location. When
|
|
4234
|
+
* `optimal_shipment_creation` is true, the optimal location for order
|
|
4235
|
+
* creation would be assigned, location_id becomes optional.
|
|
4135
4236
|
*/
|
|
4136
|
-
location_id
|
|
4237
|
+
location_id?: number;
|
|
4137
4238
|
/**
|
|
4138
4239
|
* - The order type of shipment HomeDelivery -
|
|
4139
4240
|
* If the customer wants the order home-delivered PickAtStore - If the
|
|
@@ -4168,26 +4269,6 @@ type Shipment = {
|
|
|
4168
4269
|
price?: Prices;
|
|
4169
4270
|
gst?: ShipmentGstDetails;
|
|
4170
4271
|
};
|
|
4171
|
-
/** @returns {ShipmentRequestData} */
|
|
4172
|
-
declare function ShipmentRequestData(): ShipmentRequestData;
|
|
4173
|
-
type ShipmentRequestData = {
|
|
4174
|
-
line_items: LineItem[];
|
|
4175
|
-
processing_dates?: ProcessingDates;
|
|
4176
|
-
/**
|
|
4177
|
-
* - Meta data of the shipment.
|
|
4178
|
-
*/
|
|
4179
|
-
meta?: any;
|
|
4180
|
-
/**
|
|
4181
|
-
* - Integer value indicating high and low priority.
|
|
4182
|
-
*/
|
|
4183
|
-
priority?: number;
|
|
4184
|
-
/**
|
|
4185
|
-
* - The order type of shipment HomeDelivery -
|
|
4186
|
-
* If the customer wants the order home-delivered PickAtStore - If the
|
|
4187
|
-
* customer wants the handover of an order at the store itself.
|
|
4188
|
-
*/
|
|
4189
|
-
order_type?: string;
|
|
4190
|
-
};
|
|
4191
4272
|
/** @returns {ShippingInfo} */
|
|
4192
4273
|
declare function ShippingInfo(): ShippingInfo;
|
|
4193
4274
|
type ShippingInfo = {
|
|
@@ -4295,7 +4376,6 @@ type PaymentInfo = {
|
|
|
4295
4376
|
declare function CreateOrderAPI(): CreateOrderAPI;
|
|
4296
4377
|
type CreateOrderAPI = {
|
|
4297
4378
|
shipments: Shipment[];
|
|
4298
|
-
shipment_request_data?: ShipmentRequestData;
|
|
4299
4379
|
shipping_info: ShippingInfo;
|
|
4300
4380
|
billing_info: BillingInfo;
|
|
4301
4381
|
currency_info?: any;
|
|
@@ -4304,7 +4384,7 @@ type CreateOrderAPI = {
|
|
|
4304
4384
|
external_creation_date?: string;
|
|
4305
4385
|
meta?: any;
|
|
4306
4386
|
tax_info?: TaxInfo;
|
|
4307
|
-
config?:
|
|
4387
|
+
config?: CreateOrderConfig;
|
|
4308
4388
|
payment_info: PaymentInfo;
|
|
4309
4389
|
user_info?: UserInfo;
|
|
4310
4390
|
ordering_store_id?: number;
|
|
@@ -6483,6 +6563,7 @@ type PlatformShipment = {
|
|
|
6483
6563
|
invoice?: InvoiceInfo;
|
|
6484
6564
|
shipment_status?: string;
|
|
6485
6565
|
gst_details?: GSTDetailsData;
|
|
6566
|
+
order_status?: OrderStatusData;
|
|
6486
6567
|
delivery_slot?: any;
|
|
6487
6568
|
order?: OrderDetailsData;
|
|
6488
6569
|
user?: UserDataInfo;
|