@gofynd/fdk-client-javascript 1.4.15-beta.3 → 1.4.15

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.
Files changed (47) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +11 -11
  4. package/sdk/application/Cart/CartApplicationClient.js +48 -50
  5. package/sdk/application/Content/ContentApplicationClient.d.ts +0 -20
  6. package/sdk/application/Content/ContentApplicationClient.js +0 -78
  7. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +1 -1
  8. package/sdk/application/Logistic/LogisticApplicationClient.js +2 -0
  9. package/sdk/application/Payment/PaymentApplicationClient.d.ts +10 -0
  10. package/sdk/application/Payment/PaymentApplicationClient.js +39 -0
  11. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -12
  12. package/sdk/partner/Logistics/LogisticsPartnerClient.js +209 -38
  13. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +399 -19
  14. package/sdk/partner/Logistics/LogisticsPartnerModel.js +212 -11
  15. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +3 -1
  16. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +22 -7
  17. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +1 -1
  18. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
  19. package/sdk/platform/Cart/CartPlatformApplicationClient.js +3 -12
  20. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +0 -7
  21. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +0 -3
  22. package/sdk/platform/Cart/CartPlatformModel.d.ts +28 -14
  23. package/sdk/platform/Cart/CartPlatformModel.js +12 -6
  24. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +24 -0
  25. package/sdk/platform/Catalog/CatalogPlatformClient.js +176 -0
  26. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +80 -29
  27. package/sdk/platform/Catalog/CatalogPlatformModel.js +72 -32
  28. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +45 -1
  29. package/sdk/platform/Catalog/CatalogPlatformValidator.js +35 -0
  30. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +0 -52
  31. package/sdk/platform/Content/ContentPlatformApplicationClient.js +0 -411
  32. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -85
  33. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +0 -73
  34. package/sdk/platform/Content/ContentPlatformModel.d.ts +1 -90
  35. package/sdk/platform/Content/ContentPlatformModel.js +0 -104
  36. package/sdk/platform/Order/OrderPlatformClient.d.ts +2 -2
  37. package/sdk/platform/Order/OrderPlatformClient.js +8 -0
  38. package/sdk/platform/Order/OrderPlatformModel.d.ts +75 -3
  39. package/sdk/platform/Order/OrderPlatformModel.js +43 -2
  40. package/sdk/platform/Order/OrderPlatformValidator.d.ts +22 -0
  41. package/sdk/platform/Order/OrderPlatformValidator.js +10 -0
  42. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +94 -0
  43. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +699 -76
  44. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +598 -23
  45. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +382 -20
  46. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +134 -1
  47. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +108 -0
@@ -939,30 +939,54 @@ export = ServiceabilityPlatformModel;
939
939
  * @property {string} [pickup_cutoff]
940
940
  * @property {string} [route_code]
941
941
  * @property {boolean} is_first_mile
942
+ * @property {boolean} [is_reverse_pickup]
942
943
  * @property {boolean} is_return
943
944
  * @property {boolean} is_installation
944
945
  * @property {boolean} is_last_mile
945
946
  */
946
947
  /**
947
948
  * @typedef CourierPartnerSchemeFeatures
948
- * @property {boolean} [doorstep_qc]
949
- * @property {boolean} [qr]
950
- * @property {boolean} [mps]
951
- * @property {boolean} [ndr]
952
- * @property {number} [ndr_attempts]
953
- * @property {boolean} [dangerous_goods]
954
- * @property {boolean} [fragile_goods]
955
- * @property {boolean} [restricted_goods]
956
- * @property {boolean} [cold_storage_goods]
957
- * @property {boolean} [doorstep_exchange]
958
- * @property {boolean} [doorstep_return]
959
- * @property {boolean} [product_installation]
960
- * @property {boolean} [openbox_delivery]
961
- * @property {string} [status_updates]
962
- * @property {boolean} [multi_pick_single_drop]
963
- * @property {boolean} [single_pick_multi_drop]
964
- * @property {boolean} [multi_pick_multi_drop]
965
- * @property {boolean} [ewaybill]
949
+ * @property {boolean} [doorstep_qc] - Indicates if the courier partner offers
950
+ * doorstep quality check services.
951
+ * @property {boolean} [qr] - Specifies whether the courier partner supports QR
952
+ * code-based operations.
953
+ * @property {boolean} [mps] - Denotes if the courier partner supports
954
+ * multi-part shipment services.
955
+ * @property {boolean} [ndr] - Indicates if the Non-Delivery Report (NDR)
956
+ * feature is supported by the courier partner.
957
+ * @property {number} [ndr_attempts] - Number of attempts allowed for resolving
958
+ * Non-Delivery Reports (NDR).
959
+ * @property {boolean} [dangerous_goods] - Specifies if the courier partner
960
+ * handles the transportation of dangerous goods.
961
+ * @property {boolean} [fragile_goods] - Indicates whether the courier partner
962
+ * manages the shipment of fragile goods.
963
+ * @property {boolean} [restricted_goods] - Indicates if the courier partner
964
+ * handles restricted goods, as per regulatory guidelines.
965
+ * @property {boolean} [cold_storage_goods] - Denotes if the courier partner
966
+ * provides cold storage facilities for goods.
967
+ * @property {boolean} [doorstep_exchange] - Indicates if the courier partner
968
+ * supports doorstep exchange services.
969
+ * @property {boolean} [doorstep_return] - Specifies if the courier partner
970
+ * offers doorstep return services.
971
+ * @property {boolean} [product_installation] - Indicates if the courier partner
972
+ * provides product installation services upon delivery.
973
+ * @property {boolean} [openbox_delivery] - Specifies whether the courier
974
+ * partner supports open-box delivery, allowing customers to inspect goods
975
+ * before accepting.
976
+ * @property {string} [status_updates] - Describes the type of status updates
977
+ * provided by the courier partner (e.g., real-time, periodic).
978
+ * @property {boolean} [multi_pick_single_drop] - Indicates if the courier
979
+ * partner supports multiple pickups to a single drop location.
980
+ * @property {boolean} [single_pick_multi_drop] - Indicates whether the courier
981
+ * partner supports single pickup to multiple drop locations.
982
+ * @property {boolean} [multi_pick_multi_drop] - Denotes if the courier partner
983
+ * offers services for multiple pickups to multiple drop locations.
984
+ * @property {boolean} [ewaybill] - Specifies if the courier partner requires or
985
+ * supports the generation of e-waybills for shipments.
986
+ * @property {number} [qc_shipment_item_quantity] - Defines the maximum quantity
987
+ * of items allowed in a quality check shipment.
988
+ * @property {number} [non_qc_shipment_item_quantity] - Defines the maximum
989
+ * quantity of items allowed in a non-quality check shipment.
966
990
  */
