@gofynd/fdk-client-javascript 1.4.13 → 1.4.14
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/ApplicationClient.d.ts +2 -0
- package/sdk/application/ApplicationClient.js +2 -0
- package/sdk/application/Cart/CartApplicationClient.d.ts +60 -53
- package/sdk/application/Cart/CartApplicationClient.js +130 -53
- package/sdk/application/Cart/CartApplicationModel.d.ts +489 -143
- package/sdk/application/Cart/CartApplicationModel.js +380 -159
- package/sdk/application/Cart/CartApplicationValidator.d.ts +38 -19
- package/sdk/application/Cart/CartApplicationValidator.js +34 -18
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +88 -68
- package/sdk/application/Catalog/CatalogApplicationClient.js +114 -94
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +194 -142
- package/sdk/application/Catalog/CatalogApplicationModel.js +171 -133
- package/sdk/application/Common/CommonApplicationClient.d.ts +3 -2
- package/sdk/application/Common/CommonApplicationClient.js +6 -5
- package/sdk/application/Common/CommonApplicationModel.d.ts +9 -9
- package/sdk/application/Common/CommonApplicationModel.js +6 -6
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +34 -27
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +34 -27
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +45 -57
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +35 -47
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +2 -2
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +2 -2
- package/sdk/application/Content/ContentApplicationClient.d.ts +23 -33
- package/sdk/application/Content/ContentApplicationClient.js +54 -75
- package/sdk/application/Content/ContentApplicationModel.d.ts +93 -37
- package/sdk/application/Content/ContentApplicationModel.js +83 -32
- package/sdk/application/Content/ContentApplicationValidator.d.ts +23 -17
- package/sdk/application/Content/ContentApplicationValidator.js +15 -10
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +9 -8
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +14 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +23 -25
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +16 -18
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +6 -6
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +6 -6
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +36 -0
- package/sdk/application/Finance/FinanceApplicationClient.js +202 -0
- package/sdk/application/Finance/FinanceApplicationModel.d.ts +289 -0
- package/sdk/application/Finance/FinanceApplicationModel.js +208 -0
- package/sdk/application/Finance/FinanceApplicationValidator.d.ts +25 -0
- package/sdk/application/Finance/FinanceApplicationValidator.js +31 -0
- package/sdk/application/Lead/LeadApplicationClient.d.ts +2 -3
- package/sdk/application/Lead/LeadApplicationClient.js +2 -3
- package/sdk/application/Lead/LeadApplicationModel.d.ts +11 -11
- package/sdk/application/Lead/LeadApplicationModel.js +19 -19
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +39 -16
- package/sdk/application/Logistic/LogisticApplicationClient.js +189 -21
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +532 -173
- package/sdk/application/Logistic/LogisticApplicationModel.js +409 -139
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +54 -9
- package/sdk/application/Logistic/LogisticApplicationValidator.js +42 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +24 -10
- package/sdk/application/Order/OrderApplicationClient.js +96 -13
- package/sdk/application/Order/OrderApplicationModel.d.ts +434 -102
- package/sdk/application/Order/OrderApplicationModel.js +278 -73
- package/sdk/application/Order/OrderApplicationValidator.d.ts +17 -3
- package/sdk/application/Order/OrderApplicationValidator.js +15 -2
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +96 -99
- package/sdk/application/Payment/PaymentApplicationClient.js +111 -114
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +293 -289
- package/sdk/application/Payment/PaymentApplicationModel.js +243 -241
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +46 -46
- package/sdk/application/Payment/PaymentApplicationValidator.js +46 -46
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +13 -16
- package/sdk/application/Rewards/RewardsApplicationClient.js +19 -22
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +37 -37
- package/sdk/application/Rewards/RewardsApplicationModel.js +29 -29
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +6 -6
- package/sdk/application/Rewards/RewardsApplicationValidator.js +6 -6
- package/sdk/application/Share/ShareApplicationModel.js +1 -1
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +2 -2
- package/sdk/application/Theme/ThemeApplicationClient.js +8 -6
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +48 -17
- package/sdk/application/Theme/ThemeApplicationModel.js +42 -22
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +16 -3
- package/sdk/application/Theme/ThemeApplicationValidator.js +9 -2
- package/sdk/application/User/UserApplicationClient.d.ts +10 -10
- package/sdk/application/User/UserApplicationClient.js +10 -10
- package/sdk/application/User/UserApplicationModel.d.ts +17 -17
- package/sdk/application/User/UserApplicationModel.js +16 -16
- package/sdk/application/User/UserApplicationValidator.d.ts +2 -2
- package/sdk/application/User/UserApplicationValidator.js +2 -2
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -4
- package/sdk/application/Webhook/WebhookApplicationClient.js +4 -4
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +11 -9
- package/sdk/application/Webhook/WebhookApplicationModel.js +8 -6
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +2 -2
- package/sdk/application/Webhook/WebhookApplicationValidator.js +2 -2
- package/sdk/application/index.d.ts +1 -0
- package/sdk/application/index.js +2 -0
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +86 -12
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +582 -24
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +116 -19
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +121 -14
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +8 -1
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +51 -4
- package/sdk/partner/Lead/LeadPartnerClient.d.ts +2 -2
- package/sdk/partner/Lead/LeadPartnerClient.js +2 -2
- package/sdk/partner/Lead/LeadPartnerModel.d.ts +5 -5
- package/sdk/partner/Lead/LeadPartnerModel.js +15 -15
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +126 -20
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +970 -20
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +767 -85
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +429 -76
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +10 -0
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +120 -6
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +8 -10
- package/sdk/partner/Theme/ThemePartnerClient.js +14 -16
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +96 -37
- package/sdk/partner/Theme/ThemePartnerModel.js +90 -36
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +28 -18
- package/sdk/partner/Webhook/WebhookPartnerClient.js +103 -18
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +612 -179
- package/sdk/partner/Webhook/WebhookPartnerModel.js +253 -150
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +1 -0
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +11 -3
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +5 -4
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +14 -8
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +59 -9
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +40 -4
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +2 -32
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -243
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +11 -130
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +12 -152
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
- package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
- package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +134 -103
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +407 -112
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +111 -65
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +106 -44
- package/sdk/platform/Cart/CartPlatformModel.d.ts +4978 -1303
- package/sdk/platform/Cart/CartPlatformModel.js +1922 -1217
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +208 -183
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +383 -358
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +122 -126
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +66 -68
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +141 -118
- package/sdk/platform/Catalog/CatalogPlatformClient.js +193 -170
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1516 -1766
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1393 -1224
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
- package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -2
- package/sdk/platform/Common/CommonPlatformClient.js +3 -2
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +16 -17
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +43 -33
- package/sdk/platform/Communication/CommunicationPlatformModel.js +38 -34
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +46 -42
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +47 -43
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +210 -212
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +46 -33
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +67 -54
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +45 -24
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +134 -30
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +283 -124
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +219 -94
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +124 -141
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +449 -422
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +179 -141
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +168 -130
- package/sdk/platform/Content/ContentPlatformClient.d.ts +142 -106
- package/sdk/platform/Content/ContentPlatformClient.js +523 -336
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1241 -395
- package/sdk/platform/Content/ContentPlatformModel.js +521 -390
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +168 -117
- package/sdk/platform/Content/ContentPlatformValidator.js +162 -108
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +14 -12
- package/sdk/platform/Discount/DiscountPlatformClient.js +14 -12
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +13 -13
- package/sdk/platform/Discount/DiscountPlatformModel.js +12 -12
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +2 -2
- package/sdk/platform/Discount/DiscountPlatformValidator.js +2 -2
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +94 -36
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +462 -60
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +62 -15
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +75 -13
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +19 -19
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +21 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +370 -101
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +313 -84
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -2
- package/sdk/platform/Lead/LeadPlatformClient.js +2 -2
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +5 -5
- package/sdk/platform/Lead/LeadPlatformModel.js +16 -16
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +15 -4
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +83 -5
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +25 -4
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +16 -3
- package/sdk/platform/Order/OrderPlatformClient.d.ts +178 -97
- package/sdk/platform/Order/OrderPlatformClient.js +589 -229
- package/sdk/platform/Order/OrderPlatformModel.d.ts +5447 -3071
- package/sdk/platform/Order/OrderPlatformModel.js +3496 -1653
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +241 -176
- package/sdk/platform/Order/OrderPlatformValidator.js +153 -97
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +6 -4
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +9 -7
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +93 -105
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +129 -141
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +48 -48
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +48 -48
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +327 -313
- package/sdk/platform/Payment/PaymentPlatformModel.js +283 -273
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
- package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
- package/sdk/platform/PlatformClient.d.ts +0 -2
- package/sdk/platform/PlatformClient.js +0 -4
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +2 -2
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +9 -9
- package/sdk/platform/Rewards/RewardsPlatformModel.js +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +45 -35
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +117 -38
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +22 -13
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +24 -12
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +40 -46
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +58 -64
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +602 -341
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +483 -284
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +8 -8
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +8 -8
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +36 -5
- package/sdk/platform/Share/SharePlatformModel.js +27 -4
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +8 -4
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +5 -0
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +2 -0
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +37 -11
- package/sdk/platform/Theme/ThemePlatformModel.js +33 -15
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +12 -12
- package/sdk/platform/User/UserPlatformApplicationClient.js +12 -12
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +2 -2
- package/sdk/platform/User/UserPlatformApplicationValidator.js +2 -2
- package/sdk/platform/User/UserPlatformModel.d.ts +21 -21
- package/sdk/platform/User/UserPlatformModel.js +23 -23
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +25 -78
- package/sdk/platform/Webhook/WebhookPlatformClient.js +75 -470
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +720 -427
- package/sdk/platform/Webhook/WebhookPlatformModel.js +410 -386
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
- package/sdk/platform/index.d.ts +0 -1
- package/sdk/platform/index.js +0 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +3 -2
- package/sdk/public/Configuration/ConfigurationPublicClient.js +6 -5
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +112 -2
- package/sdk/public/Content/ContentPublicClient.js +791 -5
- package/sdk/public/Content/ContentPublicModel.d.ts +549 -3
- package/sdk/public/Content/ContentPublicModel.js +649 -3
- package/sdk/public/Content/ContentPublicValidator.d.ts +69 -3
- package/sdk/public/Content/ContentPublicValidator.js +88 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +8 -8
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +21 -21
- package/sdk/public/Webhook/WebhookPublicModel.js +15 -15
- package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
- package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
- package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
- package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
- package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
|
@@ -9,15 +9,13 @@ export = OrderPlatformValidator;
|
|
|
9
9
|
*/
|
|
10
10
|
/**
|
|
11
11
|
* @typedef BulkListingParam
|
|
12
|
-
* @property {number} pageSize -
|
|
13
|
-
* @property {number} pageNo -
|
|
14
|
-
* @property {string} startDate -
|
|
15
|
-
*
|
|
16
|
-
* @property {string}
|
|
17
|
-
*
|
|
18
|
-
* @property {string} [
|
|
19
|
-
* @property {string} [bulkActionType] - Pecifies the type of job action being requested.
|
|
20
|
-
* @property {string} [searchKey] - A key or keyword used to search for specific jobs.
|
|
12
|
+
* @property {number} pageSize - Page size
|
|
13
|
+
* @property {number} pageNo - Page number
|
|
14
|
+
* @property {string} startDate - UTC start date in ISO format
|
|
15
|
+
* @property {string} endDate - UTC end date in ISO format
|
|
16
|
+
* @property {string} [status] - Status for which to fetch the jobs.
|
|
17
|
+
* @property {string} [bulkActionType] - Job type.
|
|
18
|
+
* @property {string} [searchKey] - Search_key.
|
|
21
19
|
*/
|
|
22
20
|
/**
|
|
23
21
|
* @typedef BulkStateTransistionParam
|
|
@@ -27,6 +25,10 @@ export = OrderPlatformValidator;
|
|
|
27
25
|
* @typedef CheckOrderStatusParam
|
|
28
26
|
* @property {OrderPlatformModel.OrderStatus} body
|
|
29
27
|
*/
|
|
28
|
+
/**
|
|
29
|
+
* @typedef CreateChannelConfigParam
|
|
30
|
+
* @property {OrderPlatformModel.CreateChannelConfigData} body
|
|
31
|
+
*/
|
|
30
32
|
/**
|
|
31
33
|
* @typedef CreateOrderParam
|
|
32
34
|
* @property {OrderPlatformModel.CreateOrderAPI} body
|
|
@@ -41,7 +43,7 @@ export = OrderPlatformValidator;
|
|
|
41
43
|
*/
|
|
42
44
|
/**
|
|
43
45
|
* @typedef DownloadLanesReportParam
|
|
44
|
-
* @property {OrderPlatformModel.
|
|
46
|
+
* @property {OrderPlatformModel.BulkReportsDownloadRequestSchema} body
|
|
45
47
|
*/
|
|
46
48
|
/**
|
|
47
49
|
* @typedef EInvoiceRetryParam
|
|
@@ -51,6 +53,10 @@ export = OrderPlatformValidator;
|
|
|
51
53
|
* @typedef FailedOrderLogDetailsParam
|
|
52
54
|
* @property {string} logId - Log Error ID
|
|
53
55
|
*/
|
|
56
|
+
/**
|
|
57
|
+
* @typedef FetchCreditBalanceDetailParam
|
|
58
|
+
* @property {OrderPlatformModel.FetchCreditBalanceRequestPayload} body
|
|
59
|
+
*/
|
|
54
60
|
/**
|
|
55
61
|
* @typedef FetchRefundModeConfigParam
|
|
56
62
|
* @property {OrderPlatformModel.RefundModeConfigRequestPayload} body
|
|
@@ -68,18 +74,18 @@ export = OrderPlatformValidator;
|
|
|
68
74
|
*/
|
|
69
75
|
/**
|
|
70
76
|
* @typedef GenerateProcessManifestParam
|
|
71
|
-
* @property {OrderPlatformModel.
|
|
77
|
+
* @property {OrderPlatformModel.ProcessManifestRequestSchema} body
|
|
72
78
|
*/
|
|
73
79
|
/**
|
|
74
80
|
* @typedef GetAllowedStateTransitionParam
|
|
75
|
-
* @property {string} orderingChannel -
|
|
76
|
-
* @property {string} status -
|
|
77
|
-
* which the API will provide a list of possible next state transitions.
|
|
81
|
+
* @property {string} orderingChannel - Ordering channel
|
|
82
|
+
* @property {string} status - Current status of a shipment
|
|
78
83
|
*/
|
|
79
84
|
/** @typedef GetAllowedTemplatesForBulkParam */
|
|
80
85
|
/**
|
|
81
86
|
* @typedef GetAnnouncementsParam
|
|
82
|
-
* @property {string} [date] - Date On which the announcement is Active
|
|
87
|
+
* @property {string} [date] - Date On which the announcement is Active (Date
|
|
88
|
+
* should in ISO Datetime format IST Time)
|
|
83
89
|
*/
|
|
84
90
|
/**
|
|
85
91
|
* @typedef GetBagByIdParam
|
|
@@ -104,8 +110,8 @@ export = OrderPlatformValidator;
|
|
|
104
110
|
* @typedef GetBulkShipmentExcelFileParam
|
|
105
111
|
* @property {string} [salesChannels] - Comma separated values of sales channel ids
|
|
106
112
|
* @property {string} [dpIds] - Comma separated values of delivery partner ids
|
|
107
|
-
* @property {string} [startDate] - UTC
|
|
108
|
-
* @property {string} [endDate] - UTC
|
|
113
|
+
* @property {string} [startDate] - Date time in UTC timezone as per ISO format.
|
|
114
|
+
* @property {string} [endDate] - Date time in UTC timezone as per ISO format.
|
|
109
115
|
* @property {string} [stores] - Comma separated values of store ids
|
|
110
116
|
* @property {string} [tags] - Comma separated values of tags
|
|
111
117
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
@@ -115,12 +121,13 @@ export = OrderPlatformValidator;
|
|
|
115
121
|
* @property {number} [pageNo]
|
|
116
122
|
* @property {number} [pageSize]
|
|
117
123
|
*/
|
|
124
|
+
/** @typedef GetChannelConfigParam */
|
|
118
125
|
/**
|
|
119
126
|
* @typedef GetFileByStatusParam
|
|
120
|
-
* @property {string} batchId
|
|
121
|
-
* @property {string} status
|
|
122
|
-
* @property {string} fileType -
|
|
123
|
-
* @property {string} [reportType]
|
|
127
|
+
* @property {string} batchId
|
|
128
|
+
* @property {string} status
|
|
129
|
+
* @property {string} fileType - It contains the type of file.
|
|
130
|
+
* @property {string} [reportType]
|
|
124
131
|
*/
|
|
125
132
|
/**
|
|
126
133
|
* @typedef GetLaneConfigParam
|
|
@@ -135,38 +142,44 @@ export = OrderPlatformValidator;
|
|
|
135
142
|
* @property {string} [salesChannels]
|
|
136
143
|
* @property {string} [paymentMode] - Comma separated values of payment modes
|
|
137
144
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
138
|
-
* @property {string} [searchType]
|
|
145
|
+
* @property {string} [searchType] - Search_type refers to the field that will
|
|
146
|
+
* be used as the target for the search operation
|
|
139
147
|
* @property {string} [searchValue]
|
|
140
148
|
* @property {string} [tags]
|
|
141
|
-
* @property {number} [timeToDispatch]
|
|
149
|
+
* @property {number} [timeToDispatch] - Time_to_dispatch refers to estimated SLA time.
|
|
142
150
|
* @property {string} [paymentMethods]
|
|
143
151
|
* @property {boolean} [myOrders]
|
|
144
152
|
* @property {boolean} [showCrossCompanyData] - Flag to view cross & non-cross
|
|
145
153
|
* company order
|
|
146
|
-
* @property {string} [orderType]
|
|
154
|
+
* @property {string} [orderType] - Defines the specific journey a shipment will
|
|
155
|
+
* follow based on the application's operational needs and customer
|
|
156
|
+
* preferences. This field categorizes orders into distinct types, each
|
|
157
|
+
* associated with a unique processing flow. For example:
|
|
158
|
+
*
|
|
159
|
+
* - "HomeDelivery": The order undergoes all state transitions typical for a
|
|
160
|
+
* delivery, from processing the shipment to final delivery at the
|
|
161
|
+
* customer's address.
|
|
162
|
+
* - "PickAtStore": The order is prepared for pickup and moved to a state where it
|
|
163
|
+
* is ready to be handed over directly to the customer at the store. This
|
|
164
|
+
* type streamlines the process by bypassing traditional shipping stages
|
|
165
|
+
* and facilitating a quicker transition to the final handover stage.
|
|
147
166
|
*/
|
|
148
167
|
/**
|
|
149
168
|
* @typedef GetManifestDetailsParam
|
|
150
|
-
* @property {string} manifestId
|
|
151
|
-
* @property {string} [dpIds] - Filter shipments with the specific Courier
|
|
152
|
-
* partner Ids which is a combination of courier partner extension and scheme Ids.
|
|
153
|
-
* @property {string} [endDate] - End date for the shipment search range in manifest.
|
|
154
|
-
* @property {string} [startDate] - Start date for the shipment search range in manifest.
|
|
155
|
-
* @property {number} [pageNo] - Page number for pagination.
|
|
156
|
-
* @property {number} [pageSize] - Number of records per page for pagination.
|
|
169
|
+
* @property {string} manifestId
|
|
157
170
|
*/
|
|
158
171
|
/**
|
|
159
172
|
* @typedef GetManifestShipmentsParam
|
|
160
173
|
* @property {string} dpIds - Filter shipments with the specific Courier partner
|
|
161
174
|
* Ids which is a combination of courier partner extension and scheme Ids.
|
|
162
|
-
* @property {number} stores - Filter
|
|
175
|
+
* @property {number} stores - Filter with the specific store.
|
|
163
176
|
* @property {string} toDate - End date for the shipment search range.
|
|
164
177
|
* @property {string} fromDate - Start date for the shipment search range.
|
|
165
|
-
* @property {string} [dpName] - Filter
|
|
166
|
-
* @property {string} [salesChannels] -
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
* @property {string} [searchValue] -
|
|
178
|
+
* @property {string} [dpName] - Filter with the specific courier partner name.
|
|
179
|
+
* @property {string} [salesChannels] - Comma-separated list of sales channels.
|
|
180
|
+
* @property {string} [searchType] - Type of search (e.g., by shipment ID, order
|
|
181
|
+
* ID, AWB number).
|
|
182
|
+
* @property {string} [searchValue] - Value to search for based on the search type.
|
|
170
183
|
* @property {number} [pageNo] - Page number for pagination.
|
|
171
184
|
* @property {number} [pageSize] - Number of records per page for pagination.
|
|
172
185
|
*/
|
|
@@ -176,20 +189,16 @@ export = OrderPlatformValidator;
|
|
|
176
189
|
*/
|
|
177
190
|
/**
|
|
178
191
|
* @typedef GetManifestsParam
|
|
179
|
-
* @property {string} [status] -
|
|
180
|
-
* @property {string} [startDate] -
|
|
181
|
-
*
|
|
182
|
-
* @property {string} [
|
|
183
|
-
*
|
|
184
|
-
* @property {number} [storeId] -
|
|
185
|
-
*
|
|
186
|
-
* @property {string} [
|
|
187
|
-
*
|
|
188
|
-
* @property {
|
|
189
|
-
* (DP IDs) to filter the manifests.
|
|
190
|
-
* @property {number} [pageNo] - The number of the page to fetch data.
|
|
191
|
-
* @property {number} [pageSize] - The number of records to return per page for
|
|
192
|
-
* pagination.
|
|
192
|
+
* @property {string} [status] - Possible Status [ active, closed ]
|
|
193
|
+
* @property {string} [startDate] - UTC Start Date in ISO format
|
|
194
|
+
* @property {string} [endDate] - UTC End Date in ISO format
|
|
195
|
+
* @property {string} [searchType] - Search type options [ fynd_order_id,
|
|
196
|
+
* shipment_id, manifest_id, dp_name, awb_no ]
|
|
197
|
+
* @property {number} [storeId] - Fetch manifests for a Store.
|
|
198
|
+
* @property {string} [searchValue] - Search value for selected search type
|
|
199
|
+
* @property {string} [dpIds] - DP Ids separated by ',' (comma)
|
|
200
|
+
* @property {number} [pageNo]
|
|
201
|
+
* @property {number} [pageSize]
|
|
193
202
|
*/
|
|
194
203
|
/**
|
|
195
204
|
* @typedef GetOrderByIdParam
|
|
@@ -211,10 +220,10 @@ export = OrderPlatformValidator;
|
|
|
211
220
|
* associated with the order
|
|
212
221
|
* @property {string} [searchValue] - Search_value is matched against the field
|
|
213
222
|
* specified by the search_type
|
|
214
|
-
* @property {string} [fromDate]
|
|
215
|
-
* @property {string} [toDate]
|
|
216
|
-
* @property {string} [startDate]
|
|
217
|
-
* @property {string} [endDate]
|
|
223
|
+
* @property {string} [fromDate] - Date time in UTC timezone as per ISO format.
|
|
224
|
+
* @property {string} [toDate] - Date time in UTC timezone as per ISO format.
|
|
225
|
+
* @property {string} [startDate] - Date time in UTC timezone as per ISO format.
|
|
226
|
+
* @property {string} [endDate] - Date time in UTC timezone as per ISO format.
|
|
218
227
|
* @property {string} [dpIds] - Delivery Partner IDs to which shipments are assigned.
|
|
219
228
|
* @property {string} [stores]
|
|
220
229
|
* @property {string} [salesChannels]
|
|
@@ -229,6 +238,11 @@ export = OrderPlatformValidator;
|
|
|
229
238
|
* @property {string} [orderType]
|
|
230
239
|
* @property {boolean} [allowInactive] - Flag indicating whether inactive
|
|
231
240
|
* shipments are allowed
|
|
241
|
+
* @property {string} [groupEntity] - Defines the grouping criterion for
|
|
242
|
+
* retrieving shipments or orders. It specifies whether the results should be
|
|
243
|
+
* organized based on shipment groups or order groups. For example, using
|
|
244
|
+
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
245
|
+
* may not be recognized, leading to errors or default behavior.
|
|
232
246
|
*/
|
|
233
247
|
/** @typedef GetRoleBasedActionsParam */
|
|
234
248
|
/**
|
|
@@ -242,8 +256,8 @@ export = OrderPlatformValidator;
|
|
|
242
256
|
*/
|
|
243
257
|
/**
|
|
244
258
|
* @typedef GetShipmentHistoryParam
|
|
245
|
-
* @property {string} [shipmentId] -
|
|
246
|
-
* @property {number} [bagId] -
|
|
259
|
+
* @property {string} [shipmentId] - Shipment Id
|
|
260
|
+
* @property {number} [bagId] - Bag/Product Id
|
|
247
261
|
*/
|
|
248
262
|
/**
|
|
249
263
|
* @typedef GetShipmentReasonsParam
|
|
@@ -260,8 +274,9 @@ export = OrderPlatformValidator;
|
|
|
260
274
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
261
275
|
* @property {boolean} [statusOverrideLane] - Use this flag to fetch by
|
|
262
276
|
* bag_status and override lane
|
|
263
|
-
* @property {number} [timeToDispatch]
|
|
264
|
-
* @property {string} [searchType] -
|
|
277
|
+
* @property {number} [timeToDispatch] - Time_to_dispatch refers to estimated SLA time.
|
|
278
|
+
* @property {string} [searchType] - Search_type refers to the field that will
|
|
279
|
+
* be used as the target for the search operation
|
|
265
280
|
* @property {string} [searchValue] - Search type value
|
|
266
281
|
* @property {string} [fromDate] - Start Date in DD-MM-YYYY format
|
|
267
282
|
* @property {string} [toDate] - End Date in DD-MM-YYYY format
|
|
@@ -288,7 +303,24 @@ export = OrderPlatformValidator;
|
|
|
288
303
|
* company order
|
|
289
304
|
* @property {string} [tags] - Comma separated values of tags
|
|
290
305
|
* @property {string} [customerId]
|
|
291
|
-
* @property {string} [orderType]
|
|
306
|
+
* @property {string} [orderType] - Defines the specific journey a shipment will
|
|
307
|
+
* follow based on the application's operational needs and customer
|
|
308
|
+
* preferences. This field categorizes orders into distinct types, each
|
|
309
|
+
* associated with a unique processing flow. For example:
|
|
310
|
+
*
|
|
311
|
+
* - "HomeDelivery": The order undergoes all state transitions typical for a
|
|
312
|
+
* delivery, from processing the shipment to final delivery at the
|
|
313
|
+
* customer's address.
|
|
314
|
+
* - "PickAtStore": The order is prepared for pickup and moved to a state where it
|
|
315
|
+
* is ready to be handed over directly to the customer at the store. This
|
|
316
|
+
* type streamlines the process by bypassing traditional shipping stages
|
|
317
|
+
* and facilitating a quicker transition to the final handover stage.
|
|
318
|
+
*
|
|
319
|
+
* @property {string} [groupEntity] - Defines the grouping criterion for
|
|
320
|
+
* retrieving shipments or orders. It specifies whether the results should be
|
|
321
|
+
* organized based on shipment groups or order groups. For example, using
|
|
322
|
+
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
323
|
+
* may not be recognized, leading to errors or default behavior.
|
|
292
324
|
*/
|
|
293
325
|
/**
|
|
294
326
|
* @typedef GetStateManagerConfigParam
|
|
@@ -312,8 +344,7 @@ export = OrderPlatformValidator;
|
|
|
312
344
|
*/
|
|
313
345
|
/**
|
|
314
346
|
* @typedef JobDetailsParam
|
|
315
|
-
* @property {string} batchId
|
|
316
|
-
* with this bulk action.
|
|
347
|
+
* @property {string} batchId
|
|
317
348
|
*/
|
|
318
349
|
/**
|
|
319
350
|
* @typedef OrderUpdateParam
|
|
@@ -323,6 +354,10 @@ export = OrderPlatformValidator;
|
|
|
323
354
|
* @typedef PostShipmentHistoryParam
|
|
324
355
|
* @property {OrderPlatformModel.PostShipmentHistory} body
|
|
325
356
|
*/
|
|
357
|
+
/**
|
|
358
|
+
* @typedef ProcessManifestsParam
|
|
359
|
+
* @property {OrderPlatformModel.ProcessManifest} body
|
|
360
|
+
*/
|
|
326
361
|
/**
|
|
327
362
|
* @typedef ReassignLocationParam
|
|
328
363
|
* @property {OrderPlatformModel.StoreReassign} body
|
|
@@ -337,30 +372,24 @@ export = OrderPlatformValidator;
|
|
|
337
372
|
*/
|
|
338
373
|
/**
|
|
339
374
|
* @typedef TrackShipmentParam
|
|
340
|
-
* @property {string} [shipmentId] -
|
|
375
|
+
* @property {string} [shipmentId] - Shipment ID
|
|
341
376
|
* @property {string} [awb] - AWB number
|
|
342
|
-
* @property {number} [pageNo] - Page number
|
|
343
|
-
* @property {number} [pageSize] -
|
|
377
|
+
* @property {number} [pageNo] - Page number
|
|
378
|
+
* @property {number} [pageSize] - Page size
|
|
344
379
|
*/
|
|
345
380
|
/**
|
|
346
381
|
* @typedef UpdateAddressParam
|
|
347
|
-
* @property {string} shipmentId
|
|
348
|
-
* @property {
|
|
349
|
-
* @property {string} [address]
|
|
350
|
-
* @property {string} [addressType]
|
|
351
|
-
* @property {string} [pincode]
|
|
352
|
-
* @property {string} [phone]
|
|
353
|
-
* @property {string} [email]
|
|
354
|
-
* @property {string} [landmark]
|
|
355
|
-
* @property {string} addressCategory
|
|
356
|
-
* @property {string} [city]
|
|
357
|
-
* @property {string} [state]
|
|
358
|
-
* @property {string} [country]
|
|
382
|
+
* @property {string} shipmentId - Unique shipment no. that is auto-generated
|
|
383
|
+
* @property {OrderPlatformModel.UpdateAddressRequestBody} body
|
|
359
384
|
*/
|
|
360
385
|
/**
|
|
361
386
|
* @typedef UpdatePackagingDimensionsParam
|
|
362
387
|
* @property {OrderPlatformModel.UpdatePackagingDimensionsPayload} body
|
|
363
388
|
*/
|
|
389
|
+
/**
|
|
390
|
+
* @typedef UpdatePaymentInfoParam
|
|
391
|
+
* @property {OrderPlatformModel.UpdateShipmentPaymentMode} body
|
|
392
|
+
*/
|
|
364
393
|
/**
|
|
365
394
|
* @typedef UpdateShipmentLockParam
|
|
366
395
|
* @property {OrderPlatformModel.UpdateShipmentLockPayload} body
|
|
@@ -375,7 +404,8 @@ export = OrderPlatformValidator;
|
|
|
375
404
|
*/
|
|
376
405
|
/**
|
|
377
406
|
* @typedef UploadConsentsParam
|
|
378
|
-
* @property {
|
|
407
|
+
* @property {string} manifestId
|
|
408
|
+
* @property {OrderPlatformModel.UploadConsent} body
|
|
379
409
|
*/
|
|
380
410
|
/**
|
|
381
411
|
* @typedef VerifyMobileOTPParam
|
|
@@ -392,6 +422,8 @@ declare class OrderPlatformValidator {
|
|
|
392
422
|
static bulkStateTransistion(): BulkStateTransistionParam;
|
|
393
423
|
/** @returns {CheckOrderStatusParam} */
|
|
394
424
|
static checkOrderStatus(): CheckOrderStatusParam;
|
|
425
|
+
/** @returns {CreateChannelConfigParam} */
|
|
426
|
+
static createChannelConfig(): CreateChannelConfigParam;
|
|
395
427
|
/** @returns {CreateOrderParam} */
|
|
396
428
|
static createOrder(): CreateOrderParam;
|
|
397
429
|
/** @returns {DispatchManifestsParam} */
|
|
@@ -404,6 +436,8 @@ declare class OrderPlatformValidator {
|
|
|
404
436
|
static eInvoiceRetry(): EInvoiceRetryParam;
|
|
405
437
|
/** @returns {FailedOrderLogDetailsParam} */
|
|
406
438
|
static failedOrderLogDetails(): FailedOrderLogDetailsParam;
|
|
439
|
+
/** @returns {FetchCreditBalanceDetailParam} */
|
|
440
|
+
static fetchCreditBalanceDetail(): FetchCreditBalanceDetailParam;
|
|
407
441
|
/** @returns {FetchRefundModeConfigParam} */
|
|
408
442
|
static fetchRefundModeConfig(): FetchRefundModeConfigParam;
|
|
409
443
|
/** @returns {GenerateInvoiceIDParam} */
|
|
@@ -426,6 +460,8 @@ declare class OrderPlatformValidator {
|
|
|
426
460
|
static getBulkActionTemplate(): any;
|
|
427
461
|
/** @returns {GetBulkShipmentExcelFileParam} */
|
|
428
462
|
static getBulkShipmentExcelFile(): GetBulkShipmentExcelFileParam;
|
|
463
|
+
/** @returns {GetChannelConfigParam} */
|
|
464
|
+
static getChannelConfig(): any;
|
|
429
465
|
/** @returns {GetFileByStatusParam} */
|
|
430
466
|
static getFileByStatus(): GetFileByStatusParam;
|
|
431
467
|
/** @returns {GetLaneConfigParam} */
|
|
@@ -468,6 +504,8 @@ declare class OrderPlatformValidator {
|
|
|
468
504
|
static orderUpdate(): OrderUpdateParam;
|
|
469
505
|
/** @returns {PostShipmentHistoryParam} */
|
|
470
506
|
static postShipmentHistory(): PostShipmentHistoryParam;
|
|
507
|
+
/** @returns {ProcessManifestsParam} */
|
|
508
|
+
static processManifests(): ProcessManifestsParam;
|
|
471
509
|
/** @returns {ReassignLocationParam} */
|
|
472
510
|
static reassignLocation(): ReassignLocationParam;
|
|
473
511
|
/** @returns {SendSmsNinjaParam} */
|
|
@@ -480,6 +518,8 @@ declare class OrderPlatformValidator {
|
|
|
480
518
|
static updateAddress(): UpdateAddressParam;
|
|
481
519
|
/** @returns {UpdatePackagingDimensionsParam} */
|
|
482
520
|
static updatePackagingDimensions(): UpdatePackagingDimensionsParam;
|
|
521
|
+
/** @returns {UpdatePaymentInfoParam} */
|
|
522
|
+
static updatePaymentInfo(): UpdatePaymentInfoParam;
|
|
483
523
|
/** @returns {UpdateShipmentLockParam} */
|
|
484
524
|
static updateShipmentLock(): UpdateShipmentLockParam;
|
|
485
525
|
/** @returns {UpdateShipmentStatusParam} */
|
|
@@ -492,7 +532,7 @@ declare class OrderPlatformValidator {
|
|
|
492
532
|
static verifyMobileOTP(): VerifyMobileOTPParam;
|
|
493
533
|
}
|
|
494
534
|
declare namespace OrderPlatformValidator {
|
|
495
|
-
export { AddStateManagerConfigParam, AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam, CreateOrderParam, DispatchManifestsParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FailedOrderLogDetailsParam, FetchRefundModeConfigParam, GenerateInvoiceIDParam, GeneratePOSReceiptByOrderIdParam, GenerateProcessManifestParam, GetAllowedStateTransitionParam, GetAllowedTemplatesForBulkParam, GetAnnouncementsParam, GetBagByIdParam, GetBagsParam, GetBulkActionTemplateParam, GetBulkShipmentExcelFileParam, GetFileByStatusParam, GetLaneConfigParam, GetManifestDetailsParam, GetManifestShipmentsParam, GetManifestfiltersParam, GetManifestsParam, GetOrderByIdParam, GetOrdersParam, GetRoleBasedActionsParam, GetShipmentByIdParam, GetShipmentHistoryParam, GetShipmentReasonsParam, GetShipmentsParam, GetStateManagerConfigParam, GetStateTransitionMapParam, GetTemplateParam, GetfiltersParam, InvalidateShipmentCacheParam, JobDetailsParam, OrderUpdateParam, PostShipmentHistoryParam, ReassignLocationParam, SendSmsNinjaParam, SendUserMobileOTPParam, TrackShipmentParam, UpdateAddressParam, UpdatePackagingDimensionsParam, UpdateShipmentLockParam, UpdateShipmentStatusParam, UpdateShipmentTrackingParam, UploadConsentsParam, VerifyMobileOTPParam };
|
|
535
|
+
export { AddStateManagerConfigParam, AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam, CreateChannelConfigParam, CreateOrderParam, DispatchManifestsParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FailedOrderLogDetailsParam, FetchCreditBalanceDetailParam, FetchRefundModeConfigParam, GenerateInvoiceIDParam, GeneratePOSReceiptByOrderIdParam, GenerateProcessManifestParam, GetAllowedStateTransitionParam, GetAllowedTemplatesForBulkParam, GetAnnouncementsParam, GetBagByIdParam, GetBagsParam, GetBulkActionTemplateParam, GetBulkShipmentExcelFileParam, GetChannelConfigParam, GetFileByStatusParam, GetLaneConfigParam, GetManifestDetailsParam, GetManifestShipmentsParam, GetManifestfiltersParam, GetManifestsParam, GetOrderByIdParam, GetOrdersParam, GetRoleBasedActionsParam, GetShipmentByIdParam, GetShipmentHistoryParam, GetShipmentReasonsParam, GetShipmentsParam, GetStateManagerConfigParam, GetStateTransitionMapParam, GetTemplateParam, GetfiltersParam, InvalidateShipmentCacheParam, JobDetailsParam, OrderUpdateParam, PostShipmentHistoryParam, ProcessManifestsParam, ReassignLocationParam, SendSmsNinjaParam, SendUserMobileOTPParam, TrackShipmentParam, UpdateAddressParam, UpdatePackagingDimensionsParam, UpdatePaymentInfoParam, UpdateShipmentLockParam, UpdateShipmentStatusParam, UpdateShipmentTrackingParam, UploadConsentsParam, VerifyMobileOTPParam };
|
|
496
536
|
}
|
|
497
537
|
type AddStateManagerConfigParam = {
|
|
498
538
|
body: OrderPlatformModel.TransitionConfigPayload;
|
|
@@ -502,33 +542,31 @@ type AttachOrderUserParam = {
|
|
|
502
542
|
};
|
|
503
543
|
type BulkListingParam = {
|
|
504
544
|
/**
|
|
505
|
-
* -
|
|
545
|
+
* - Page size
|
|
506
546
|
*/
|
|
507
547
|
pageSize: number;
|
|
508
548
|
/**
|
|
509
|
-
* -
|
|
549
|
+
* - Page number
|
|
510
550
|
*/
|
|
511
551
|
pageNo: number;
|
|
512
552
|
/**
|
|
513
|
-
* -
|
|
514
|
-
* expressed in UTC format
|
|
553
|
+
* - UTC start date in ISO format
|
|
515
554
|
*/
|
|
516
555
|
startDate: string;
|
|
517
556
|
/**
|
|
518
|
-
* -
|
|
519
|
-
* in UTC format
|
|
557
|
+
* - UTC end date in ISO format
|
|
520
558
|
*/
|
|
521
559
|
endDate: string;
|
|
522
560
|
/**
|
|
523
|
-
* -
|
|
561
|
+
* - Status for which to fetch the jobs.
|
|
524
562
|
*/
|
|
525
563
|
status?: string;
|
|
526
564
|
/**
|
|
527
|
-
* -
|
|
565
|
+
* - Job type.
|
|
528
566
|
*/
|
|
529
567
|
bulkActionType?: string;
|
|
530
568
|
/**
|
|
531
|
-
* -
|
|
569
|
+
* - Search_key.
|
|
532
570
|
*/
|
|
533
571
|
searchKey?: string;
|
|
534
572
|
};
|
|
@@ -538,6 +576,9 @@ type BulkStateTransistionParam = {
|
|
|
538
576
|
type CheckOrderStatusParam = {
|
|
539
577
|
body: OrderPlatformModel.OrderStatus;
|
|
540
578
|
};
|
|
579
|
+
type CreateChannelConfigParam = {
|
|
580
|
+
body: OrderPlatformModel.CreateChannelConfigData;
|
|
581
|
+
};
|
|
541
582
|
type CreateOrderParam = {
|
|
542
583
|
body: OrderPlatformModel.CreateOrderAPI;
|
|
543
584
|
};
|
|
@@ -551,7 +592,7 @@ type DownloadBulkActionTemplateParam = {
|
|
|
551
592
|
templateSlug?: string;
|
|
552
593
|
};
|
|
553
594
|
type DownloadLanesReportParam = {
|
|
554
|
-
body: OrderPlatformModel.
|
|
595
|
+
body: OrderPlatformModel.BulkReportsDownloadRequestSchema;
|
|
555
596
|
};
|
|
556
597
|
type EInvoiceRetryParam = {
|
|
557
598
|
body: OrderPlatformModel.EInvoiceRetry;
|
|
@@ -562,6 +603,9 @@ type FailedOrderLogDetailsParam = {
|
|
|
562
603
|
*/
|
|
563
604
|
logId: string;
|
|
564
605
|
};
|
|
606
|
+
type FetchCreditBalanceDetailParam = {
|
|
607
|
+
body: OrderPlatformModel.FetchCreditBalanceRequestPayload;
|
|
608
|
+
};
|
|
565
609
|
type FetchRefundModeConfigParam = {
|
|
566
610
|
body: OrderPlatformModel.RefundModeConfigRequestPayload;
|
|
567
611
|
};
|
|
@@ -578,22 +622,22 @@ type GeneratePOSReceiptByOrderIdParam = {
|
|
|
578
622
|
documentType?: string;
|
|
579
623
|
};
|
|
580
624
|
type GenerateProcessManifestParam = {
|
|
581
|
-
body: OrderPlatformModel.
|
|
625
|
+
body: OrderPlatformModel.ProcessManifestRequestSchema;
|
|
582
626
|
};
|
|
583
627
|
type GetAllowedStateTransitionParam = {
|
|
584
628
|
/**
|
|
585
|
-
* -
|
|
629
|
+
* - Ordering channel
|
|
586
630
|
*/
|
|
587
631
|
orderingChannel: string;
|
|
588
632
|
/**
|
|
589
|
-
* -
|
|
590
|
-
* which the API will provide a list of possible next state transitions.
|
|
633
|
+
* - Current status of a shipment
|
|
591
634
|
*/
|
|
592
635
|
status: string;
|
|
593
636
|
};
|
|
594
637
|
type GetAnnouncementsParam = {
|
|
595
638
|
/**
|
|
596
|
-
* - Date On which the announcement is Active
|
|
639
|
+
* - Date On which the announcement is Active (Date
|
|
640
|
+
* should in ISO Datetime format IST Time)
|
|
597
641
|
*/
|
|
598
642
|
date?: string;
|
|
599
643
|
};
|
|
@@ -659,11 +703,11 @@ type GetBulkShipmentExcelFileParam = {
|
|
|
659
703
|
*/
|
|
660
704
|
dpIds?: string;
|
|
661
705
|
/**
|
|
662
|
-
* - UTC
|
|
706
|
+
* - Date time in UTC timezone as per ISO format.
|
|
663
707
|
*/
|
|
664
708
|
startDate?: string;
|
|
665
709
|
/**
|
|
666
|
-
* - UTC
|
|
710
|
+
* - Date time in UTC timezone as per ISO format.
|
|
667
711
|
*/
|
|
668
712
|
endDate?: string;
|
|
669
713
|
/**
|
|
@@ -694,21 +738,12 @@ type GetBulkShipmentExcelFileParam = {
|
|
|
694
738
|
pageSize?: number;
|
|
695
739
|
};
|
|
696
740
|
type GetFileByStatusParam = {
|
|
697
|
-
/**
|
|
698
|
-
* - Batch Id to identify the bulk operation request.
|
|
699
|
-
*/
|
|
700
741
|
batchId: string;
|
|
701
|
-
/**
|
|
702
|
-
* - The status of the jobs to filter the results.
|
|
703
|
-
*/
|
|
704
742
|
status: string;
|
|
705
743
|
/**
|
|
706
|
-
* -
|
|
744
|
+
* - It contains the type of file.
|
|
707
745
|
*/
|
|
708
746
|
fileType: string;
|
|
709
|
-
/**
|
|
710
|
-
* - The type of report to be downloaded.
|
|
711
|
-
*/
|
|
712
747
|
reportType?: string;
|
|
713
748
|
};
|
|
714
749
|
type GetLaneConfigParam = {
|
|
@@ -753,9 +788,16 @@ type GetLaneConfigParam = {
|
|
|
753
788
|
* - Comma separated values of bag statuses
|
|
754
789
|
*/
|
|
755
790
|
bagStatus?: string;
|
|
791
|
+
/**
|
|
792
|
+
* - Search_type refers to the field that will
|
|
793
|
+
* be used as the target for the search operation
|
|
794
|
+
*/
|
|
756
795
|
searchType?: string;
|
|
757
796
|
searchValue?: string;
|
|
758
797
|
tags?: string;
|
|
798
|
+
/**
|
|
799
|
+
* - Time_to_dispatch refers to estimated SLA time.
|
|
800
|
+
*/
|
|
759
801
|
timeToDispatch?: number;
|
|
760
802
|
paymentMethods?: string;
|
|
761
803
|
myOrders?: boolean;
|
|
@@ -764,34 +806,24 @@ type GetLaneConfigParam = {
|
|
|
764
806
|
* company order
|
|
765
807
|
*/
|
|
766
808
|
showCrossCompanyData?: boolean;
|
|
809
|
+
/**
|
|
810
|
+
* - Defines the specific journey a shipment will
|
|
811
|
+
* follow based on the application's operational needs and customer
|
|
812
|
+
* preferences. This field categorizes orders into distinct types, each
|
|
813
|
+
* associated with a unique processing flow. For example:
|
|
814
|
+
*
|
|
815
|
+
* - "HomeDelivery": The order undergoes all state transitions typical for a
|
|
816
|
+
* delivery, from processing the shipment to final delivery at the
|
|
817
|
+
* customer's address.
|
|
818
|
+
* - "PickAtStore": The order is prepared for pickup and moved to a state where it
|
|
819
|
+
* is ready to be handed over directly to the customer at the store. This
|
|
820
|
+
* type streamlines the process by bypassing traditional shipping stages
|
|
821
|
+
* and facilitating a quicker transition to the final handover stage.
|
|
822
|
+
*/
|
|
767
823
|
orderType?: string;
|
|
768
824
|
};
|
|
769
825
|
type GetManifestDetailsParam = {
|
|
770
|
-
/**
|
|
771
|
-
* - The unique identifier assigned to the manifest.
|
|
772
|
-
*/
|
|
773
826
|
manifestId: string;
|
|
774
|
-
/**
|
|
775
|
-
* - Filter shipments with the specific Courier
|
|
776
|
-
* partner Ids which is a combination of courier partner extension and scheme Ids.
|
|
777
|
-
*/
|
|
778
|
-
dpIds?: string;
|
|
779
|
-
/**
|
|
780
|
-
* - End date for the shipment search range in manifest.
|
|
781
|
-
*/
|
|
782
|
-
endDate?: string;
|
|
783
|
-
/**
|
|
784
|
-
* - Start date for the shipment search range in manifest.
|
|
785
|
-
*/
|
|
786
|
-
startDate?: string;
|
|
787
|
-
/**
|
|
788
|
-
* - Page number for pagination.
|
|
789
|
-
*/
|
|
790
|
-
pageNo?: number;
|
|
791
|
-
/**
|
|
792
|
-
* - Number of records per page for pagination.
|
|
793
|
-
*/
|
|
794
|
-
pageSize?: number;
|
|
795
827
|
};
|
|
796
828
|
type GetManifestShipmentsParam = {
|
|
797
829
|
/**
|
|
@@ -800,7 +832,7 @@ type GetManifestShipmentsParam = {
|
|
|
800
832
|
*/
|
|
801
833
|
dpIds: string;
|
|
802
834
|
/**
|
|
803
|
-
* - Filter
|
|
835
|
+
* - Filter with the specific store.
|
|
804
836
|
*/
|
|
805
837
|
stores: number;
|
|
806
838
|
/**
|
|
@@ -812,20 +844,20 @@ type GetManifestShipmentsParam = {
|
|
|
812
844
|
*/
|
|
813
845
|
fromDate: string;
|
|
814
846
|
/**
|
|
815
|
-
* - Filter
|
|
847
|
+
* - Filter with the specific courier partner name.
|
|
816
848
|
*/
|
|
817
849
|
dpName?: string;
|
|
818
850
|
/**
|
|
819
|
-
* -
|
|
820
|
-
* list of sales channels.
|
|
851
|
+
* - Comma-separated list of sales channels.
|
|
821
852
|
*/
|
|
822
853
|
salesChannels?: string;
|
|
823
854
|
/**
|
|
824
|
-
* -
|
|
855
|
+
* - Type of search (e.g., by shipment ID, order
|
|
856
|
+
* ID, AWB number).
|
|
825
857
|
*/
|
|
826
858
|
searchType?: string;
|
|
827
859
|
/**
|
|
828
|
-
* -
|
|
860
|
+
* - Value to search for based on the search type.
|
|
829
861
|
*/
|
|
830
862
|
searchValue?: string;
|
|
831
863
|
/**
|
|
@@ -845,45 +877,35 @@ type GetManifestfiltersParam = {
|
|
|
845
877
|
};
|
|
846
878
|
type GetManifestsParam = {
|
|
847
879
|
/**
|
|
848
|
-
* -
|
|
880
|
+
* - Possible Status [ active, closed ]
|
|
849
881
|
*/
|
|
850
882
|
status?: string;
|
|
851
883
|
/**
|
|
852
|
-
* -
|
|
853
|
-
* ISO format
|
|
884
|
+
* - UTC Start Date in ISO format
|
|
854
885
|
*/
|
|
855
886
|
startDate?: string;
|
|
856
887
|
/**
|
|
857
|
-
* -
|
|
888
|
+
* - UTC End Date in ISO format
|
|
858
889
|
*/
|
|
859
890
|
endDate?: string;
|
|
860
891
|
/**
|
|
861
|
-
* -
|
|
892
|
+
* - Search type options [ fynd_order_id,
|
|
893
|
+
* shipment_id, manifest_id, dp_name, awb_no ]
|
|
862
894
|
*/
|
|
863
895
|
searchType?: string;
|
|
864
896
|
/**
|
|
865
|
-
* -
|
|
866
|
-
* by its ID.
|
|
897
|
+
* - Fetch manifests for a Store.
|
|
867
898
|
*/
|
|
868
899
|
storeId?: number;
|
|
869
900
|
/**
|
|
870
|
-
* -
|
|
871
|
-
* selected search type.
|
|
901
|
+
* - Search value for selected search type
|
|
872
902
|
*/
|
|
873
903
|
searchValue?: string;
|
|
874
904
|
/**
|
|
875
|
-
* -
|
|
876
|
-
* (DP IDs) to filter the manifests.
|
|
905
|
+
* - DP Ids separated by ',' (comma)
|
|
877
906
|
*/
|
|
878
907
|
dpIds?: string;
|
|
879
|
-
/**
|
|
880
|
-
* - The number of the page to fetch data.
|
|
881
|
-
*/
|
|
882
908
|
pageNo?: number;
|
|
883
|
-
/**
|
|
884
|
-
* - The number of records to return per page for
|
|
885
|
-
* pagination.
|
|
886
|
-
*/
|
|
887
909
|
pageSize?: number;
|
|
888
910
|
};
|
|
889
911
|
type GetOrderByIdParam = {
|
|
@@ -925,9 +947,21 @@ type GetOrdersParam = {
|
|
|
925
947
|
* specified by the search_type
|
|
926
948
|
*/
|
|
927
949
|
searchValue?: string;
|
|
950
|
+
/**
|
|
951
|
+
* - Date time in UTC timezone as per ISO format.
|
|
952
|
+
*/
|
|
928
953
|
fromDate?: string;
|
|
954
|
+
/**
|
|
955
|
+
* - Date time in UTC timezone as per ISO format.
|
|
956
|
+
*/
|
|
929
957
|
toDate?: string;
|
|
958
|
+
/**
|
|
959
|
+
* - Date time in UTC timezone as per ISO format.
|
|
960
|
+
*/
|
|
930
961
|
startDate?: string;
|
|
962
|
+
/**
|
|
963
|
+
* - Date time in UTC timezone as per ISO format.
|
|
964
|
+
*/
|
|
931
965
|
endDate?: string;
|
|
932
966
|
/**
|
|
933
967
|
* - Delivery Partner IDs to which shipments are assigned.
|
|
@@ -952,6 +986,14 @@ type GetOrdersParam = {
|
|
|
952
986
|
* shipments are allowed
|
|
953
987
|
*/
|
|
954
988
|
allowInactive?: boolean;
|
|
989
|
+
/**
|
|
990
|
+
* - Defines the grouping criterion for
|
|
991
|
+
* retrieving shipments or orders. It specifies whether the results should be
|
|
992
|
+
* organized based on shipment groups or order groups. For example, using
|
|
993
|
+
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
994
|
+
* may not be recognized, leading to errors or default behavior.
|
|
995
|
+
*/
|
|
996
|
+
groupEntity?: string;
|
|
955
997
|
};
|
|
956
998
|
type GetShipmentByIdParam = {
|
|
957
999
|
/**
|
|
@@ -975,11 +1017,11 @@ type GetShipmentByIdParam = {
|
|
|
975
1017
|
};
|
|
976
1018
|
type GetShipmentHistoryParam = {
|
|
977
1019
|
/**
|
|
978
|
-
* -
|
|
1020
|
+
* - Shipment Id
|
|
979
1021
|
*/
|
|
980
1022
|
shipmentId?: string;
|
|
981
1023
|
/**
|
|
982
|
-
* -
|
|
1024
|
+
* - Bag/Product Id
|
|
983
1025
|
*/
|
|
984
1026
|
bagId?: number;
|
|
985
1027
|
};
|
|
@@ -1014,9 +1056,13 @@ type GetShipmentsParam = {
|
|
|
1014
1056
|
* bag_status and override lane
|
|
1015
1057
|
*/
|
|
1016
1058
|
statusOverrideLane?: boolean;
|
|
1059
|
+
/**
|
|
1060
|
+
* - Time_to_dispatch refers to estimated SLA time.
|
|
1061
|
+
*/
|
|
1017
1062
|
timeToDispatch?: number;
|
|
1018
1063
|
/**
|
|
1019
|
-
* -
|
|
1064
|
+
* - Search_type refers to the field that will
|
|
1065
|
+
* be used as the target for the search operation
|
|
1020
1066
|
*/
|
|
1021
1067
|
searchType?: string;
|
|
1022
1068
|
/**
|
|
@@ -1102,7 +1148,29 @@ type GetShipmentsParam = {
|
|
|
1102
1148
|
*/
|
|
1103
1149
|
tags?: string;
|
|
1104
1150
|
customerId?: string;
|
|
1151
|
+
/**
|
|
1152
|
+
* - Defines the specific journey a shipment will
|
|
1153
|
+
* follow based on the application's operational needs and customer
|
|
1154
|
+
* preferences. This field categorizes orders into distinct types, each
|
|
1155
|
+
* associated with a unique processing flow. For example:
|
|
1156
|
+
*
|
|
1157
|
+
* - "HomeDelivery": The order undergoes all state transitions typical for a
|
|
1158
|
+
* delivery, from processing the shipment to final delivery at the
|
|
1159
|
+
* customer's address.
|
|
1160
|
+
* - "PickAtStore": The order is prepared for pickup and moved to a state where it
|
|
1161
|
+
* is ready to be handed over directly to the customer at the store. This
|
|
1162
|
+
* type streamlines the process by bypassing traditional shipping stages
|
|
1163
|
+
* and facilitating a quicker transition to the final handover stage.
|
|
1164
|
+
*/
|
|
1105
1165
|
orderType?: string;
|
|
1166
|
+
/**
|
|
1167
|
+
* - Defines the grouping criterion for
|
|
1168
|
+
* retrieving shipments or orders. It specifies whether the results should be
|
|
1169
|
+
* organized based on shipment groups or order groups. For example, using
|
|
1170
|
+
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
1171
|
+
* may not be recognized, leading to errors or default behavior.
|
|
1172
|
+
*/
|
|
1173
|
+
groupEntity?: string;
|
|
1106
1174
|
};
|
|
1107
1175
|
type GetStateManagerConfigParam = {
|
|
1108
1176
|
/**
|
|
@@ -1135,10 +1203,6 @@ type InvalidateShipmentCacheParam = {
|
|
|
1135
1203
|
body: OrderPlatformModel.InvalidateShipmentCachePayload;
|
|
1136
1204
|
};
|
|
1137
1205
|
type JobDetailsParam = {
|
|
1138
|
-
/**
|
|
1139
|
-
* - A unique identifier for the batch associated
|
|
1140
|
-
* with this bulk action.
|
|
1141
|
-
*/
|
|
1142
1206
|
batchId: string;
|
|
1143
1207
|
};
|
|
1144
1208
|
type OrderUpdateParam = {
|
|
@@ -1147,6 +1211,9 @@ type OrderUpdateParam = {
|
|
|
1147
1211
|
type PostShipmentHistoryParam = {
|
|
1148
1212
|
body: OrderPlatformModel.PostShipmentHistory;
|
|
1149
1213
|
};
|
|
1214
|
+
type ProcessManifestsParam = {
|
|
1215
|
+
body: OrderPlatformModel.ProcessManifest;
|
|
1216
|
+
};
|
|
1150
1217
|
type ReassignLocationParam = {
|
|
1151
1218
|
body: OrderPlatformModel.StoreReassign;
|
|
1152
1219
|
};
|
|
@@ -1158,7 +1225,7 @@ type SendUserMobileOTPParam = {
|
|
|
1158
1225
|
};
|
|
1159
1226
|
type TrackShipmentParam = {
|
|
1160
1227
|
/**
|
|
1161
|
-
* -
|
|
1228
|
+
* - Shipment ID
|
|
1162
1229
|
*/
|
|
1163
1230
|
shipmentId?: string;
|
|
1164
1231
|
/**
|
|
@@ -1166,31 +1233,27 @@ type TrackShipmentParam = {
|
|
|
1166
1233
|
*/
|
|
1167
1234
|
awb?: string;
|
|
1168
1235
|
/**
|
|
1169
|
-
* - Page number
|
|
1236
|
+
* - Page number
|
|
1170
1237
|
*/
|
|
1171
1238
|
pageNo?: number;
|
|
1172
1239
|
/**
|
|
1173
|
-
* -
|
|
1240
|
+
* - Page size
|
|
1174
1241
|
*/
|
|
1175
1242
|
pageSize?: number;
|
|
1176
1243
|
};
|
|
1177
1244
|
type UpdateAddressParam = {
|
|
1245
|
+
/**
|
|
1246
|
+
* - Unique shipment no. that is auto-generated
|
|
1247
|
+
*/
|
|
1178
1248
|
shipmentId: string;
|
|
1179
|
-
|
|
1180
|
-
address?: string;
|
|
1181
|
-
addressType?: string;
|
|
1182
|
-
pincode?: string;
|
|
1183
|
-
phone?: string;
|
|
1184
|
-
email?: string;
|
|
1185
|
-
landmark?: string;
|
|
1186
|
-
addressCategory: string;
|
|
1187
|
-
city?: string;
|
|
1188
|
-
state?: string;
|
|
1189
|
-
country?: string;
|
|
1249
|
+
body: OrderPlatformModel.UpdateAddressRequestBody;
|
|
1190
1250
|
};
|
|
1191
1251
|
type UpdatePackagingDimensionsParam = {
|
|
1192
1252
|
body: OrderPlatformModel.UpdatePackagingDimensionsPayload;
|
|
1193
1253
|
};
|
|
1254
|
+
type UpdatePaymentInfoParam = {
|
|
1255
|
+
body: OrderPlatformModel.UpdateShipmentPaymentMode;
|
|
1256
|
+
};
|
|
1194
1257
|
type UpdateShipmentLockParam = {
|
|
1195
1258
|
body: OrderPlatformModel.UpdateShipmentLockPayload;
|
|
1196
1259
|
};
|
|
@@ -1201,13 +1264,15 @@ type UpdateShipmentTrackingParam = {
|
|
|
1201
1264
|
body: OrderPlatformModel.CourierPartnerTrackingDetails;
|
|
1202
1265
|
};
|
|
1203
1266
|
type UploadConsentsParam = {
|
|
1204
|
-
|
|
1267
|
+
manifestId: string;
|
|
1268
|
+
body: OrderPlatformModel.UploadConsent;
|
|
1205
1269
|
};
|
|
1206
1270
|
type VerifyMobileOTPParam = {
|
|
1207
1271
|
body: OrderPlatformModel.VerifyMobileOTP;
|
|
1208
1272
|
};
|
|
1209
1273
|
type GetAllowedTemplatesForBulkParam = any;
|
|
1210
1274
|
type GetBulkActionTemplateParam = any;
|
|
1275
|
+
type GetChannelConfigParam = any;
|
|
1211
1276
|
type GetRoleBasedActionsParam = any;
|
|
1212
1277
|
type GetStateTransitionMapParam = any;
|
|
1213
1278
|
import OrderPlatformModel = require("./OrderPlatformModel");
|