@gofynd/fdk-client-javascript 1.4.14 → 1.4.15-beta.10
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 +2 -2
- package/application.d.ts +1 -2
- package/application.js +2 -3
- package/index.d.ts +1 -2
- package/index.js +7 -1
- package/package.json +2 -3
- package/sdk/application/ApplicationClient.d.ts +0 -2
- package/sdk/application/ApplicationClient.js +0 -20
- package/sdk/application/Cart/CartApplicationClient.d.ts +55 -97
- package/sdk/application/Cart/CartApplicationClient.js +60 -1262
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +80 -162
- package/sdk/application/Catalog/CatalogApplicationClient.js +148 -1313
- package/sdk/application/Common/CommonApplicationClient.d.ts +4 -9
- package/sdk/application/Common/CommonApplicationClient.js +5 -90
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -19
- package/sdk/application/Communication/CommunicationApplicationClient.js +6 -145
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -80
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +31 -725
- package/sdk/application/Content/ContentApplicationClient.d.ts +63 -85
- package/sdk/application/Content/ContentApplicationClient.js +126 -942
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -15
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +26 -130
- package/sdk/application/Lead/LeadApplicationClient.d.ts +10 -17
- package/sdk/application/Lead/LeadApplicationClient.js +32 -201
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +22 -62
- package/sdk/application/Logistic/LogisticApplicationClient.js +51 -647
- package/sdk/application/Order/OrderApplicationClient.d.ts +22 -56
- package/sdk/application/Order/OrderApplicationClient.js +86 -555
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +92 -209
- package/sdk/application/Payment/PaymentApplicationClient.js +57 -2099
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +15 -26
- package/sdk/application/Rewards/RewardsApplicationClient.js +17 -303
- package/sdk/application/Share/ShareApplicationClient.d.ts +14 -24
- package/sdk/application/Share/ShareApplicationClient.js +34 -294
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -14
- package/sdk/application/Theme/ThemeApplicationClient.js +30 -166
- package/sdk/application/User/UserApplicationClient.d.ts +87 -138
- package/sdk/application/User/UserApplicationClient.js +47 -1817
- package/sdk/application/Webhook/WebhookApplicationClient.d.ts +4 -7
- package/sdk/application/Webhook/WebhookApplicationClient.js +6 -49
- package/sdk/application/index.d.ts +0 -19
- package/sdk/application/index.js +0 -35
- package/sdk/common/Utility.d.ts +1 -1
- package/sdk/common/Utility.js +10 -7
- package/sdk/common/Validator.d.ts +1 -0
- package/sdk/common/Validator.js +20 -0
- package/sdk/common/utils.d.ts +0 -1
- package/sdk/common/utils.js +0 -14
- package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -86
- package/sdk/partner/FileStorage/FileStoragePartnerClient.js +24 -582
- package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +21 -116
- package/sdk/partner/FileStorage/FileStoragePartnerModel.js +16 -121
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +1 -8
- package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -51
- 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 +20 -126
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +20 -970
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +85 -767
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +76 -429
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +0 -10
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +6 -120
- package/sdk/partner/OAuthClient.js +1 -0
- package/sdk/partner/Theme/ThemePartnerClient.d.ts +10 -8
- package/sdk/partner/Theme/ThemePartnerClient.js +16 -14
- package/sdk/partner/Theme/ThemePartnerModel.d.ts +39 -135
- package/sdk/partner/Theme/ThemePartnerModel.js +38 -114
- package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
- package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +18 -28
- package/sdk/partner/Webhook/WebhookPartnerClient.js +18 -103
- package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +179 -612
- package/sdk/partner/Webhook/WebhookPartnerModel.js +150 -253
- package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +0 -1
- package/sdk/partner/Webhook/WebhookPartnerValidator.js +3 -11
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +4 -5
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +8 -14
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +9 -59
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +4 -40
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +32 -2
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +243 -3
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +130 -11
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +152 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +39 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +35 -0
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +12 -12
- package/sdk/platform/Billing/BillingPlatformClient.js +15 -15
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +388 -443
- package/sdk/platform/Billing/BillingPlatformModel.js +263 -280
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +18 -16
- package/sdk/platform/Billing/BillingPlatformValidator.js +9 -8
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +103 -134
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +112 -407
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +65 -111
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +44 -106
- package/sdk/platform/Cart/CartPlatformModel.d.ts +1328 -4975
- package/sdk/platform/Cart/CartPlatformModel.js +1229 -1922
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +183 -208
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +358 -383
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +126 -122
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +68 -66
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +118 -141
- package/sdk/platform/Catalog/CatalogPlatformClient.js +170 -193
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1744 -1501
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1211 -1383
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +18 -18
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +18 -18
- package/sdk/platform/Common/CommonPlatformClient.d.ts +2 -3
- package/sdk/platform/Common/CommonPlatformClient.js +2 -3
- package/sdk/platform/Common/CommonPlatformModel.d.ts +9 -9
- package/sdk/platform/Common/CommonPlatformModel.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +17 -16
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +17 -16
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +8 -8
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +33 -43
- package/sdk/platform/Communication/CommunicationPlatformModel.js +34 -38
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +42 -46
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +43 -47
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +223 -223
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +212 -210
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +33 -46
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +54 -67
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +18 -18
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +24 -45
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +30 -134
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +138 -283
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +100 -219
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -37
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +8 -27
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +141 -124
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +422 -449
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +141 -179
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +130 -168
- package/sdk/platform/Content/ContentPlatformClient.d.ts +106 -142
- package/sdk/platform/Content/ContentPlatformClient.js +336 -523
- package/sdk/platform/Content/ContentPlatformModel.d.ts +395 -1241
- package/sdk/platform/Content/ContentPlatformModel.js +390 -521
- package/sdk/platform/Content/ContentPlatformValidator.d.ts +117 -168
- package/sdk/platform/Content/ContentPlatformValidator.js +108 -162
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +12 -14
- package/sdk/platform/Discount/DiscountPlatformClient.js +12 -14
- 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 +39 -95
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +63 -462
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +15 -62
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +13 -75
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +22 -20
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +24 -21
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +116 -370
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +104 -313
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +320 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +2333 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +2890 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +2148 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +284 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +354 -0
- 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 +4 -25
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +5 -175
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +4 -52
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +3 -34
- package/sdk/platform/Order/OrderPlatformClient.d.ts +103 -174
- package/sdk/platform/Order/OrderPlatformClient.js +275 -528
- package/sdk/platform/Order/OrderPlatformModel.d.ts +3078 -5449
- package/sdk/platform/Order/OrderPlatformModel.js +1659 -3501
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +219 -234
- package/sdk/platform/Order/OrderPlatformValidator.js +118 -146
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -6
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +7 -9
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +9 -9
- package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +106 -94
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +146 -131
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +93 -64
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +70 -62
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
- package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +507 -386
- package/sdk/platform/Payment/PaymentPlatformModel.js +376 -323
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +10 -10
- package/sdk/platform/Payment/PaymentPlatformValidator.js +10 -10
- package/sdk/platform/PlatformClient.d.ts +2 -0
- package/sdk/platform/PlatformClient.js +4 -0
- 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 +35 -45
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +38 -117
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +13 -22
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +12 -24
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +46 -40
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +68 -62
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +396 -620
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +326 -501
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +11 -11
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +10 -10
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +2 -2
- package/sdk/platform/Share/SharePlatformApplicationClient.js +2 -2
- package/sdk/platform/Share/SharePlatformModel.d.ts +5 -36
- package/sdk/platform/Share/SharePlatformModel.js +4 -27
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +3 -3
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +4 -8
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +0 -5
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +0 -2
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +13 -76
- package/sdk/platform/Theme/ThemePlatformModel.js +17 -57
- 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 +78 -25
- package/sdk/platform/Webhook/WebhookPlatformClient.js +470 -75
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +427 -720
- package/sdk/platform/Webhook/WebhookPlatformModel.js +386 -410
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +55 -10
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +72 -12
- package/sdk/platform/index.d.ts +1 -0
- package/sdk/platform/index.js +2 -0
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -3
- package/sdk/public/Configuration/ConfigurationPublicClient.js +10 -8
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +9 -9
- package/sdk/public/Configuration/ConfigurationPublicModel.js +6 -6
- package/sdk/public/Content/ContentPublicClient.d.ts +2 -112
- package/sdk/public/Content/ContentPublicClient.js +19 -793
- package/sdk/public/Content/ContentPublicModel.d.ts +3 -549
- package/sdk/public/Content/ContentPublicModel.js +3 -649
- package/sdk/public/Content/ContentPublicValidator.d.ts +3 -69
- package/sdk/public/Content/ContentPublicValidator.js +2 -88
- package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
- package/sdk/public/Partner/PartnerPublicClient.js +14 -2
- package/sdk/public/Webhook/WebhookPublicClient.d.ts +8 -8
- package/sdk/public/Webhook/WebhookPublicClient.js +13 -10
- 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/application/Cart/CartApplicationModel.d.ts +0 -4340
- package/sdk/application/Cart/CartApplicationModel.js +0 -2718
- package/sdk/application/Cart/CartApplicationValidator.d.ts +0 -788
- package/sdk/application/Cart/CartApplicationValidator.js +0 -546
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +0 -3909
- package/sdk/application/Catalog/CatalogApplicationModel.js +0 -2667
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +0 -791
- package/sdk/application/Catalog/CatalogApplicationValidator.js +0 -551
- package/sdk/application/Common/CommonApplicationModel.d.ts +0 -449
- package/sdk/application/Common/CommonApplicationModel.js +0 -308
- package/sdk/application/Common/CommonApplicationValidator.d.ts +0 -46
- package/sdk/application/Common/CommonApplicationValidator.js +0 -38
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +0 -293
- package/sdk/application/Communication/CommunicationApplicationModel.js +0 -201
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +0 -29
- package/sdk/application/Communication/CommunicationApplicationValidator.js +0 -38
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +0 -2544
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +0 -1875
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +0 -179
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +0 -176
- package/sdk/application/Content/ContentApplicationModel.d.ts +0 -2189
- package/sdk/application/Content/ContentApplicationModel.js +0 -1640
- package/sdk/application/Content/ContentApplicationValidator.d.ts +0 -290
- package/sdk/application/Content/ContentApplicationValidator.js +0 -269
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +0 -270
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +0 -188
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +0 -56
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +0 -53
- package/sdk/application/Finance/FinanceApplicationClient.d.ts +0 -36
- package/sdk/application/Finance/FinanceApplicationClient.js +0 -202
- package/sdk/application/Finance/FinanceApplicationModel.d.ts +0 -289
- package/sdk/application/Finance/FinanceApplicationModel.js +0 -208
- package/sdk/application/Finance/FinanceApplicationValidator.d.ts +0 -25
- package/sdk/application/Finance/FinanceApplicationValidator.js +0 -31
- package/sdk/application/Lead/LeadApplicationModel.d.ts +0 -590
- package/sdk/application/Lead/LeadApplicationModel.js +0 -480
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +0 -68
- package/sdk/application/Lead/LeadApplicationValidator.js +0 -71
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +0 -2034
- package/sdk/application/Logistic/LogisticApplicationModel.js +0 -1391
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +0 -299
- package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -224
- package/sdk/application/Order/OrderApplicationModel.d.ts +0 -2612
- package/sdk/application/Order/OrderApplicationModel.js +0 -1669
- package/sdk/application/Order/OrderApplicationValidator.d.ts +0 -279
- package/sdk/application/Order/OrderApplicationValidator.js +0 -210
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +0 -4062
- package/sdk/application/Payment/PaymentApplicationModel.js +0 -2632
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +0 -576
- package/sdk/application/Payment/PaymentApplicationValidator.js +0 -594
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +0 -365
- package/sdk/application/Rewards/RewardsApplicationModel.js +0 -396
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +0 -73
- package/sdk/application/Rewards/RewardsApplicationValidator.js +0 -84
- package/sdk/application/Share/ShareApplicationModel.d.ts +0 -339
- package/sdk/application/Share/ShareApplicationModel.js +0 -234
- package/sdk/application/Share/ShareApplicationValidator.d.ts +0 -90
- package/sdk/application/Share/ShareApplicationValidator.js +0 -91
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +0 -1744
- package/sdk/application/Theme/ThemeApplicationModel.js +0 -1446
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +0 -79
- package/sdk/application/Theme/ThemeApplicationValidator.js +0 -65
- package/sdk/application/User/UserApplicationModel.d.ts +0 -1943
- package/sdk/application/User/UserApplicationModel.js +0 -1382
- package/sdk/application/User/UserApplicationValidator.d.ts +0 -560
- package/sdk/application/User/UserApplicationValidator.js +0 -573
- package/sdk/application/Webhook/WebhookApplicationModel.d.ts +0 -54
- package/sdk/application/Webhook/WebhookApplicationModel.js +0 -48
- package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +0 -16
- package/sdk/application/Webhook/WebhookApplicationValidator.js +0 -19
- package/sdk/common/Clickstream.d.ts +0 -1
- package/sdk/common/Clickstream.js +0 -464
|
@@ -9,13 +9,15 @@ 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} [
|
|
12
|
+
* @property {number} pageSize - The number of records to return per page in the response.
|
|
13
|
+
* @property {number} pageNo - The page number to fetch from the paginated results.
|
|
14
|
+
* @property {string} startDate - The start date for filtering the jobs,
|
|
15
|
+
* expressed in UTC format
|
|
16
|
+
* @property {string} endDate - The end date for filtering the jobs, expressed
|
|
17
|
+
* in UTC format
|
|
18
|
+
* @property {string} [status] - The status of the jobs to filter the results.
|
|
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.
|
|
19
21
|
*/
|
|
20
22
|
/**
|
|
21
23
|
* @typedef BulkStateTransistionParam
|
|
@@ -25,10 +27,6 @@ export = OrderPlatformValidator;
|
|
|
25
27
|
* @typedef CheckOrderStatusParam
|
|
26
28
|
* @property {OrderPlatformModel.OrderStatus} body
|
|
27
29
|
*/
|
|
28
|
-
/**
|
|
29
|
-
* @typedef CreateChannelConfigParam
|
|
30
|
-
* @property {OrderPlatformModel.CreateChannelConfigData} body
|
|
31
|
-
*/
|
|
32
30
|
/**
|
|
33
31
|
* @typedef CreateOrderParam
|
|
34
32
|
* @property {OrderPlatformModel.CreateOrderAPI} body
|
|
@@ -43,7 +41,7 @@ export = OrderPlatformValidator;
|
|
|
43
41
|
*/
|
|
44
42
|
/**
|
|
45
43
|
* @typedef DownloadLanesReportParam
|
|
46
|
-
* @property {OrderPlatformModel.
|
|
44
|
+
* @property {OrderPlatformModel.BulkReportsDownloadRequest} body
|
|
47
45
|
*/
|
|
48
46
|
/**
|
|
49
47
|
* @typedef EInvoiceRetryParam
|
|
@@ -54,8 +52,12 @@ export = OrderPlatformValidator;
|
|
|
54
52
|
* @property {string} logId - Log Error ID
|
|
55
53
|
*/
|
|
56
54
|
/**
|
|
57
|
-
* @typedef
|
|
58
|
-
* @property {
|
|
55
|
+
* @typedef FailedOrderLogsParam
|
|
56
|
+
* @property {string} [applicationId] - Application ID
|
|
57
|
+
* @property {number} [pageNo] - Page Number
|
|
58
|
+
* @property {number} [pageSize] - Page Size
|
|
59
|
+
* @property {string} [searchType] - Search type for filter
|
|
60
|
+
* @property {string} [searchValue] - Search value for filter
|
|
59
61
|
*/
|
|
60
62
|
/**
|
|
61
63
|
* @typedef FetchRefundModeConfigParam
|
|
@@ -74,18 +76,18 @@ export = OrderPlatformValidator;
|
|
|
74
76
|
*/
|
|
75
77
|
/**
|
|
76
78
|
* @typedef GenerateProcessManifestParam
|
|
77
|
-
* @property {OrderPlatformModel.
|
|
79
|
+
* @property {OrderPlatformModel.ProcessManifestRequest} body
|
|
78
80
|
*/
|
|
79
81
|
/**
|
|
80
82
|
* @typedef GetAllowedStateTransitionParam
|
|
81
|
-
* @property {string} orderingChannel -
|
|
82
|
-
* @property {string} status -
|
|
83
|
+
* @property {string} orderingChannel - The channel through which orders are placed.
|
|
84
|
+
* @property {string} status - The status key indicates the current status for
|
|
85
|
+
* which the API will provide a list of possible next state transitions.
|
|
83
86
|
*/
|
|
84
87
|
/** @typedef GetAllowedTemplatesForBulkParam */
|
|
85
88
|
/**
|
|
86
89
|
* @typedef GetAnnouncementsParam
|
|
87
|
-
* @property {string} [date] - Date On which the announcement is Active
|
|
88
|
-
* should in ISO Datetime format IST Time)
|
|
90
|
+
* @property {string} [date] - Date On which the announcement is Active.
|
|
89
91
|
*/
|
|
90
92
|
/**
|
|
91
93
|
* @typedef GetBagByIdParam
|
|
@@ -110,8 +112,8 @@ export = OrderPlatformValidator;
|
|
|
110
112
|
* @typedef GetBulkShipmentExcelFileParam
|
|
111
113
|
* @property {string} [salesChannels] - Comma separated values of sales channel ids
|
|
112
114
|
* @property {string} [dpIds] - Comma separated values of delivery partner ids
|
|
113
|
-
* @property {string} [startDate] -
|
|
114
|
-
* @property {string} [endDate] -
|
|
115
|
+
* @property {string} [startDate] - UTC start date in ISO format
|
|
116
|
+
* @property {string} [endDate] - UTC end date in ISO format
|
|
115
117
|
* @property {string} [stores] - Comma separated values of store ids
|
|
116
118
|
* @property {string} [tags] - Comma separated values of tags
|
|
117
119
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
@@ -121,13 +123,12 @@ export = OrderPlatformValidator;
|
|
|
121
123
|
* @property {number} [pageNo]
|
|
122
124
|
* @property {number} [pageSize]
|
|
123
125
|
*/
|
|
124
|
-
/** @typedef GetChannelConfigParam */
|
|
125
126
|
/**
|
|
126
127
|
* @typedef GetFileByStatusParam
|
|
127
|
-
* @property {string} batchId
|
|
128
|
-
* @property {string} status
|
|
129
|
-
* @property {string} fileType -
|
|
130
|
-
* @property {string} [reportType]
|
|
128
|
+
* @property {string} batchId - Batch Id to identify the bulk operation request.
|
|
129
|
+
* @property {string} status - The status of the jobs to filter the results.
|
|
130
|
+
* @property {string} fileType - The type of file to be downloaded.
|
|
131
|
+
* @property {string} [reportType] - The type of report to be downloaded.
|
|
131
132
|
*/
|
|
132
133
|
/**
|
|
133
134
|
* @typedef GetLaneConfigParam
|
|
@@ -142,44 +143,38 @@ export = OrderPlatformValidator;
|
|
|
142
143
|
* @property {string} [salesChannels]
|
|
143
144
|
* @property {string} [paymentMode] - Comma separated values of payment modes
|
|
144
145
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
145
|
-
* @property {string} [searchType]
|
|
146
|
-
* be used as the target for the search operation
|
|
146
|
+
* @property {string} [searchType]
|
|
147
147
|
* @property {string} [searchValue]
|
|
148
148
|
* @property {string} [tags]
|
|
149
|
-
* @property {number} [timeToDispatch]
|
|
149
|
+
* @property {number} [timeToDispatch]
|
|
150
150
|
* @property {string} [paymentMethods]
|
|
151
151
|
* @property {boolean} [myOrders]
|
|
152
152
|
* @property {boolean} [showCrossCompanyData] - Flag to view cross & non-cross
|
|
153
153
|
* company order
|
|
154
|
-
* @property {string} [orderType]
|
|
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.
|
|
154
|
+
* @property {string} [orderType]
|
|
166
155
|
*/
|
|
167
156
|
/**
|
|
168
157
|
* @typedef GetManifestDetailsParam
|
|
169
|
-
* @property {string} manifestId
|
|
158
|
+
* @property {string} manifestId - The unique identifier assigned to the manifest.
|
|
159
|
+
* @property {string} [dpIds] - Filter shipments with the specific Courier
|
|
160
|
+
* partner Ids which is a combination of courier partner extension and scheme Ids.
|
|
161
|
+
* @property {string} [endDate] - End date for the shipment search range in manifest.
|
|
162
|
+
* @property {string} [startDate] - Start date for the shipment search range in manifest.
|
|
163
|
+
* @property {number} [pageNo] - Page number for pagination.
|
|
164
|
+
* @property {number} [pageSize] - Number of records per page for pagination.
|
|
170
165
|
*/
|
|
171
166
|
/**
|
|
172
167
|
* @typedef GetManifestShipmentsParam
|
|
173
168
|
* @property {string} dpIds - Filter shipments with the specific Courier partner
|
|
174
169
|
* Ids which is a combination of courier partner extension and scheme Ids.
|
|
175
|
-
* @property {number} stores - Filter
|
|
170
|
+
* @property {number} stores - Filter results based on specific store IDs.
|
|
176
171
|
* @property {string} toDate - End date for the shipment search range.
|
|
177
172
|
* @property {string} fromDate - Start date for the shipment search range.
|
|
178
|
-
* @property {string} [dpName] - Filter
|
|
179
|
-
* @property {string} [salesChannels] -
|
|
180
|
-
*
|
|
181
|
-
*
|
|
182
|
-
* @property {string} [searchValue] -
|
|
173
|
+
* @property {string} [dpName] - Filter results based on specific courier partner name.
|
|
174
|
+
* @property {string} [salesChannels] - Filter results based on comma-separated
|
|
175
|
+
* list of sales channels.
|
|
176
|
+
* @property {string} [searchType] - Filter results based on search type.
|
|
177
|
+
* @property {string} [searchValue] - Filter results based on the search value.
|
|
183
178
|
* @property {number} [pageNo] - Page number for pagination.
|
|
184
179
|
* @property {number} [pageSize] - Number of records per page for pagination.
|
|
185
180
|
*/
|
|
@@ -189,16 +184,20 @@ export = OrderPlatformValidator;
|
|
|
189
184
|
*/
|
|
190
185
|
/**
|
|
191
186
|
* @typedef GetManifestsParam
|
|
192
|
-
* @property {string} [status] -
|
|
193
|
-
* @property {string} [startDate] -
|
|
194
|
-
*
|
|
195
|
-
* @property {string} [
|
|
196
|
-
*
|
|
197
|
-
* @property {number} [storeId] -
|
|
198
|
-
*
|
|
199
|
-
* @property {string} [
|
|
200
|
-
*
|
|
201
|
-
* @property {
|
|
187
|
+
* @property {string} [status] - Filter for the status of manifests.
|
|
188
|
+
* @property {string} [startDate] - The starting date for filtering manifests in
|
|
189
|
+
* ISO format
|
|
190
|
+
* @property {string} [endDate] - The end date for filtering manifests in ISO format
|
|
191
|
+
* @property {string} [searchType] - Specifies the type of search to perform.
|
|
192
|
+
* @property {number} [storeId] - Filter to fetch manifests for a specific store
|
|
193
|
+
* by its ID.
|
|
194
|
+
* @property {string} [searchValue] - The value to search for based on the
|
|
195
|
+
* selected search type.
|
|
196
|
+
* @property {string} [dpIds] - A comma-separated list of courier partner IDs
|
|
197
|
+
* (DP IDs) to filter the manifests.
|
|
198
|
+
* @property {number} [pageNo] - The number of the page to fetch data.
|
|
199
|
+
* @property {number} [pageSize] - The number of records to return per page for
|
|
200
|
+
* pagination.
|
|
202
201
|
*/
|
|
203
202
|
/**
|
|
204
203
|
* @typedef GetOrderByIdParam
|
|
@@ -220,10 +219,10 @@ export = OrderPlatformValidator;
|
|
|
220
219
|
* associated with the order
|
|
221
220
|
* @property {string} [searchValue] - Search_value is matched against the field
|
|
222
221
|
* specified by the search_type
|
|
223
|
-
* @property {string} [fromDate]
|
|
224
|
-
* @property {string} [toDate]
|
|
225
|
-
* @property {string} [startDate]
|
|
226
|
-
* @property {string} [endDate]
|
|
222
|
+
* @property {string} [fromDate]
|
|
223
|
+
* @property {string} [toDate]
|
|
224
|
+
* @property {string} [startDate]
|
|
225
|
+
* @property {string} [endDate]
|
|
227
226
|
* @property {string} [dpIds] - Delivery Partner IDs to which shipments are assigned.
|
|
228
227
|
* @property {string} [stores]
|
|
229
228
|
* @property {string} [salesChannels]
|
|
@@ -238,11 +237,9 @@ export = OrderPlatformValidator;
|
|
|
238
237
|
* @property {string} [orderType]
|
|
239
238
|
* @property {boolean} [allowInactive] - Flag indicating whether inactive
|
|
240
239
|
* shipments are allowed
|
|
241
|
-
* @property {
|
|
242
|
-
*
|
|
243
|
-
*
|
|
244
|
-
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
245
|
-
* may not be recognized, leading to errors or default behavior.
|
|
240
|
+
* @property {boolean} [enforceDateFilter] - Applies a date filter for listing
|
|
241
|
+
* orders. This is useful when fetching data for a specific date range while
|
|
242
|
+
* performing searches.
|
|
246
243
|
*/
|
|
247
244
|
/** @typedef GetRoleBasedActionsParam */
|
|
248
245
|
/**
|
|
@@ -256,8 +253,8 @@ export = OrderPlatformValidator;
|
|
|
256
253
|
*/
|
|
257
254
|
/**
|
|
258
255
|
* @typedef GetShipmentHistoryParam
|
|
259
|
-
* @property {string} [shipmentId] -
|
|
260
|
-
* @property {number} [bagId] -
|
|
256
|
+
* @property {string} [shipmentId] - Identifier for the shipment
|
|
257
|
+
* @property {number} [bagId] - Identifier for a bag or product.
|
|
261
258
|
*/
|
|
262
259
|
/**
|
|
263
260
|
* @typedef GetShipmentReasonsParam
|
|
@@ -274,9 +271,8 @@ export = OrderPlatformValidator;
|
|
|
274
271
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
275
272
|
* @property {boolean} [statusOverrideLane] - Use this flag to fetch by
|
|
276
273
|
* bag_status and override lane
|
|
277
|
-
* @property {number} [timeToDispatch]
|
|
278
|
-
* @property {string} [searchType] -
|
|
279
|
-
* be used as the target for the search operation
|
|
274
|
+
* @property {number} [timeToDispatch]
|
|
275
|
+
* @property {string} [searchType] - Search type key
|
|
280
276
|
* @property {string} [searchValue] - Search type value
|
|
281
277
|
* @property {string} [fromDate] - Start Date in DD-MM-YYYY format
|
|
282
278
|
* @property {string} [toDate] - End Date in DD-MM-YYYY format
|
|
@@ -303,24 +299,10 @@ export = OrderPlatformValidator;
|
|
|
303
299
|
* company order
|
|
304
300
|
* @property {string} [tags] - Comma separated values of tags
|
|
305
301
|
* @property {string} [customerId]
|
|
306
|
-
* @property {string} [orderType]
|
|
307
|
-
*
|
|
308
|
-
*
|
|
309
|
-
*
|
|
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.
|
|
302
|
+
* @property {string} [orderType]
|
|
303
|
+
* @property {boolean} [enforceDateFilter] - Applies a date filter for listing
|
|
304
|
+
* shipments. This is useful when fetching data for a specific date range
|
|
305
|
+
* while performing searches.
|
|
324
306
|
*/
|
|
325
307
|
/**
|
|
326
308
|
* @typedef GetStateManagerConfigParam
|
|
@@ -344,7 +326,8 @@ export = OrderPlatformValidator;
|
|
|
344
326
|
*/
|
|
345
327
|
/**
|
|
346
328
|
* @typedef JobDetailsParam
|
|
347
|
-
* @property {string} batchId
|
|
329
|
+
* @property {string} batchId - A unique identifier for the batch associated
|
|
330
|
+
* with this bulk action.
|
|
348
331
|
*/
|
|
349
332
|
/**
|
|
350
333
|
* @typedef OrderUpdateParam
|
|
@@ -354,10 +337,6 @@ export = OrderPlatformValidator;
|
|
|
354
337
|
* @typedef PostShipmentHistoryParam
|
|
355
338
|
* @property {OrderPlatformModel.PostShipmentHistory} body
|
|
356
339
|
*/
|
|
357
|
-
/**
|
|
358
|
-
* @typedef ProcessManifestsParam
|
|
359
|
-
* @property {OrderPlatformModel.ProcessManifest} body
|
|
360
|
-
*/
|
|
361
340
|
/**
|
|
362
341
|
* @typedef ReassignLocationParam
|
|
363
342
|
* @property {OrderPlatformModel.StoreReassign} body
|
|
@@ -372,24 +351,30 @@ export = OrderPlatformValidator;
|
|
|
372
351
|
*/
|
|
373
352
|
/**
|
|
374
353
|
* @typedef TrackShipmentParam
|
|
375
|
-
* @property {string} [shipmentId] -
|
|
354
|
+
* @property {string} [shipmentId] - Unique identifier of a shipment on the platform.
|
|
376
355
|
* @property {string} [awb] - AWB number
|
|
377
|
-
* @property {number} [pageNo] - Page number
|
|
378
|
-
* @property {number} [pageSize] -
|
|
356
|
+
* @property {number} [pageNo] - Page number for pagination.
|
|
357
|
+
* @property {number} [pageSize] - Number of records per page for pagination.
|
|
379
358
|
*/
|
|
380
359
|
/**
|
|
381
360
|
* @typedef UpdateAddressParam
|
|
382
|
-
* @property {string} shipmentId
|
|
383
|
-
* @property {
|
|
361
|
+
* @property {string} shipmentId
|
|
362
|
+
* @property {string} [name]
|
|
363
|
+
* @property {string} [address]
|
|
364
|
+
* @property {string} [addressType]
|
|
365
|
+
* @property {string} [pincode]
|
|
366
|
+
* @property {string} [phone]
|
|
367
|
+
* @property {string} [email]
|
|
368
|
+
* @property {string} [landmark]
|
|
369
|
+
* @property {string} addressCategory
|
|
370
|
+
* @property {string} [city]
|
|
371
|
+
* @property {string} [state]
|
|
372
|
+
* @property {string} [country]
|
|
384
373
|
*/
|
|
385
374
|
/**
|
|
386
375
|
* @typedef UpdatePackagingDimensionsParam
|
|
387
376
|
* @property {OrderPlatformModel.UpdatePackagingDimensionsPayload} body
|
|
388
377
|
*/
|
|
389
|
-
/**
|
|
390
|
-
* @typedef UpdatePaymentInfoParam
|
|
391
|
-
* @property {OrderPlatformModel.UpdateShipmentPaymentMode} body
|
|
392
|
-
*/
|
|
393
378
|
/**
|
|
394
379
|
* @typedef UpdateShipmentLockParam
|
|
395
380
|
* @property {OrderPlatformModel.UpdateShipmentLockPayload} body
|
|
@@ -404,8 +389,7 @@ export = OrderPlatformValidator;
|
|
|
404
389
|
*/
|
|
405
390
|
/**
|
|
406
391
|
* @typedef UploadConsentsParam
|
|
407
|
-
* @property {
|
|
408
|
-
* @property {OrderPlatformModel.UploadConsent} body
|
|
392
|
+
* @property {OrderPlatformModel.UploadManifestConsent} body
|
|
409
393
|
*/
|
|
410
394
|
/**
|
|
411
395
|
* @typedef VerifyMobileOTPParam
|
|
@@ -422,8 +406,6 @@ declare class OrderPlatformValidator {
|
|
|
422
406
|
static bulkStateTransistion(): BulkStateTransistionParam;
|
|
423
407
|
/** @returns {CheckOrderStatusParam} */
|
|
424
408
|
static checkOrderStatus(): CheckOrderStatusParam;
|
|
425
|
-
/** @returns {CreateChannelConfigParam} */
|
|
426
|
-
static createChannelConfig(): CreateChannelConfigParam;
|
|
427
409
|
/** @returns {CreateOrderParam} */
|
|
428
410
|
static createOrder(): CreateOrderParam;
|
|
429
411
|
/** @returns {DispatchManifestsParam} */
|
|
@@ -436,8 +418,8 @@ declare class OrderPlatformValidator {
|
|
|
436
418
|
static eInvoiceRetry(): EInvoiceRetryParam;
|
|
437
419
|
/** @returns {FailedOrderLogDetailsParam} */
|
|
438
420
|
static failedOrderLogDetails(): FailedOrderLogDetailsParam;
|
|
439
|
-
/** @returns {
|
|
440
|
-
static
|
|
421
|
+
/** @returns {FailedOrderLogsParam} */
|
|
422
|
+
static failedOrderLogs(): FailedOrderLogsParam;
|
|
441
423
|
/** @returns {FetchRefundModeConfigParam} */
|
|
442
424
|
static fetchRefundModeConfig(): FetchRefundModeConfigParam;
|
|
443
425
|
/** @returns {GenerateInvoiceIDParam} */
|
|
@@ -460,8 +442,6 @@ declare class OrderPlatformValidator {
|
|
|
460
442
|
static getBulkActionTemplate(): any;
|
|
461
443
|
/** @returns {GetBulkShipmentExcelFileParam} */
|
|
462
444
|
static getBulkShipmentExcelFile(): GetBulkShipmentExcelFileParam;
|
|
463
|
-
/** @returns {GetChannelConfigParam} */
|
|
464
|
-
static getChannelConfig(): any;
|
|
465
445
|
/** @returns {GetFileByStatusParam} */
|
|
466
446
|
static getFileByStatus(): GetFileByStatusParam;
|
|
467
447
|
/** @returns {GetLaneConfigParam} */
|
|
@@ -504,8 +484,6 @@ declare class OrderPlatformValidator {
|
|
|
504
484
|
static orderUpdate(): OrderUpdateParam;
|
|
505
485
|
/** @returns {PostShipmentHistoryParam} */
|
|
506
486
|
static postShipmentHistory(): PostShipmentHistoryParam;
|
|
507
|
-
/** @returns {ProcessManifestsParam} */
|
|
508
|
-
static processManifests(): ProcessManifestsParam;
|
|
509
487
|
/** @returns {ReassignLocationParam} */
|
|
510
488
|
static reassignLocation(): ReassignLocationParam;
|
|
511
489
|
/** @returns {SendSmsNinjaParam} */
|
|
@@ -518,8 +496,6 @@ declare class OrderPlatformValidator {
|
|
|
518
496
|
static updateAddress(): UpdateAddressParam;
|
|
519
497
|
/** @returns {UpdatePackagingDimensionsParam} */
|
|
520
498
|
static updatePackagingDimensions(): UpdatePackagingDimensionsParam;
|
|
521
|
-
/** @returns {UpdatePaymentInfoParam} */
|
|
522
|
-
static updatePaymentInfo(): UpdatePaymentInfoParam;
|
|
523
499
|
/** @returns {UpdateShipmentLockParam} */
|
|
524
500
|
static updateShipmentLock(): UpdateShipmentLockParam;
|
|
525
501
|
/** @returns {UpdateShipmentStatusParam} */
|
|
@@ -532,7 +508,7 @@ declare class OrderPlatformValidator {
|
|
|
532
508
|
static verifyMobileOTP(): VerifyMobileOTPParam;
|
|
533
509
|
}
|
|
534
510
|
declare namespace OrderPlatformValidator {
|
|
535
|
-
export { AddStateManagerConfigParam, AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam,
|
|
511
|
+
export { AddStateManagerConfigParam, AttachOrderUserParam, BulkListingParam, BulkStateTransistionParam, CheckOrderStatusParam, CreateOrderParam, DispatchManifestsParam, DownloadBulkActionTemplateParam, DownloadLanesReportParam, EInvoiceRetryParam, FailedOrderLogDetailsParam, FailedOrderLogsParam, 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 };
|
|
536
512
|
}
|
|
537
513
|
type AddStateManagerConfigParam = {
|
|
538
514
|
body: OrderPlatformModel.TransitionConfigPayload;
|
|
@@ -542,31 +518,33 @@ type AttachOrderUserParam = {
|
|
|
542
518
|
};
|
|
543
519
|
type BulkListingParam = {
|
|
544
520
|
/**
|
|
545
|
-
* -
|
|
521
|
+
* - The number of records to return per page in the response.
|
|
546
522
|
*/
|
|
547
523
|
pageSize: number;
|
|
548
524
|
/**
|
|
549
|
-
* -
|
|
525
|
+
* - The page number to fetch from the paginated results.
|
|
550
526
|
*/
|
|
551
527
|
pageNo: number;
|
|
552
528
|
/**
|
|
553
|
-
* -
|
|
529
|
+
* - The start date for filtering the jobs,
|
|
530
|
+
* expressed in UTC format
|
|
554
531
|
*/
|
|
555
532
|
startDate: string;
|
|
556
533
|
/**
|
|
557
|
-
* -
|
|
534
|
+
* - The end date for filtering the jobs, expressed
|
|
535
|
+
* in UTC format
|
|
558
536
|
*/
|
|
559
537
|
endDate: string;
|
|
560
538
|
/**
|
|
561
|
-
* -
|
|
539
|
+
* - The status of the jobs to filter the results.
|
|
562
540
|
*/
|
|
563
541
|
status?: string;
|
|
564
542
|
/**
|
|
565
|
-
* -
|
|
543
|
+
* - Pecifies the type of job action being requested.
|
|
566
544
|
*/
|
|
567
545
|
bulkActionType?: string;
|
|
568
546
|
/**
|
|
569
|
-
* -
|
|
547
|
+
* - A key or keyword used to search for specific jobs.
|
|
570
548
|
*/
|
|
571
549
|
searchKey?: string;
|
|
572
550
|
};
|
|
@@ -576,9 +554,6 @@ type BulkStateTransistionParam = {
|
|
|
576
554
|
type CheckOrderStatusParam = {
|
|
577
555
|
body: OrderPlatformModel.OrderStatus;
|
|
578
556
|
};
|
|
579
|
-
type CreateChannelConfigParam = {
|
|
580
|
-
body: OrderPlatformModel.CreateChannelConfigData;
|
|
581
|
-
};
|
|
582
557
|
type CreateOrderParam = {
|
|
583
558
|
body: OrderPlatformModel.CreateOrderAPI;
|
|
584
559
|
};
|
|
@@ -592,7 +567,7 @@ type DownloadBulkActionTemplateParam = {
|
|
|
592
567
|
templateSlug?: string;
|
|
593
568
|
};
|
|
594
569
|
type DownloadLanesReportParam = {
|
|
595
|
-
body: OrderPlatformModel.
|
|
570
|
+
body: OrderPlatformModel.BulkReportsDownloadRequest;
|
|
596
571
|
};
|
|
597
572
|
type EInvoiceRetryParam = {
|
|
598
573
|
body: OrderPlatformModel.EInvoiceRetry;
|
|
@@ -603,8 +578,27 @@ type FailedOrderLogDetailsParam = {
|
|
|
603
578
|
*/
|
|
604
579
|
logId: string;
|
|
605
580
|
};
|
|
606
|
-
type
|
|
607
|
-
|
|
581
|
+
type FailedOrderLogsParam = {
|
|
582
|
+
/**
|
|
583
|
+
* - Application ID
|
|
584
|
+
*/
|
|
585
|
+
applicationId?: string;
|
|
586
|
+
/**
|
|
587
|
+
* - Page Number
|
|
588
|
+
*/
|
|
589
|
+
pageNo?: number;
|
|
590
|
+
/**
|
|
591
|
+
* - Page Size
|
|
592
|
+
*/
|
|
593
|
+
pageSize?: number;
|
|
594
|
+
/**
|
|
595
|
+
* - Search type for filter
|
|
596
|
+
*/
|
|
597
|
+
searchType?: string;
|
|
598
|
+
/**
|
|
599
|
+
* - Search value for filter
|
|
600
|
+
*/
|
|
601
|
+
searchValue?: string;
|
|
608
602
|
};
|
|
609
603
|
type FetchRefundModeConfigParam = {
|
|
610
604
|
body: OrderPlatformModel.RefundModeConfigRequestPayload;
|
|
@@ -622,22 +616,22 @@ type GeneratePOSReceiptByOrderIdParam = {
|
|
|
622
616
|
documentType?: string;
|
|
623
617
|
};
|
|
624
618
|
type GenerateProcessManifestParam = {
|
|
625
|
-
body: OrderPlatformModel.
|
|
619
|
+
body: OrderPlatformModel.ProcessManifestRequest;
|
|
626
620
|
};
|
|
627
621
|
type GetAllowedStateTransitionParam = {
|
|
628
622
|
/**
|
|
629
|
-
* -
|
|
623
|
+
* - The channel through which orders are placed.
|
|
630
624
|
*/
|
|
631
625
|
orderingChannel: string;
|
|
632
626
|
/**
|
|
633
|
-
* -
|
|
627
|
+
* - The status key indicates the current status for
|
|
628
|
+
* which the API will provide a list of possible next state transitions.
|
|
634
629
|
*/
|
|
635
630
|
status: string;
|
|
636
631
|
};
|
|
637
632
|
type GetAnnouncementsParam = {
|
|
638
633
|
/**
|
|
639
|
-
* - Date On which the announcement is Active
|
|
640
|
-
* should in ISO Datetime format IST Time)
|
|
634
|
+
* - Date On which the announcement is Active.
|
|
641
635
|
*/
|
|
642
636
|
date?: string;
|
|
643
637
|
};
|
|
@@ -703,11 +697,11 @@ type GetBulkShipmentExcelFileParam = {
|
|
|
703
697
|
*/
|
|
704
698
|
dpIds?: string;
|
|
705
699
|
/**
|
|
706
|
-
* -
|
|
700
|
+
* - UTC start date in ISO format
|
|
707
701
|
*/
|
|
708
702
|
startDate?: string;
|
|
709
703
|
/**
|
|
710
|
-
* -
|
|
704
|
+
* - UTC end date in ISO format
|
|
711
705
|
*/
|
|
712
706
|
endDate?: string;
|
|
713
707
|
/**
|
|
@@ -738,12 +732,21 @@ type GetBulkShipmentExcelFileParam = {
|
|
|
738
732
|
pageSize?: number;
|
|
739
733
|
};
|
|
740
734
|
type GetFileByStatusParam = {
|
|
735
|
+
/**
|
|
736
|
+
* - Batch Id to identify the bulk operation request.
|
|
737
|
+
*/
|
|
741
738
|
batchId: string;
|
|
739
|
+
/**
|
|
740
|
+
* - The status of the jobs to filter the results.
|
|
741
|
+
*/
|
|
742
742
|
status: string;
|
|
743
743
|
/**
|
|
744
|
-
* -
|
|
744
|
+
* - The type of file to be downloaded.
|
|
745
745
|
*/
|
|
746
746
|
fileType: string;
|
|
747
|
+
/**
|
|
748
|
+
* - The type of report to be downloaded.
|
|
749
|
+
*/
|
|
747
750
|
reportType?: string;
|
|
748
751
|
};
|
|
749
752
|
type GetLaneConfigParam = {
|
|
@@ -788,16 +791,9 @@ type GetLaneConfigParam = {
|
|
|
788
791
|
* - Comma separated values of bag statuses
|
|
789
792
|
*/
|
|
790
793
|
bagStatus?: string;
|
|
791
|
-
/**
|
|
792
|
-
* - Search_type refers to the field that will
|
|
793
|
-
* be used as the target for the search operation
|
|
794
|
-
*/
|
|
795
794
|
searchType?: string;
|
|
796
795
|
searchValue?: string;
|
|
797
796
|
tags?: string;
|
|
798
|
-
/**
|
|
799
|
-
* - Time_to_dispatch refers to estimated SLA time.
|
|
800
|
-
*/
|
|
801
797
|
timeToDispatch?: number;
|
|
802
798
|
paymentMethods?: string;
|
|
803
799
|
myOrders?: boolean;
|
|
@@ -806,24 +802,34 @@ type GetLaneConfigParam = {
|
|
|
806
802
|
* company order
|
|
807
803
|
*/
|
|
808
804
|
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
|
-
*/
|
|
823
805
|
orderType?: string;
|
|
824
806
|
};
|
|
825
807
|
type GetManifestDetailsParam = {
|
|
808
|
+
/**
|
|
809
|
+
* - The unique identifier assigned to the manifest.
|
|
810
|
+
*/
|
|
826
811
|
manifestId: string;
|
|
812
|
+
/**
|
|
813
|
+
* - Filter shipments with the specific Courier
|
|
814
|
+
* partner Ids which is a combination of courier partner extension and scheme Ids.
|
|
815
|
+
*/
|
|
816
|
+
dpIds?: string;
|
|
817
|
+
/**
|
|
818
|
+
* - End date for the shipment search range in manifest.
|
|
819
|
+
*/
|
|
820
|
+
endDate?: string;
|
|
821
|
+
/**
|
|
822
|
+
* - Start date for the shipment search range in manifest.
|
|
823
|
+
*/
|
|
824
|
+
startDate?: string;
|
|
825
|
+
/**
|
|
826
|
+
* - Page number for pagination.
|
|
827
|
+
*/
|
|
828
|
+
pageNo?: number;
|
|
829
|
+
/**
|
|
830
|
+
* - Number of records per page for pagination.
|
|
831
|
+
*/
|
|
832
|
+
pageSize?: number;
|
|
827
833
|
};
|
|
828
834
|
type GetManifestShipmentsParam = {
|
|
829
835
|
/**
|
|
@@ -832,7 +838,7 @@ type GetManifestShipmentsParam = {
|
|
|
832
838
|
*/
|
|
833
839
|
dpIds: string;
|
|
834
840
|
/**
|
|
835
|
-
* - Filter
|
|
841
|
+
* - Filter results based on specific store IDs.
|
|
836
842
|
*/
|
|
837
843
|
stores: number;
|
|
838
844
|
/**
|
|
@@ -844,20 +850,20 @@ type GetManifestShipmentsParam = {
|
|
|
844
850
|
*/
|
|
845
851
|
fromDate: string;
|
|
846
852
|
/**
|
|
847
|
-
* - Filter
|
|
853
|
+
* - Filter results based on specific courier partner name.
|
|
848
854
|
*/
|
|
849
855
|
dpName?: string;
|
|
850
856
|
/**
|
|
851
|
-
* -
|
|
857
|
+
* - Filter results based on comma-separated
|
|
858
|
+
* list of sales channels.
|
|
852
859
|
*/
|
|
853
860
|
salesChannels?: string;
|
|
854
861
|
/**
|
|
855
|
-
* -
|
|
856
|
-
* ID, AWB number).
|
|
862
|
+
* - Filter results based on search type.
|
|
857
863
|
*/
|
|
858
864
|
searchType?: string;
|
|
859
865
|
/**
|
|
860
|
-
* -
|
|
866
|
+
* - Filter results based on the search value.
|
|
861
867
|
*/
|
|
862
868
|
searchValue?: string;
|
|
863
869
|
/**
|
|
@@ -877,35 +883,45 @@ type GetManifestfiltersParam = {
|
|
|
877
883
|
};
|
|
878
884
|
type GetManifestsParam = {
|
|
879
885
|
/**
|
|
880
|
-
* -
|
|
886
|
+
* - Filter for the status of manifests.
|
|
881
887
|
*/
|
|
882
888
|
status?: string;
|
|
883
889
|
/**
|
|
884
|
-
* -
|
|
890
|
+
* - The starting date for filtering manifests in
|
|
891
|
+
* ISO format
|
|
885
892
|
*/
|
|
886
893
|
startDate?: string;
|
|
887
894
|
/**
|
|
888
|
-
* -
|
|
895
|
+
* - The end date for filtering manifests in ISO format
|
|
889
896
|
*/
|
|
890
897
|
endDate?: string;
|
|
891
898
|
/**
|
|
892
|
-
* -
|
|
893
|
-
* shipment_id, manifest_id, dp_name, awb_no ]
|
|
899
|
+
* - Specifies the type of search to perform.
|
|
894
900
|
*/
|
|
895
901
|
searchType?: string;
|
|
896
902
|
/**
|
|
897
|
-
* -
|
|
903
|
+
* - Filter to fetch manifests for a specific store
|
|
904
|
+
* by its ID.
|
|
898
905
|
*/
|
|
899
906
|
storeId?: number;
|
|
900
907
|
/**
|
|
901
|
-
* -
|
|
908
|
+
* - The value to search for based on the
|
|
909
|
+
* selected search type.
|
|
902
910
|
*/
|
|
903
911
|
searchValue?: string;
|
|
904
912
|
/**
|
|
905
|
-
* -
|
|
913
|
+
* - A comma-separated list of courier partner IDs
|
|
914
|
+
* (DP IDs) to filter the manifests.
|
|
906
915
|
*/
|
|
907
916
|
dpIds?: string;
|
|
917
|
+
/**
|
|
918
|
+
* - The number of the page to fetch data.
|
|
919
|
+
*/
|
|
908
920
|
pageNo?: number;
|
|
921
|
+
/**
|
|
922
|
+
* - The number of records to return per page for
|
|
923
|
+
* pagination.
|
|
924
|
+
*/
|
|
909
925
|
pageSize?: number;
|
|
910
926
|
};
|
|
911
927
|
type GetOrderByIdParam = {
|
|
@@ -947,21 +963,9 @@ type GetOrdersParam = {
|
|
|
947
963
|
* specified by the search_type
|
|
948
964
|
*/
|
|
949
965
|
searchValue?: string;
|
|
950
|
-
/**
|
|
951
|
-
* - Date time in UTC timezone as per ISO format.
|
|
952
|
-
*/
|
|
953
966
|
fromDate?: string;
|
|
954
|
-
/**
|
|
955
|
-
* - Date time in UTC timezone as per ISO format.
|
|
956
|
-
*/
|
|
957
967
|
toDate?: string;
|
|
958
|
-
/**
|
|
959
|
-
* - Date time in UTC timezone as per ISO format.
|
|
960
|
-
*/
|
|
961
968
|
startDate?: string;
|
|
962
|
-
/**
|
|
963
|
-
* - Date time in UTC timezone as per ISO format.
|
|
964
|
-
*/
|
|
965
969
|
endDate?: string;
|
|
966
970
|
/**
|
|
967
971
|
* - Delivery Partner IDs to which shipments are assigned.
|
|
@@ -987,13 +991,11 @@ type GetOrdersParam = {
|
|
|
987
991
|
*/
|
|
988
992
|
allowInactive?: boolean;
|
|
989
993
|
/**
|
|
990
|
-
* -
|
|
991
|
-
*
|
|
992
|
-
*
|
|
993
|
-
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
994
|
-
* may not be recognized, leading to errors or default behavior.
|
|
994
|
+
* - Applies a date filter for listing
|
|
995
|
+
* orders. This is useful when fetching data for a specific date range while
|
|
996
|
+
* performing searches.
|
|
995
997
|
*/
|
|
996
|
-
|
|
998
|
+
enforceDateFilter?: boolean;
|
|
997
999
|
};
|
|
998
1000
|
type GetShipmentByIdParam = {
|
|
999
1001
|
/**
|
|
@@ -1017,11 +1019,11 @@ type GetShipmentByIdParam = {
|
|
|
1017
1019
|
};
|
|
1018
1020
|
type GetShipmentHistoryParam = {
|
|
1019
1021
|
/**
|
|
1020
|
-
* -
|
|
1022
|
+
* - Identifier for the shipment
|
|
1021
1023
|
*/
|
|
1022
1024
|
shipmentId?: string;
|
|
1023
1025
|
/**
|
|
1024
|
-
* -
|
|
1026
|
+
* - Identifier for a bag or product.
|
|
1025
1027
|
*/
|
|
1026
1028
|
bagId?: number;
|
|
1027
1029
|
};
|
|
@@ -1056,13 +1058,9 @@ type GetShipmentsParam = {
|
|
|
1056
1058
|
* bag_status and override lane
|
|
1057
1059
|
*/
|
|
1058
1060
|
statusOverrideLane?: boolean;
|
|
1059
|
-
/**
|
|
1060
|
-
* - Time_to_dispatch refers to estimated SLA time.
|
|
1061
|
-
*/
|
|
1062
1061
|
timeToDispatch?: number;
|
|
1063
1062
|
/**
|
|
1064
|
-
* -
|
|
1065
|
-
* be used as the target for the search operation
|
|
1063
|
+
* - Search type key
|
|
1066
1064
|
*/
|
|
1067
1065
|
searchType?: string;
|
|
1068
1066
|
/**
|
|
@@ -1148,29 +1146,13 @@ type GetShipmentsParam = {
|
|
|
1148
1146
|
*/
|
|
1149
1147
|
tags?: string;
|
|
1150
1148
|
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
|
-
*/
|
|
1165
1149
|
orderType?: string;
|
|
1166
1150
|
/**
|
|
1167
|
-
* -
|
|
1168
|
-
*
|
|
1169
|
-
*
|
|
1170
|
-
* 'shipments' groups results by shipment, while an invalid value like 'abcd'
|
|
1171
|
-
* may not be recognized, leading to errors or default behavior.
|
|
1151
|
+
* - Applies a date filter for listing
|
|
1152
|
+
* shipments. This is useful when fetching data for a specific date range
|
|
1153
|
+
* while performing searches.
|
|
1172
1154
|
*/
|
|
1173
|
-
|
|
1155
|
+
enforceDateFilter?: boolean;
|
|
1174
1156
|
};
|
|
1175
1157
|
type GetStateManagerConfigParam = {
|
|
1176
1158
|
/**
|
|
@@ -1203,6 +1185,10 @@ type InvalidateShipmentCacheParam = {
|
|
|
1203
1185
|
body: OrderPlatformModel.InvalidateShipmentCachePayload;
|
|
1204
1186
|
};
|
|
1205
1187
|
type JobDetailsParam = {
|
|
1188
|
+
/**
|
|
1189
|
+
* - A unique identifier for the batch associated
|
|
1190
|
+
* with this bulk action.
|
|
1191
|
+
*/
|
|
1206
1192
|
batchId: string;
|
|
1207
1193
|
};
|
|
1208
1194
|
type OrderUpdateParam = {
|
|
@@ -1211,9 +1197,6 @@ type OrderUpdateParam = {
|
|
|
1211
1197
|
type PostShipmentHistoryParam = {
|
|
1212
1198
|
body: OrderPlatformModel.PostShipmentHistory;
|
|
1213
1199
|
};
|
|
1214
|
-
type ProcessManifestsParam = {
|
|
1215
|
-
body: OrderPlatformModel.ProcessManifest;
|
|
1216
|
-
};
|
|
1217
1200
|
type ReassignLocationParam = {
|
|
1218
1201
|
body: OrderPlatformModel.StoreReassign;
|
|
1219
1202
|
};
|
|
@@ -1225,7 +1208,7 @@ type SendUserMobileOTPParam = {
|
|
|
1225
1208
|
};
|
|
1226
1209
|
type TrackShipmentParam = {
|
|
1227
1210
|
/**
|
|
1228
|
-
* -
|
|
1211
|
+
* - Unique identifier of a shipment on the platform.
|
|
1229
1212
|
*/
|
|
1230
1213
|
shipmentId?: string;
|
|
1231
1214
|
/**
|
|
@@ -1233,27 +1216,31 @@ type TrackShipmentParam = {
|
|
|
1233
1216
|
*/
|
|
1234
1217
|
awb?: string;
|
|
1235
1218
|
/**
|
|
1236
|
-
* - Page number
|
|
1219
|
+
* - Page number for pagination.
|
|
1237
1220
|
*/
|
|
1238
1221
|
pageNo?: number;
|
|
1239
1222
|
/**
|
|
1240
|
-
* -
|
|
1223
|
+
* - Number of records per page for pagination.
|
|
1241
1224
|
*/
|
|
1242
1225
|
pageSize?: number;
|
|
1243
1226
|
};
|
|
1244
1227
|
type UpdateAddressParam = {
|
|
1245
|
-
/**
|
|
1246
|
-
* - Unique shipment no. that is auto-generated
|
|
1247
|
-
*/
|
|
1248
1228
|
shipmentId: string;
|
|
1249
|
-
|
|
1229
|
+
name?: string;
|
|
1230
|
+
address?: string;
|
|
1231
|
+
addressType?: string;
|
|
1232
|
+
pincode?: string;
|
|
1233
|
+
phone?: string;
|
|
1234
|
+
email?: string;
|
|
1235
|
+
landmark?: string;
|
|
1236
|
+
addressCategory: string;
|
|
1237
|
+
city?: string;
|
|
1238
|
+
state?: string;
|
|
1239
|
+
country?: string;
|
|
1250
1240
|
};
|
|
1251
1241
|
type UpdatePackagingDimensionsParam = {
|
|
1252
1242
|
body: OrderPlatformModel.UpdatePackagingDimensionsPayload;
|
|
1253
1243
|
};
|
|
1254
|
-
type UpdatePaymentInfoParam = {
|
|
1255
|
-
body: OrderPlatformModel.UpdateShipmentPaymentMode;
|
|
1256
|
-
};
|
|
1257
1244
|
type UpdateShipmentLockParam = {
|
|
1258
1245
|
body: OrderPlatformModel.UpdateShipmentLockPayload;
|
|
1259
1246
|
};
|
|
@@ -1264,15 +1251,13 @@ type UpdateShipmentTrackingParam = {
|
|
|
1264
1251
|
body: OrderPlatformModel.CourierPartnerTrackingDetails;
|
|
1265
1252
|
};
|
|
1266
1253
|
type UploadConsentsParam = {
|
|
1267
|
-
|
|
1268
|
-
body: OrderPlatformModel.UploadConsent;
|
|
1254
|
+
body: OrderPlatformModel.UploadManifestConsent;
|
|
1269
1255
|
};
|
|
1270
1256
|
type VerifyMobileOTPParam = {
|
|
1271
1257
|
body: OrderPlatformModel.VerifyMobileOTP;
|
|
1272
1258
|
};
|
|
1273
1259
|
type GetAllowedTemplatesForBulkParam = any;
|
|
1274
1260
|
type GetBulkActionTemplateParam = any;
|
|
1275
|
-
type GetChannelConfigParam = any;
|
|
1276
1261
|
type GetRoleBasedActionsParam = any;
|
|
1277
1262
|
type GetStateTransitionMapParam = any;
|
|
1278
1263
|
import OrderPlatformModel = require("./OrderPlatformModel");
|