967
991
  /**
968
992
  * @typedef CourierPartnerSchemeModel
@@ -979,8 +1003,8 @@ export = ServiceabilityPlatformModel;
979
1003
  * courier partner scheme.
980
1004
  * @property {string[]} payment_mode - Mode of payment associated with the
981
1005
  * courier partner scheme.
982
- * @property {string} stage - Denotes whether the courier partner scheme is in
983
- * enabled or disabled stage.
1006
+ * @property {string} stage - Indicates if the courier partner scheme is
1007
+ * currently active or inactive.
984
1008
  * @property {CourierPartnerSchemeFeatures} feature
985
1009
  */
986
1010
  /**
@@ -1203,10 +1227,169 @@ export = ServiceabilityPlatformModel;
1203
1227
  * @typedef StandardError
1204
1228
  * @property {string} message - A brief description of the error.
1205
1229
  */
1230
+ /**
1231
+ * @typedef CourierPartnerSchemeV2Features
1232
+ * @property {boolean} [doorstep_qc] - Indicates if the courier partner offers
1233
+ * doorstep quality check services.
1234
+ * @property {boolean} [qr] - Specifies whether the courier partner supports QR
1235
+ * code-based operations.
1236
+ * @property {boolean} [mps] - Denotes if the courier partner supports
1237
+ * multi-part shipment services.
1238
+ * @property {boolean} [ndr] - Indicates if the Non-Delivery Report (NDR)
1239
+ * feature is supported by the courier partner.
1240
+ * @property {boolean} [dangerous_goods] - Specifies if the courier partner
1241
+ * handles the transportation of dangerous goods.
1242
+ * @property {boolean} [fragile_goods] - Indicates whether the courier partner
1243
+ * manages the shipment of fragile goods.
1244
+ * @property {boolean} [restricted_goods] - Indicates if the courier partner
1245
+ * handles restricted goods, as per regulatory guidelines.
1246
+ * @property {boolean} [cold_storage_goods] - Denotes if the courier partner
1247
+ * provides cold storage facilities for goods.
1248
+ * @property {boolean} [doorstep_exchange] - Indicates if the courier partner
1249
+ * supports doorstep exchange services.
1250
+ * @property {boolean} [doorstep_return] - Specifies if the courier partner
1251
+ * offers doorstep return services.
1252
+ * @property {boolean} [product_installation] - Indicates if the courier partner
1253
+ * provides product installation services upon delivery.
1254
+ * @property {boolean} [openbox_delivery] - Specifies whether the courier
1255
+ * partner supports open-box delivery, allowing customers to inspect goods
1256
+ * before accepting.
1257
+ * @property {boolean} [multi_pick_single_drop] - Indicates if the courier
1258
+ * partner supports multiple pickups to a single drop location.
1259
+ * @property {boolean} [single_pick_multi_drop] - Indicates whether the courier
1260
+ * partner supports single pickup to multiple drop locations.
1261
+ * @property {boolean} [multi_pick_multi_drop] - Denotes if the courier partner
1262
+ * offers services for multiple pickups to multiple drop locations.
1263
+ * @property {boolean} [ewaybill] - Specifies if the courier partner requires or
1264
+ * supports the generation of e-waybills for shipments.
1265
+ */
1266
+ /**
1267
+ * @typedef CourierPartnerSchemeV2DetailsModel
1268
+ * @property {string} extension_id - Unique identifier of courier partner extension
1269
+ * @property {string} [scheme_id]
1270
+ * @property {string} name
1271
+ * @property {ArithmeticOperations} weight
1272
+ * @property {ArithmeticOperations} [volumetric_weight]
1273
+ * @property {string} transport_type
1274
+ * @property {string} region
1275
+ * @property {string} delivery_type
1276
+ * @property {string[]} payment_mode
1277
+ * @property {string} stage
1278
+ * @property {string} [status_updates] - Describes the type of status updates
1279
+ * provided by the courier partner (e.g., real-time, periodic).
1280
+ * @property {number} [ndr_attempts] - Indicates if the Non-Delivery Report
1281
+ * (NDR) feature is supported by the courier partner.
1282
+ * @property {number} [qc_shipment_item_quantity] - Defines the maximum quantity
1283
+ * of items allowed in a quality check shipment.
1284
+ * @property {number} [non_qc_shipment_item_quantity] - Defines the maximum
1285
+ * quantity of items allowed in a non-quality check shipment.
1286
+ * @property {CourierPartnerSchemeV2Features} feature
1287
+ */
1288
+ /**
1289
+ * @typedef CourierPartnerV2SchemeModel
1290
+ * @property {string} extension_id - Unique identifier of courier partner extension.
1291
+ * @property {string} scheme_id - Unique identifier of courier partner scheme.
1292
+ * @property {string} [company_id] - Unique identifier of company.
1293
+ * @property {string} name - Name of the scheme.
1294
+ * @property {ArithmeticOperations} weight
1295
+ * @property {ArithmeticOperations} [volumetric_weight]
1296
+ * @property {string} transport_type - Mode of transport associated with the
1297
+ * courier partner scheme.
1298
+ * @property {string} region - Serviceable region associated with the courier
1299
+ * partner scheme.
1300
+ * @property {string} delivery_type - Type of delivery associated with the
1301
+ * courier partner scheme.
1302
+ * @property {string[]} payment_mode - Mode of payment associated with the
1303
+ * courier partner scheme.
1304
+ * @property {string} stage - Indicates if the courier partner scheme is
1305
+ * currently active or inactive.
1306
+ * @property {string} [status_updates] - Describes the type of status updates
1307
+ * provided by the courier partner (e.g., real-time, periodic).
1308
+ * @property {number} [ndr_attempts] - Indicates if the Non-Delivery Report
1309
+ * (NDR) feature is supported by the courier partner.
1310
+ * @property {number} [qc_shipment_item_quantity] - Defines the maximum quantity
1311
+ * of items allowed in a quality check shipment.
1312
+ * @property {number} [non_qc_shipment_item_quantity] - Defines the maximum
1313
+ * quantity of items allowed in a non-quality check shipment.
1314
+ * @property {CourierPartnerSchemeV2Features} feature
1315
+ */
1316
+ /**
1317
+ * @typedef CourierPartnerSchemeV2UpdateDetails
1318
+ * @property {string} name
1319
+ * @property {ArithmeticOperations} weight
1320
+ * @property {ArithmeticOperations} [volumetric_weight]
1321
+ * @property {string} transport_type
1322
+ * @property {string} region
1323
+ * @property {string} delivery_type
1324
+ * @property {string[]} payment_mode
1325
+ * @property {string} stage
1326
+ * @property {string} [status_updates] - Describes the type of status updates
1327
+ * provided by the courier partner (e.g., real-time, periodic).
1328
+ * @property {number} [ndr_attempts] - Indicates if the Non-Delivery Report
1329
+ * (NDR) feature is supported by the courier partner.
1330
+ * @property {number} [qc_shipment_item_quantity] - Defines the maximum quantity
1331
+ * of items allowed in a quality check shipment.
1332
+ * @property {number} [non_qc_shipment_item_quantity] - Defines the maximum
1333
+ * quantity of items allowed in a non-quality check shipment.
1334
+ * @property {CourierPartnerSchemeV2Features} feature
1335
+ */
1336
+ /**
1337
+ * @typedef courierPartnerSchemeV2List
1338
+ * @property {CourierPartnerV2SchemeModel[]} items - List of courier partner schemes
1339
+ * @property {Page} page
1340
+ */
1341
+ /**
1342
+ * @typedef BulkRegionServiceabilityTatDetails
1343
+ * @property {string} country
1344
+ * @property {string} region
1345
+ * @property {string} type
1346
+ */
1347
+ /**
1348
+ * @typedef BulkRegionServiceabilityTatResultItemData
1349
+ * @property {string} [country] - Name of the country.
1350
+ * @property {string} [region] - Name of the region for which the
1351
+ * tat/serviceability file needs to be downloaded.
1352
+ * @property {string} [type] - Denotes the type of data.
1353
+ * @property {string} [batch_id] - Unique identifier identifying the perticular request.
1354
+ * @property {string} [status] - Current status of the request.
1355
+ * @property {Object[]} [failed_records] - Information of records which failed
1356
+ * @property {string} [file_path] - CDN path of the file.
1357
+ */
1358
+ /**
1359
+ * @typedef BulkRegionServiceabilityTatResult
1360
+ * @property {BulkRegionServiceabilityTatResultItemData[]} [items]
1361
+ * @property {Page} [page]
1362
+ */
1363
+ /**
1364
+ * @typedef HierarchyItems
1365
+ * @property {string} [display_name]
1366
+ * @property {string} [slug]
1367
+ */
1368
+ /**
1369
+ * @typedef GetCountriesItems
1370
+ * @property {string} [id]
1371
+ * @property {string} [name]
1372
+ * @property {string} [iso2]
1373
+ * @property {string} [iso3]
1374
+ * @property {string[]} [timezones]
1375
+ * @property {HierarchyItems[]} [hierarchy]
1376
+ * @property {string} [phone_code]
1377
+ * @property {string} [currency]
1378
+ * @property {string} [type]
1379
+ * @property {string} [latitude]
1380
+ * @property {string} [longitude]
1381
+ * @property {string} [display_name]
1382
+ * @property {boolean} [has_next_hierarchy]
1383
+ */
1384
+ /**
1385
+ * @typedef GetCountries
1386
+ * @property {GetCountriesItems[]} items
1387
+ * @property {Page} page
1388
+ */
1206
1389
  declare class ServiceabilityPlatformModel {
1207
1390
  }
