@gofynd/fdk-client-javascript 1.4.15 → 1.4.16-beta.2
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 +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +16 -16
- package/sdk/application/Cart/CartApplicationClient.js +101 -48
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +16 -16
- package/sdk/application/Catalog/CatalogApplicationClient.js +159 -0
- package/sdk/application/Common/CommonApplicationClient.js +6 -0
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +2 -2
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +24 -0
- package/sdk/application/Content/ContentApplicationClient.d.ts +59 -7
- package/sdk/application/Content/ContentApplicationClient.js +290 -0
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +2 -2
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +24 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +6 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +4 -4
- package/sdk/application/Lead/LeadApplicationClient.js +42 -0
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +6 -6
- package/sdk/application/Logistic/LogisticApplicationClient.js +69 -2
- package/sdk/application/Order/OrderApplicationClient.d.ts +11 -11
- package/sdk/application/Order/OrderApplicationClient.js +117 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +1 -11
- package/sdk/application/Payment/PaymentApplicationClient.js +15 -39
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +1 -1
- package/sdk/application/Rewards/RewardsApplicationClient.js +15 -0
- package/sdk/application/Share/ShareApplicationClient.d.ts +4 -4
- package/sdk/application/Share/ShareApplicationClient.js +42 -0
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +3 -3
- package/sdk/application/Theme/ThemeApplicationClient.js +36 -0
- package/sdk/application/User/UserApplicationClient.js +6 -0
- package/sdk/application/Webhook/WebhookApplicationClient.js +6 -0
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +4 -4
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +12 -33
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +38 -209
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +19 -399
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +11 -212
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +1 -3
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +7 -22
- package/sdk/partner/OAuthClient.js +1 -0
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +3 -40
- package/sdk/partner/Theme/ThemePartnerModel.js +2 -24
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +1 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +12 -3
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +11 -1
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +4 -1
- package/sdk/platform/Cart/CartPlatformModel.d.ts +49 -28
- package/sdk/platform/Cart/CartPlatformModel.js +23 -13
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +0 -24
- package/sdk/platform/Catalog/CatalogPlatformClient.js +0 -176
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +33 -80
- package/sdk/platform/Catalog/CatalogPlatformModel.js +36 -72
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +1 -45
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +0 -35
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +7 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +3 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +132 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +1104 -122
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +159 -1
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +161 -0
- package/sdk/platform/Content/ContentPlatformModel.d.ts +220 -5
- package/sdk/platform/Content/ContentPlatformModel.js +214 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +0 -10
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +0 -92
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -28
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +0 -18
- package/sdk/platform/Order/OrderPlatformClient.d.ts +12 -2
- package/sdk/platform/Order/OrderPlatformClient.js +99 -8
- package/sdk/platform/Order/OrderPlatformModel.d.ts +3 -75
- package/sdk/platform/Order/OrderPlatformModel.js +2 -43
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +33 -23
- package/sdk/platform/Order/OrderPlatformValidator.js +20 -10
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +1 -95
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +78 -701
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +23 -598
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +20 -382
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +3 -136
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -110
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +3 -6
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +10 -2
- package/sdk/platform/Share/SharePlatformModel.js +4 -2
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +3 -40
- package/sdk/platform/Theme/ThemePlatformModel.js +2 -24
- package/sdk/public/Configuration/ConfigurationPublicClient.js +1 -0
- package/sdk/public/Content/ContentPublicClient.d.ts +3 -3
- package/sdk/public/Content/ContentPublicClient.js +28 -0
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +10 -0
- package/sdk/public/Webhook/WebhookPublicClient.js +1 -0
|
@@ -939,54 +939,30 @@ 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]
|
|
943
942
|
* @property {boolean} is_return
|
|
944
943
|
* @property {boolean} is_installation
|
|
945
944
|
* @property {boolean} is_last_mile
|
|
946
945
|
*/
|
|
947
946
|
/**
|
|
948
947
|
* @typedef CourierPartnerSchemeFeatures
|
|
949
|
-
* @property {boolean} [doorstep_qc]
|
|
950
|
-
*
|
|
951
|
-
* @property {boolean} [
|
|
952
|
-
*
|
|
953
|
-
* @property {
|
|
954
|
-
*
|
|
955
|
-
* @property {boolean} [
|
|
956
|
-
*
|
|
957
|
-
* @property {
|
|
958
|
-
*
|
|
959
|
-
* @property {boolean} [
|
|
960
|
-
*
|
|
961
|
-
* @property {boolean} [
|
|
962
|
-
*
|
|
963
|
-
* @property {boolean} [
|
|
964
|
-
*
|
|
965
|
-
* @property {boolean} [
|
|
966
|
-
*
|
|
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.
|
|
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]
|
|
990
966
|
*/
|
|
991
967
|
/**
|
|
992
968
|
* @typedef CourierPartnerSchemeModel
|
|
@@ -1003,8 +979,8 @@ export = ServiceabilityPlatformModel;
|
|
|
1003
979
|
* courier partner scheme.
|
|
1004
980
|
* @property {string[]} payment_mode - Mode of payment associated with the
|
|
1005
981
|
* courier partner scheme.
|
|
1006
|
-
* @property {string} stage -
|
|
1007
|
-
*
|
|
982
|
+
* @property {string} stage - Denotes whether the courier partner scheme is in
|
|
983
|
+
* enabled or disabled stage.
|
|
1008
984
|
* @property {CourierPartnerSchemeFeatures} feature
|
|
1009
985
|
*/
|
|
1010
986
|
/**
|
|
@@ -1227,169 +1203,10 @@ export = ServiceabilityPlatformModel;
|
|
|
1227
1203
|
* @typedef StandardError
|
|
1228
1204
|
* @property {string} message - A brief description of the error.
|
|
1229
1205
|
*/
|
|
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
|
-
*/
|
|
1389
1206
|
declare class ServiceabilityPlatformModel {
|
|
1390
1207
|
}
|
|
1391
1208
|
declare namespace ServiceabilityPlatformModel {
|
|
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
|
|
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 };
|
|
1393
1210
|
}
|
|
1394
1211
|
/** @returns {UpdateZoneConfigDetails} */
|
|
1395
1212
|
declare function UpdateZoneConfigDetails(): UpdateZoneConfigDetails;
|
|
@@ -3177,7 +2994,6 @@ type ServiceabilityModel = {
|
|
|
3177
2994
|
pickup_cutoff?: string;
|
|
3178
2995
|
route_code?: string;
|
|
3179
2996
|
is_first_mile: boolean;
|
|
3180
|
-
is_reverse_pickup?: boolean;
|
|
3181
2997
|
is_return: boolean;
|
|
3182
2998
|
is_installation: boolean;
|
|
3183
2999
|
is_last_mile: boolean;
|
|
@@ -3185,107 +3001,24 @@ type ServiceabilityModel = {
|
|
|
3185
3001
|
/** @returns {CourierPartnerSchemeFeatures} */
|
|
3186
3002
|
declare function CourierPartnerSchemeFeatures(): CourierPartnerSchemeFeatures;
|
|
3187
3003
|
type CourierPartnerSchemeFeatures = {
|
|
3188
|
-
/**
|
|
3189
|
-
* - Indicates if the courier partner offers
|
|
3190
|
-
* doorstep quality check services.
|
|
3191
|
-
*/
|
|
3192
3004
|
doorstep_qc?: boolean;
|
|
3193
|
-
/**
|
|
3194
|
-
* - Specifies whether the courier partner supports QR
|
|
3195
|
-
* code-based operations.
|
|
3196
|
-
*/
|
|
3197
3005
|
qr?: boolean;
|
|
3198
|
-
/**
|
|
3199
|
-
* - Denotes if the courier partner supports
|
|
3200
|
-
* multi-part shipment services.
|
|
3201
|
-
*/
|
|
3202
3006
|
mps?: boolean;
|
|
3203
|
-
/**
|
|
3204
|
-
* - Indicates if the Non-Delivery Report (NDR)
|
|
3205
|
-
* feature is supported by the courier partner.
|
|
3206
|
-
*/
|
|
3207
3007
|
ndr?: boolean;
|
|
3208
|
-
/**
|
|
3209
|
-
* - Number of attempts allowed for resolving
|
|
3210
|
-
* Non-Delivery Reports (NDR).
|
|
3211
|
-
*/
|
|
3212
3008
|
ndr_attempts?: number;
|
|
3213
|
-
/**
|
|
3214
|
-
* - Specifies if the courier partner
|
|
3215
|
-
* handles the transportation of dangerous goods.
|
|
3216
|
-
*/
|
|
3217
3009
|
dangerous_goods?: boolean;
|
|
3218
|
-
/**
|
|
3219
|
-
* - Indicates whether the courier partner
|
|
3220
|
-
* manages the shipment of fragile goods.
|
|
3221
|
-
*/
|
|
3222
3010
|
fragile_goods?: boolean;
|
|
3223
|
-
/**
|
|
3224
|
-
* - Indicates if the courier partner
|
|
3225
|
-
* handles restricted goods, as per regulatory guidelines.
|
|
3226
|
-
*/
|
|
3227
3011
|
restricted_goods?: boolean;
|
|
3228
|
-
/**
|
|
3229
|
-
* - Denotes if the courier partner
|
|
3230
|
-
* provides cold storage facilities for goods.
|
|
3231
|
-
*/
|
|
3232
3012
|
cold_storage_goods?: boolean;
|
|
3233
|
-
/**
|
|
3234
|
-
* - Indicates if the courier partner
|
|
3235
|
-
* supports doorstep exchange services.
|
|
3236
|
-
*/
|
|
3237
3013
|
doorstep_exchange?: boolean;
|
|
3238
|
-
/**
|
|
3239
|
-
* - Specifies if the courier partner
|
|
3240
|
-
* offers doorstep return services.
|
|
3241
|
-
*/
|
|
3242
3014
|
doorstep_return?: boolean;
|
|
3243
|
-
/**
|
|
3244
|
-
* - Indicates if the courier partner
|
|
3245
|
-
* provides product installation services upon delivery.
|
|
3246
|
-
*/
|
|
3247
3015
|
product_installation?: boolean;
|
|
3248
|
-
/**
|
|
3249
|
-
* - Specifies whether the courier
|
|
3250
|
-
* partner supports open-box delivery, allowing customers to inspect goods
|
|
3251
|
-
* before accepting.
|
|
3252
|
-
*/
|
|
3253
3016
|
openbox_delivery?: boolean;
|
|
3254
|
-
/**
|
|
3255
|
-
* - Describes the type of status updates
|
|
3256
|
-
* provided by the courier partner (e.g., real-time, periodic).
|
|
3257
|
-
*/
|
|
3258
3017
|
status_updates?: string;
|
|
3259
|
-
/**
|
|
3260
|
-
* - Indicates if the courier
|
|
3261
|
-
* partner supports multiple pickups to a single drop location.
|
|
3262
|
-
*/
|
|
3263
3018
|
multi_pick_single_drop?: boolean;
|
|
3264
|
-
/**
|
|
3265
|
-
* - Indicates whether the courier
|
|
3266
|
-
* partner supports single pickup to multiple drop locations.
|
|
3267
|
-
*/
|
|
3268
3019
|
single_pick_multi_drop?: boolean;
|
|
3269
|
-
/**
|
|
3270
|
-
* - Denotes if the courier partner
|
|
3271
|
-
* offers services for multiple pickups to multiple drop locations.
|
|
3272
|
-
*/
|
|
3273
3020
|
multi_pick_multi_drop?: boolean;
|
|
3274
|
-
/**
|
|
3275
|
-
* - Specifies if the courier partner requires or
|
|
3276
|
-
* supports the generation of e-waybills for shipments.
|
|
3277
|
-
*/
|
|
3278
3021
|
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;
|
|
3289
3022
|
};
|
|
3290
3023
|
/** @returns {CourierPartnerSchemeModel} */
|
|
3291
3024
|
declare function CourierPartnerSchemeModel(): CourierPartnerSchemeModel;
|
|
@@ -3325,8 +3058,8 @@ type CourierPartnerSchemeModel = {
|
|
|
3325
3058
|
*/
|
|
3326
3059
|
payment_mode: string[];
|
|
3327
3060
|
/**
|
|
3328
|
-
* -
|
|
3329
|
-
*
|
|
3061
|
+
* - Denotes whether the courier partner scheme is in
|
|
3062
|
+
* enabled or disabled stage.
|
|
3330
3063
|
*/
|
|
3331
3064
|
stage: string;
|
|
3332
3065
|
feature: CourierPartnerSchemeFeatures;
|
|
@@ -3799,311 +3532,3 @@ type StandardError = {
|
|
|
3799
3532
|
*/
|
|
3800
3533
|
message: string;
|
|
3801
3534
|
};
|
|
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
|
-
};
|