1208
1391
  declare namespace ServiceabilityPlatformModel {
1209
- export { UpdateZoneConfigDetails, ServiceabilityErrorResult, ApplicationServiceabilityConfig, ApplicationServiceabilityConfigResult, EntityRegionView_Details, EntityRegionView_Error, EntityRegionView_page, getAppRegionZonesResult, PageSchema, EntityRegionView_Items, EntityRegionView_Result, ListViewSummary, ZoneDataItem, ListViewProduct, ListViewChannels, ListViewItems, ListViewResult, CompanyStoreView_PageItems, CompanyStoreView_Result, GetZoneDataViewChannels, ZoneProductTypes, ZoneMappingDetailType, ZoneMappingType, ZoneMappingRegions, UpdateZoneData, ZoneUpdateDetails, ZoneSuccessResult, GetZoneDataViewItems, GetSingleZoneDataViewResult, GetZoneByIdSchema, CreateZoneData, ZoneResult, GetZoneFromPincodeViewDetails, Zone, GetZoneFromPincodeViewResult, GetZoneFromApplicationIdViewResult, ServiceabilityPageResult, MobileNo, ManagerResult, ModifiedByResult, IntegrationTypeResult, ProductReturnConfigResult, ContactNumberResult, AddressResult, CreatedByResult, EwayBillResult, EinvoiceResult, GstCredentialsResult, WarningsResult, OpeningClosing, TimmingResult, DocumentsResult, Dp, LogisticsResult, ItemResult, GetStoresViewResult, PincodeMopData, PincodeMopUpdateResult, PincodeMOPResult, CommonError, PincodeMopBulkData, PincodeBulkViewResult, PincodeCodStatusListingDetails, PincodeCodStatusItem, PincodeCodStatusListingResult, Error, PincodeCodStatusListingPage, PincodeCodStatusListingSummary, PincodeMopUpdateAuditHistoryDetails, PincodeMopUpdateAuditHistoryPaging, PincodeMopUpdateAuditHistoryResult, PincodeMopUpdateAuditHistoryResultData, ArithmeticOperations, SchemeRulesFeatures, SchemeRules, CourierAccountUpdateDetails, CourierAccount, CourierAccountDetailsBody, ErrorResult, CourierPartnerAccountFailureResult, Page, CourierPartnerRuleCPListResult, CourierPartnerRuleResult, CourierPartnerList, LocationRuleValues, LocationRule, StringComparisonOperations, IntComparisonOperations, CourierPartnerRuleConditions, CourierPartnerRule, FailureResult, CourierPartnerRulesListResult, ShipmentsArticles, ShipmentDimension, Shipments, ShipmentCourierPartnerDetails, CourierPartnerPromise, CourierPartners, ShipmentCourierPartners, ShipmentCourierPartnerResult, ShipmentsCourierPartnersServiceability, CompanyConfig, ZoneConfig, ApplicationConfig, BulkRegionJobDetails, BulkRegionResultItemData, BulkRegionResult, SelfShipResult, ApplicationSelfShipConfig, ApplicationSelfShipConfigResult, StoreRuleConfigData, CustomerRadiusSchema, StoreRuleConditionSchema, StoreRuleDataSchema, StorePrioritySchema, GetStoreRulesApiResult, CreateStoreRuleDetailsSchema, StoreRuleResultSchema, StoreRuleUpdateResultSchema, ServiceabilityModel, CourierPartnerSchemeFeatures, CourierPartnerSchemeModel, CourierAccountResult, CompanyCourierPartnerAccountListResult, PackageMaterial, PackageMaterialResult, PackageMaterialRule, PackageRule, PackageRuleResult, Channel, PackageMaterialRuleList, PackageMaterialList, PackageRuleProduct, PackageRuleProductTag, PackageRuleCategory, PackageMaterialRuleQuantity, RulePriorityDetails, RulePriorityResult, ArticleAssignment, ServiceabilityLocation, LocationDetailsServiceability, OptimalLocationsArticles, OptimlLocationsDetailsSchema, OptimalLocationArticlesResult, OptimalLocationAssignedStoresResult, OptimalLocationsResult, ValidationError, StandardError };
1392
+ export { UpdateZoneConfigDetails, ServiceabilityErrorResult, ApplicationServiceabilityConfig, ApplicationServiceabilityConfigResult, EntityRegionView_Details, EntityRegionView_Error, EntityRegionView_page, getAppRegionZonesResult, PageSchema, EntityRegionView_Items, EntityRegionView_Result, ListViewSummary, ZoneDataItem, ListViewProduct, ListViewChannels, ListViewItems, ListViewResult, CompanyStoreView_PageItems, CompanyStoreView_Result, GetZoneDataViewChannels, ZoneProductTypes, ZoneMappingDetailType, ZoneMappingType, ZoneMappingRegions, UpdateZoneData, ZoneUpdateDetails, ZoneSuccessResult, GetZoneDataViewItems, GetSingleZoneDataViewResult, GetZoneByIdSchema, CreateZoneData, ZoneResult, GetZoneFromPincodeViewDetails, Zone, GetZoneFromPincodeViewResult, GetZoneFromApplicationIdViewResult, ServiceabilityPageResult, MobileNo, ManagerResult, ModifiedByResult, IntegrationTypeResult, ProductReturnConfigResult, ContactNumberResult, AddressResult, CreatedByResult, EwayBillResult, EinvoiceResult, GstCredentialsResult, WarningsResult, OpeningClosing, TimmingResult, DocumentsResult, Dp, LogisticsResult, ItemResult, GetStoresViewResult, PincodeMopData, PincodeMopUpdateResult, PincodeMOPResult, CommonError, PincodeMopBulkData, PincodeBulkViewResult, PincodeCodStatusListingDetails, PincodeCodStatusItem, PincodeCodStatusListingResult, Error, PincodeCodStatusListingPage, PincodeCodStatusListingSummary, PincodeMopUpdateAuditHistoryDetails, PincodeMopUpdateAuditHistoryPaging, PincodeMopUpdateAuditHistoryResult, PincodeMopUpdateAuditHistoryResultData, ArithmeticOperations, SchemeRulesFeatures, SchemeRules, CourierAccountUpdateDetails, CourierAccount, CourierAccountDetailsBody, ErrorResult, CourierPartnerAccountFailureResult, Page, CourierPartnerRuleCPListResult, CourierPartnerRuleResult, CourierPartnerList, LocationRuleValues, LocationRule, StringComparisonOperations, IntComparisonOperations, CourierPartnerRuleConditions, CourierPartnerRule, FailureResult, CourierPartnerRulesListResult, ShipmentsArticles, ShipmentDimension, Shipments, ShipmentCourierPartnerDetails, CourierPartnerPromise, CourierPartners, ShipmentCourierPartners, ShipmentCourierPartnerResult, ShipmentsCourierPartnersServiceability, CompanyConfig, ZoneConfig, ApplicationConfig, BulkRegionJobDetails, BulkRegionResultItemData, BulkRegionResult, SelfShipResult, ApplicationSelfShipConfig, ApplicationSelfShipConfigResult, StoreRuleConfigData, CustomerRadiusSchema, StoreRuleConditionSchema, StoreRuleDataSchema, StorePrioritySchema, GetStoreRulesApiResult, CreateStoreRuleDetailsSchema, StoreRuleResultSchema, StoreRuleUpdateResultSchema, ServiceabilityModel, CourierPartnerSchemeFeatures, CourierPartnerSchemeModel, CourierAccountResult, CompanyCourierPartnerAccountListResult, PackageMaterial, PackageMaterialResult, PackageMaterialRule, PackageRule, PackageRuleResult, Channel, PackageMaterialRuleList, PackageMaterialList, PackageRuleProduct, PackageRuleProductTag, PackageRuleCategory, PackageMaterialRuleQuantity, RulePriorityDetails, RulePriorityResult, ArticleAssignment, ServiceabilityLocation, LocationDetailsServiceability, OptimalLocationsArticles, OptimlLocationsDetailsSchema, OptimalLocationArticlesResult, OptimalLocationAssignedStoresResult, OptimalLocationsResult, ValidationError, StandardError, CourierPartnerSchemeV2Features, CourierPartnerSchemeV2DetailsModel, CourierPartnerV2SchemeModel, CourierPartnerSchemeV2UpdateDetails, courierPartnerSchemeV2List, BulkRegionServiceabilityTatDetails, BulkRegionServiceabilityTatResultItemData, BulkRegionServiceabilityTatResult, HierarchyItems, GetCountriesItems, GetCountries };
1210
1393
  }
1211
1394
  /** @returns {UpdateZoneConfigDetails} */
1212
1395
  declare function UpdateZoneConfigDetails(): UpdateZoneConfigDetails;
@@ -2994,6 +3177,7 @@ type ServiceabilityModel = {
2994
3177
  pickup_cutoff?: string;
2995
3178
  route_code?: string;
2996
3179
  is_first_mile: boolean;
3180
+ is_reverse_pickup?: boolean;
2997
3181
  is_return: boolean;
2998
3182
  is_installation: boolean;
2999
3183
  is_last_mile: boolean;
@@ -3001,24 +3185,107 @@ type ServiceabilityModel = {
3001
3185
  /** @returns {CourierPartnerSchemeFeatures} */
3002
3186
  declare function CourierPartnerSchemeFeatures(): CourierPartnerSchemeFeatures;
3003
3187
  type CourierPartnerSchemeFeatures = {
3188
+ /**
3189
+ * - Indicates if the courier partner offers
3190
+ * doorstep quality check services.
3191
+ */
3004
3192
  doorstep_qc?: boolean;
3193
+ /**
3194
+ * - Specifies whether the courier partner supports QR
3195
+ * code-based operations.
3196
+ */
3005
3197
  qr?: boolean;
3198
+ /**
3199
+ * - Denotes if the courier partner supports
3200
+ * multi-part shipment services.
3201
+ */
3006
3202
  mps?: boolean;
3203
+ /**
3204
+ * - Indicates if the Non-Delivery Report (NDR)
3205
+ * feature is supported by the courier partner.
3206
+ */
3007
3207
  ndr?: boolean;
3208
+ /**
3209
+ * - Number of attempts allowed for resolving
3210
+ * Non-Delivery Reports (NDR).
3211
+ */
3008
3212
  ndr_attempts?: number;
3213
+ /**
3214
+ * - Specifies if the courier partner
3215
+ * handles the transportation of dangerous goods.
3216
+ */
3009
3217
  dangerous_goods?: boolean;
3218
+ /**
3219
+ * - Indicates whether the courier partner
3220
+ * manages the shipment of fragile goods.
3221
+ */
3010
3222
  fragile_goods?: boolean;
3223
+ /**
3224
+ * - Indicates if the courier partner
3225
+ * handles restricted goods, as per regulatory guidelines.
3226
+ */
3011
3227
  restricted_goods?: boolean;
3228
+ /**
3229
+ * - Denotes if the courier partner
3230
+ * provides cold storage facilities for goods.
3231
+ */
3012
3232
  cold_storage_goods?: boolean;
3233
+ /**
3234
+ * - Indicates if the courier partner
3235
+ * supports doorstep exchange services.
3236
+ */
3013
3237
  doorstep_exchange?: boolean;
3238
+ /**
3239
+ * - Specifies if the courier partner
3240
+ * offers doorstep return services.
3241
+ */
3014
3242
  doorstep_return?: boolean;
3243
+ /**
3244
+ * - Indicates if the courier partner
3245
+ * provides product installation services upon delivery.
3246
+ */
3015
3247
  product_installation?: boolean;
3248
+ /**
3249
+ * - Specifies whether the courier
3250
+ * partner supports open-box delivery, allowing customers to inspect goods
3251
+ * before accepting.
3252
+ */
3016
3253
  openbox_delivery?: boolean;
3254
+ /**
3255
+ * - Describes the type of status updates
3256
+ * provided by the courier partner (e.g., real-time, periodic).
3257
+ */
3017
3258
  status_updates?: string;
3259
+ /**
3260
+ * - Indicates if the courier
3261
+ * partner supports multiple pickups to a single drop location.
3262
+ */
3018
3263
  multi_pick_single_drop?: boolean;
3264
+ /**
3265
+ * - Indicates whether the courier
3266
+ * partner supports single pickup to multiple drop locations.
3267
+ */
3019
3268
  single_pick_multi_drop?: boolean;
3269
+ /**
3270
+ * - Denotes if the courier partner
3271
+ * offers services for multiple pickups to multiple drop locations.
3272
+ */
3020
3273
  multi_pick_multi_drop?: boolean;
3274
+ /**
3275
+ * - Specifies if the courier partner requires or
3276
+ * supports the generation of e-waybills for shipments.
3277
+ */
3021
3278
  ewaybill?: boolean;
3279
+ /**
3280
+ * - Defines the maximum quantity
3281
+ * of items allowed in a quality check shipment.
3282
+ */
3283
+ qc_shipment_item_quantity?: number;
3284
+ /**
3285
+ * - Defines the maximum
3286
+ * quantity of items allowed in a non-quality check shipment.
3287
+ */
3288
+ non_qc_shipment_item_quantity?: number;
3022
3289
  };
3023
3290
  /** @returns {CourierPartnerSchemeModel} */
3024
3291
  declare function CourierPartnerSchemeModel(): CourierPartnerSchemeModel;
@@ -3058,8 +3325,8 @@ type CourierPartnerSchemeModel = {
3058
3325
  */
3059
3326
  payment_mode: string[];
3060
3327
  /**
3061
- * - Denotes whether the courier partner scheme is in
3062
- * enabled or disabled stage.
3328
+ * - Indicates if the courier partner scheme is
3329
+ * currently active or inactive.
3063
3330
  */
3064
3331
  stage: string;
3065
3332
  feature: CourierPartnerSchemeFeatures;
@@ -3532,3 +3799,311 @@ type StandardError = {
3532
3799
  */
3533
3800
  message: string;
3534
3801
  };
3802
+ /** @returns {CourierPartnerSchemeV2Features} */
3803
+ declare function CourierPartnerSchemeV2Features(): CourierPartnerSchemeV2Features;
3804
+ type CourierPartnerSchemeV2Features = {
3805
+ /**
3806
+ * - Indicates if the courier partner offers
3807
+ * doorstep quality check services.
3808
+ */
3809
+ doorstep_qc?: boolean;
3810
+ /**
3811
+ * - Specifies whether the courier partner supports QR
3812
+ * code-based operations.
3813
+ */
3814
+ qr?: boolean;
3815
+ /**
3816
+ * - Denotes if the courier partner supports
3817
+ * multi-part shipment services.
3818
+ */
3819
+ mps?: boolean;
3820
+ /**
3821
+ * - Indicates if the Non-Delivery Report (NDR)
3822
+ * feature is supported by the courier partner.
3823
+ */
3824
+ ndr?: boolean;
3825
+ /**
3826
+ * - Specifies if the courier partner
3827
+ * handles the transportation of dangerous goods.
3828
+ */
3829
+ dangerous_goods?: boolean;
3830
+ /**
3831
+ * - Indicates whether the courier partner
3832
+ * manages the shipment of fragile goods.
3833
+ */
3834
+ fragile_goods?: boolean;
3835
+ /**
3836
+ * - Indicates if the courier partner
3837
+ * handles restricted goods, as per regulatory guidelines.
3838
+ */
3839
+ restricted_goods?: boolean;
3840
+ /**
3841
+ * - Denotes if the courier partner
3842
+ * provides cold storage facilities for goods.
3843
+ */
3844
+ cold_storage_goods?: boolean;
3845
+ /**
3846
+ * - Indicates if the courier partner
3847
+ * supports doorstep exchange services.
3848
+ */
3849
+ doorstep_exchange?: boolean;
3850
+ /**
3851
+ * - Specifies if the courier partner
3852
+ * offers doorstep return services.
3853
+ */
3854
+ doorstep_return?: boolean;
3855
+ /**
3856
+ * - Indicates if the courier partner
3857
+ * provides product installation services upon delivery.
3858
+ */
3859
+ product_installation?: boolean;
3860
+ /**
3861
+ * - Specifies whether the courier
3862
+ * partner supports open-box delivery, allowing customers to inspect goods
3863
+ * before accepting.
3864
+ */
3865
+ openbox_delivery?: boolean;
3866
+ /**
3867
+ * - Indicates if the courier
3868
+ * partner supports multiple pickups to a single drop location.
3869
+ */
3870
+ multi_pick_single_drop?: boolean;
3871
+ /**
3872
+ * - Indicates whether the courier
3873
+ * partner supports single pickup to multiple drop locations.
3874
+ */
3875
+ single_pick_multi_drop?: boolean;
3876
+ /**
3877
+ * - Denotes if the courier partner
3878
+ * offers services for multiple pickups to multiple drop locations.
3879
+ */
3880
+ multi_pick_multi_drop?: boolean;
3881
+ /**
3882
+ * - Specifies if the courier partner requires or
3883
+ * supports the generation of e-waybills for shipments.
3884
+ */
3885
+ ewaybill?: boolean;
3886
+ };
3887
+ /** @returns {CourierPartnerSchemeV2DetailsModel} */
3888
+ declare function CourierPartnerSchemeV2DetailsModel(): CourierPartnerSchemeV2DetailsModel;
3889
+ type CourierPartnerSchemeV2DetailsModel = {
3890
+ /**
3891
+ * - Unique identifier of courier partner extension
3892
+ */
3893
+ extension_id: string;
3894
+ scheme_id?: string;
3895
+ name: string;
3896
+ weight: ArithmeticOperations;
3897
+ volumetric_weight?: ArithmeticOperations;
3898
+ transport_type: string;
3899
+ region: string;
3900
+ delivery_type: string;
3901
+ payment_mode: string[];
3902
+ stage: string;
3903
+ /**
3904
+ * - Describes the type of status updates
3905
+ * provided by the courier partner (e.g., real-time, periodic).
3906
+ */
3907
+ status_updates?: string;
3908
+ /**
3909
+ * - Indicates if the Non-Delivery Report
3910
+ * (NDR) feature is supported by the courier partner.
3911
+ */
3912
+ ndr_attempts?: number;
3913
+ /**
3914
+ * - Defines the maximum quantity
3915
+ * of items allowed in a quality check shipment.
3916
+ */
3917
+ qc_shipment_item_quantity?: number;
3918
+ /**
3919
+ * - Defines the maximum
3920
+ * quantity of items allowed in a non-quality check shipment.
3921
+ */
3922
+ non_qc_shipment_item_quantity?: number;
3923
+ feature: CourierPartnerSchemeV2Features;
3924
+ };
3925
+ /** @returns {CourierPartnerV2SchemeModel} */
3926
+ declare function CourierPartnerV2SchemeModel(): CourierPartnerV2SchemeModel;
3927
+ type CourierPartnerV2SchemeModel = {
3928
+ /**
3929
+ * - Unique identifier of courier partner extension.
3930
+ */
3931
+ extension_id: string;
3932
+ /**
3933
+ * - Unique identifier of courier partner scheme.
3934
+ */
3935
+ scheme_id: string;
3936
+ /**
3937
+ * - Unique identifier of company.
3938
+ */
3939
+ company_id?: string;
3940
+ /**
3941
+ * - Name of the scheme.
3942
+ */
3943
+ name: string;
3944
+ weight: ArithmeticOperations;
3945
+ volumetric_weight?: ArithmeticOperations;
3946
+ /**
3947
+ * - Mode of transport associated with the
3948
+ * courier partner scheme.
3949
+ */
3950
+ transport_type: string;
3951
+ /**
3952
+ * - Serviceable region associated with the courier
3953
+ * partner scheme.
3954
+ */
3955
+ region: string;
3956
+ /**
3957
+ * - Type of delivery associated with the
3958
+ * courier partner scheme.
3959
+ */
3960
+ delivery_type: string;
3961
+ /**
3962
+ * - Mode of payment associated with the
3963
+ * courier partner scheme.
3964
+ */
3965
+ payment_mode: string[];
3966
+ /**
3967
+ * - Indicates if the courier partner scheme is
3968
+ * currently active or inactive.
3969
+ */
3970
+ stage: string;
3971
+ /**
3972
+ * - Describes the type of status updates
3973
+ * provided by the courier partner (e.g., real-time, periodic).
3974
+ */
3975
+ status_updates?: string;
3976
+ /**
3977
+ * - Indicates if the Non-Delivery Report
3978
+ * (NDR) feature is supported by the courier partner.
3979
+ */
3980
+ ndr_attempts?: number;
3981
+ /**
3982
+ * - Defines the maximum quantity
3983
+ * of items allowed in a quality check shipment.
3984
+ */
3985
+ qc_shipment_item_quantity?: number;
3986
+ /**
3987
+ * - Defines the maximum
3988
+ * quantity of items allowed in a non-quality check shipment.
3989
+ */
3990
+ non_qc_shipment_item_quantity?: number;
3991
+ feature: CourierPartnerSchemeV2Features;
3992
+ };
3993
+ /** @returns {CourierPartnerSchemeV2UpdateDetails} */
3994
+ declare function CourierPartnerSchemeV2UpdateDetails(): CourierPartnerSchemeV2UpdateDetails;
3995
+ type CourierPartnerSchemeV2UpdateDetails = {
3996
+ name: string;
3997
+ weight: ArithmeticOperations;
3998
+ volumetric_weight?: ArithmeticOperations;
3999
+ transport_type: string;
4000
+ region: string;
4001
+ delivery_type: string;
4002
+ payment_mode: string[];
4003
+ stage: string;
4004
+ /**
4005
+ * - Describes the type of status updates
4006
+ * provided by the courier partner (e.g., real-time, periodic).
4007
+ */
4008
+ status_updates?: string;
4009
+ /**
4010
+ * - Indicates if the Non-Delivery Report
4011
+ * (NDR) feature is supported by the courier partner.
4012
+ */
4013
+ ndr_attempts?: number;
4014
+ /**
4015
+ * - Defines the maximum quantity
4016
+ * of items allowed in a quality check shipment.
4017
+ */
4018
+ qc_shipment_item_quantity?: number;
4019
+ /**
4020
+ * - Defines the maximum
4021
+ * quantity of items allowed in a non-quality check shipment.
4022
+ */
4023
+ non_qc_shipment_item_quantity?: number;
4024
+ feature: CourierPartnerSchemeV2Features;
4025
+ };
4026
+ /** @returns {courierPartnerSchemeV2List} */
4027
+ declare function courierPartnerSchemeV2List(): courierPartnerSchemeV2List;
4028
+ type courierPartnerSchemeV2List = {
4029
+ /**
4030
+ * - List of courier partner schemes
4031
+ */
4032
+ items: CourierPartnerV2SchemeModel[];
4033
+ page: Page;
4034
+ };
4035
+ /** @returns {BulkRegionServiceabilityTatDetails} */
4036
+ declare function BulkRegionServiceabilityTatDetails(): BulkRegionServiceabilityTatDetails;
4037
+ type BulkRegionServiceabilityTatDetails = {
4038
+ country: string;
4039
+ region: string;
4040
+ type: string;
4041
+ };
4042
+ /** @returns {BulkRegionServiceabilityTatResultItemData} */
4043
+ declare function BulkRegionServiceabilityTatResultItemData(): BulkRegionServiceabilityTatResultItemData;
4044
+ type BulkRegionServiceabilityTatResultItemData = {
4045
+ /**
4046
+ * - Name of the country.
4047
+ */
4048
+ country?: string;
4049
+ /**
4050
+ * - Name of the region for which the
4051
+ * tat/serviceability file needs to be downloaded.
4052
+ */
4053
+ region?: string;
4054
+ /**
4055
+ * - Denotes the type of data.
4056
+ */
4057
+ type?: string;
4058
+ /**
4059
+ * - Unique identifier identifying the perticular request.
4060
+ */
4061
+ batch_id?: string;
4062
+ /**
4063
+ * - Current status of the request.
4064
+ */
4065
+ status?: string;
4066
+ /**
4067
+ * - Information of records which failed
4068
+ */
4069
+ failed_records?: any[];
4070
+ /**
4071
+ * - CDN path of the file.
4072
+ */
4073
+ file_path?: string;
4074
+ };
4075
+ /** @returns {BulkRegionServiceabilityTatResult} */
4076
+ declare function BulkRegionServiceabilityTatResult(): BulkRegionServiceabilityTatResult;
4077
+ type BulkRegionServiceabilityTatResult = {
4078
+ items?: BulkRegionServiceabilityTatResultItemData[];
4079
+ page?: Page;
4080
+ };
4081
+ /** @returns {HierarchyItems} */
4082
+ declare function HierarchyItems(): HierarchyItems;
4083
+ type HierarchyItems = {
4084
+ display_name?: string;
4085
+ slug?: string;
4086
+ };
4087
+ /** @returns {GetCountriesItems} */
4088
+ declare function GetCountriesItems(): GetCountriesItems;
4089
+ type GetCountriesItems = {
4090
+ id?: string;
4091
+ name?: string;
4092
+ iso2?: string;
4093
+ iso3?: string;
4094
+ timezones?: string[];
4095
+ hierarchy?: HierarchyItems[];
4096
+ phone_code?: string;
4097
+ currency?: string;
4098
+ type?: string;
4099
+ latitude?: string;
4100
+ longitude?: string;
4101
+ display_name?: string;
4102
+ has_next_hierarchy?: boolean;
4103
+ };
4104
+ /** @returns {GetCountries} */
4105
+ declare function GetCountries(): GetCountries;
4106
+ type GetCountries = {
4107
+ items: GetCountriesItems[];
4108
+ page: Page;
4109
+ };