@gofynd/fdk-client-javascript 1.4.12 → 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 +2 -2
- 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 +96 -39
- package/sdk/application/Content/ContentApplicationModel.js +88 -34
- 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 +51 -19
- package/sdk/application/Theme/ThemeApplicationModel.js +47 -24
- 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/common/Clickstream.js +12 -0
- package/sdk/common/Constant.d.ts +5 -0
- package/sdk/common/Constant.js +5 -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 +99 -39
- package/sdk/partner/Theme/ThemePartnerModel.js +95 -38
- 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 +192 -164
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +371 -343
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +99 -99
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +54 -54
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +139 -116
- package/sdk/platform/Catalog/CatalogPlatformClient.js +191 -168
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1374 -749
- package/sdk/platform/Catalog/CatalogPlatformModel.js +1241 -830
- 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 +1244 -397
- package/sdk/platform/Content/ContentPlatformModel.js +526 -392
- 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 +138 -101
- package/sdk/platform/Order/OrderPlatformClient.js +267 -203
- package/sdk/platform/Order/OrderPlatformModel.d.ts +4497 -877
- package/sdk/platform/Order/OrderPlatformModel.js +2336 -812
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +147 -50
- package/sdk/platform/Order/OrderPlatformValidator.js +75 -46
- 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 +40 -13
- package/sdk/platform/Theme/ThemePlatformModel.js +38 -17
- 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
|
@@ -19,7 +19,7 @@ export = OrderPlatformValidator;
|
|
|
19
19
|
*/
|
|
20
20
|
/**
|
|
21
21
|
* @typedef BulkStateTransistionParam
|
|
22
|
-
* @property {OrderPlatformModel.
|
|
22
|
+
* @property {OrderPlatformModel.BulkStateTransistionRequestSchema} body
|
|
23
23
|
*/
|
|
24
24
|
/**
|
|
25
25
|
* @typedef CheckOrderStatusParam
|
|
@@ -43,7 +43,7 @@ export = OrderPlatformValidator;
|
|
|
43
43
|
*/
|
|
44
44
|
/**
|
|
45
45
|
* @typedef DownloadLanesReportParam
|
|
46
|
-
* @property {OrderPlatformModel.
|
|
46
|
+
* @property {OrderPlatformModel.BulkReportsDownloadRequestSchema} body
|
|
47
47
|
*/
|
|
48
48
|
/**
|
|
49
49
|
* @typedef EInvoiceRetryParam
|
|
@@ -64,7 +64,7 @@ export = OrderPlatformValidator;
|
|
|
64
64
|
/**
|
|
65
65
|
* @typedef GenerateInvoiceIDParam
|
|
66
66
|
* @property {string} invoiceType - Mention the type of invoice id to generate
|
|
67
|
-
* @property {OrderPlatformModel.
|
|
67
|
+
* @property {OrderPlatformModel.GenerateInvoiceIDRequestSchema} body
|
|
68
68
|
*/
|
|
69
69
|
/**
|
|
70
70
|
* @typedef GeneratePOSReceiptByOrderIdParam
|
|
@@ -74,7 +74,7 @@ export = OrderPlatformValidator;
|
|
|
74
74
|
*/
|
|
75
75
|
/**
|
|
76
76
|
* @typedef GenerateProcessManifestParam
|
|
77
|
-
* @property {OrderPlatformModel.
|
|
77
|
+
* @property {OrderPlatformModel.ProcessManifestRequestSchema} body
|
|
78
78
|
*/
|
|
79
79
|
/**
|
|
80
80
|
* @typedef GetAllowedStateTransitionParam
|
|
@@ -110,8 +110,8 @@ export = OrderPlatformValidator;
|
|
|
110
110
|
* @typedef GetBulkShipmentExcelFileParam
|
|
111
111
|
* @property {string} [salesChannels] - Comma separated values of sales channel ids
|
|
112
112
|
* @property {string} [dpIds] - Comma separated values of delivery partner ids
|
|
113
|
-
* @property {string} [startDate] - UTC
|
|
114
|
-
* @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.
|
|
115
115
|
* @property {string} [stores] - Comma separated values of store ids
|
|
116
116
|
* @property {string} [tags] - Comma separated values of tags
|
|
117
117
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
@@ -126,7 +126,7 @@ export = OrderPlatformValidator;
|
|
|
126
126
|
* @typedef GetFileByStatusParam
|
|
127
127
|
* @property {string} batchId
|
|
128
128
|
* @property {string} status
|
|
129
|
-
* @property {string} fileType
|
|
129
|
+
* @property {string} fileType - It contains the type of file.
|
|
130
130
|
* @property {string} [reportType]
|
|
131
131
|
*/
|
|
132
132
|
/**
|
|
@@ -142,15 +142,27 @@ export = OrderPlatformValidator;
|
|
|
142
142
|
* @property {string} [salesChannels]
|
|
143
143
|
* @property {string} [paymentMode] - Comma separated values of payment modes
|
|
144
144
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
145
|
-
* @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
|
|
146
147
|
* @property {string} [searchValue]
|
|
147
148
|
* @property {string} [tags]
|
|
148
|
-
* @property {number} [timeToDispatch]
|
|
149
|
+
* @property {number} [timeToDispatch] - Time_to_dispatch refers to estimated SLA time.
|
|
149
150
|
* @property {string} [paymentMethods]
|
|
150
151
|
* @property {boolean} [myOrders]
|
|
151
152
|
* @property {boolean} [showCrossCompanyData] - Flag to view cross & non-cross
|
|
152
153
|
* company order
|
|
153
|
-
* @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.
|
|
154
166
|
*/
|
|
155
167
|
/**
|
|
156
168
|
* @typedef GetManifestDetailsParam
|
|
@@ -208,10 +220,10 @@ export = OrderPlatformValidator;
|
|
|
208
220
|
* associated with the order
|
|
209
221
|
* @property {string} [searchValue] - Search_value is matched against the field
|
|
210
222
|
* specified by the search_type
|
|
211
|
-
* @property {string} [fromDate]
|
|
212
|
-
* @property {string} [toDate]
|
|
213
|
-
* @property {string} [startDate]
|
|
214
|
-
* @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.
|
|
215
227
|
* @property {string} [dpIds] - Delivery Partner IDs to which shipments are assigned.
|
|
216
228
|
* @property {string} [stores]
|
|
217
229
|
* @property {string} [salesChannels]
|
|
@@ -226,6 +238,11 @@ export = OrderPlatformValidator;
|
|
|
226
238
|
* @property {string} [orderType]
|
|
227
239
|
* @property {boolean} [allowInactive] - Flag indicating whether inactive
|
|
228
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.
|
|
229
246
|
*/
|
|
230
247
|
/** @typedef GetRoleBasedActionsParam */
|
|
231
248
|
/**
|
|
@@ -257,8 +274,9 @@ export = OrderPlatformValidator;
|
|
|
257
274
|
* @property {string} [bagStatus] - Comma separated values of bag statuses
|
|
258
275
|
* @property {boolean} [statusOverrideLane] - Use this flag to fetch by
|
|
259
276
|
* bag_status and override lane
|
|
260
|
-
* @property {number} [timeToDispatch]
|
|
261
|
-
* @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
|
|
262
280
|
* @property {string} [searchValue] - Search type value
|
|
263
281
|
* @property {string} [fromDate] - Start Date in DD-MM-YYYY format
|
|
264
282
|
* @property {string} [toDate] - End Date in DD-MM-YYYY format
|
|
@@ -285,7 +303,24 @@ export = OrderPlatformValidator;
|
|
|
285
303
|
* company order
|
|
286
304
|
* @property {string} [tags] - Comma separated values of tags
|
|
287
305
|
* @property {string} [customerId]
|
|
288
|
-
* @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.
|
|
289
324
|
*/
|
|
290
325
|
/**
|
|
291
326
|
* @typedef GetStateManagerConfigParam
|
|
@@ -344,30 +379,24 @@ export = OrderPlatformValidator;
|
|
|
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
|
|
367
396
|
*/
|
|
368
397
|
/**
|
|
369
398
|
* @typedef UpdateShipmentStatusParam
|
|
370
|
-
* @property {OrderPlatformModel.
|
|
399
|
+
* @property {OrderPlatformModel.UpdateShipmentStatusRequestSchema} body
|
|
371
400
|
*/
|
|
372
401
|
/**
|
|
373
402
|
* @typedef UpdateShipmentTrackingParam
|
|
@@ -489,6 +518,8 @@ declare class OrderPlatformValidator {
|
|
|
489
518
|
static updateAddress(): UpdateAddressParam;
|
|
490
519
|
/** @returns {UpdatePackagingDimensionsParam} */
|
|
491
520
|
static updatePackagingDimensions(): UpdatePackagingDimensionsParam;
|
|
521
|
+
/** @returns {UpdatePaymentInfoParam} */
|
|
522
|
+
static updatePaymentInfo(): UpdatePaymentInfoParam;
|
|
492
523
|
/** @returns {UpdateShipmentLockParam} */
|
|
493
524
|
static updateShipmentLock(): UpdateShipmentLockParam;
|
|
494
525
|
/** @returns {UpdateShipmentStatusParam} */
|
|
@@ -501,7 +532,7 @@ declare class OrderPlatformValidator {
|
|
|
501
532
|
static verifyMobileOTP(): VerifyMobileOTPParam;
|
|
502
533
|
}
|
|
503
534
|
declare namespace OrderPlatformValidator {
|
|
504
|
-
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, 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 };
|
|
505
536
|
}
|
|
506
537
|
type AddStateManagerConfigParam = {
|
|
507
538
|
body: OrderPlatformModel.TransitionConfigPayload;
|
|
@@ -540,7 +571,7 @@ type BulkListingParam = {
|
|
|
540
571
|
searchKey?: string;
|
|
541
572
|
};
|
|
542
573
|
type BulkStateTransistionParam = {
|
|
543
|
-
body: OrderPlatformModel.
|
|
574
|
+
body: OrderPlatformModel.BulkStateTransistionRequestSchema;
|
|
544
575
|
};
|
|
545
576
|
type CheckOrderStatusParam = {
|
|
546
577
|
body: OrderPlatformModel.OrderStatus;
|
|
@@ -561,7 +592,7 @@ type DownloadBulkActionTemplateParam = {
|
|
|
561
592
|
templateSlug?: string;
|
|
562
593
|
};
|
|
563
594
|
type DownloadLanesReportParam = {
|
|
564
|
-
body: OrderPlatformModel.
|
|
595
|
+
body: OrderPlatformModel.BulkReportsDownloadRequestSchema;
|
|
565
596
|
};
|
|
566
597
|
type EInvoiceRetryParam = {
|
|
567
598
|
body: OrderPlatformModel.EInvoiceRetry;
|
|
@@ -583,7 +614,7 @@ type GenerateInvoiceIDParam = {
|
|
|
583
614
|
* - Mention the type of invoice id to generate
|
|
584
615
|
*/
|
|
585
616
|
invoiceType: string;
|
|
586
|
-
body: OrderPlatformModel.
|
|
617
|
+
body: OrderPlatformModel.GenerateInvoiceIDRequestSchema;
|
|
587
618
|
};
|
|
588
619
|
type GeneratePOSReceiptByOrderIdParam = {
|
|
589
620
|
orderId: string;
|
|
@@ -591,7 +622,7 @@ type GeneratePOSReceiptByOrderIdParam = {
|
|
|
591
622
|
documentType?: string;
|
|
592
623
|
};
|
|
593
624
|
type GenerateProcessManifestParam = {
|
|
594
|
-
body: OrderPlatformModel.
|
|
625
|
+
body: OrderPlatformModel.ProcessManifestRequestSchema;
|
|
595
626
|
};
|
|
596
627
|
type GetAllowedStateTransitionParam = {
|
|
597
628
|
/**
|
|
@@ -672,11 +703,11 @@ type GetBulkShipmentExcelFileParam = {
|
|
|
672
703
|
*/
|
|
673
704
|
dpIds?: string;
|
|
674
705
|
/**
|
|
675
|
-
* - UTC
|
|
706
|
+
* - Date time in UTC timezone as per ISO format.
|
|
676
707
|
*/
|
|
677
708
|
startDate?: string;
|
|
678
709
|
/**
|
|
679
|
-
* - UTC
|
|
710
|
+
* - Date time in UTC timezone as per ISO format.
|
|
680
711
|
*/
|
|
681
712
|
endDate?: string;
|
|
682
713
|
/**
|
|
@@ -709,6 +740,9 @@ type GetBulkShipmentExcelFileParam = {
|
|
|
709
740
|
type GetFileByStatusParam = {
|
|
710
741
|
batchId: string;
|
|
711
742
|
status: string;
|
|
743
|
+
/**
|
|
744
|
+
* - It contains the type of file.
|
|
745
|
+
*/
|
|
712
746
|
fileType: string;
|
|
713
747
|
reportType?: string;
|
|
714
748
|
};
|
|
@@ -754,9 +788,16 @@ type GetLaneConfigParam = {
|
|
|
754
788
|
* - Comma separated values of bag statuses
|
|
755
789
|
*/
|
|
756
790
|
bagStatus?: string;
|
|
791
|
+
/**
|
|
792
|
+
* - Search_type refers to the field that will
|
|
793
|
+
* be used as the target for the search operation
|
|
794
|
+
*/
|
|
757
795
|
searchType?: string;
|
|
758
796
|
searchValue?: string;
|
|
759
797
|
tags?: string;
|
|
798
|
+
/**
|
|
799
|
+
* - Time_to_dispatch refers to estimated SLA time.
|
|
800
|
+
*/
|
|
760
801
|
timeToDispatch?: number;
|
|
761
802
|
paymentMethods?: string;
|
|
762
803
|
myOrders?: boolean;
|
|
@@ -765,6 +806,20 @@ type GetLaneConfigParam = {
|
|
|
765
806
|
* company order
|
|
766
807
|
*/
|
|
767
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
|
+
*/
|
|
768
823
|
orderType?: string;
|
|
769
824
|
};
|
|
770
825
|
type GetManifestDetailsParam = {
|
|
@@ -892,9 +947,21 @@ type GetOrdersParam = {
|
|
|
892
947
|
* specified by the search_type
|
|
893
948
|
*/
|
|
894
949
|
searchValue?: string;
|
|
950
|
+
/**
|
|
951
|
+
* - Date time in UTC timezone as per ISO format.
|
|
952
|
+
*/
|
|
895
953
|
fromDate?: string;
|
|
954
|
+
/**
|
|
955
|
+
* - Date time in UTC timezone as per ISO format.
|
|
956
|
+
*/
|
|
896
957
|
toDate?: string;
|
|
958
|
+
/**
|
|
959
|
+
* - Date time in UTC timezone as per ISO format.
|
|
960
|
+
*/
|
|
897
961
|
startDate?: string;
|
|
962
|
+
/**
|
|
963
|
+
* - Date time in UTC timezone as per ISO format.
|
|
964
|
+
*/
|
|
898
965
|
endDate?: string;
|
|
899
966
|
/**
|
|
900
967
|
* - Delivery Partner IDs to which shipments are assigned.
|
|
@@ -919,6 +986,14 @@ type GetOrdersParam = {
|
|
|
919
986
|
* shipments are allowed
|
|
920
987
|
*/
|
|
921
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;
|
|
922
997
|
};
|
|
923
998
|
type GetShipmentByIdParam = {
|
|
924
999
|
/**
|
|
@@ -981,9 +1056,13 @@ type GetShipmentsParam = {
|
|
|
981
1056
|
* bag_status and override lane
|
|
982
1057
|
*/
|
|
983
1058
|
statusOverrideLane?: boolean;
|
|
1059
|
+
/**
|
|
1060
|
+
* - Time_to_dispatch refers to estimated SLA time.
|
|
1061
|
+
*/
|
|
984
1062
|
timeToDispatch?: number;
|
|
985
1063
|
/**
|
|
986
|
-
* -
|
|
1064
|
+
* - Search_type refers to the field that will
|
|
1065
|
+
* be used as the target for the search operation
|
|
987
1066
|
*/
|
|
988
1067
|
searchType?: string;
|
|
989
1068
|
/**
|
|
@@ -1069,7 +1148,29 @@ type GetShipmentsParam = {
|
|
|
1069
1148
|
*/
|
|
1070
1149
|
tags?: string;
|
|
1071
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
|
+
*/
|
|
1072
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;
|
|
1073
1174
|
};
|
|
1074
1175
|
type GetStateManagerConfigParam = {
|
|
1075
1176
|
/**
|
|
@@ -1141,27 +1242,23 @@ type TrackShipmentParam = {
|
|
|
1141
1242
|
pageSize?: number;
|
|
1142
1243
|
};
|
|
1143
1244
|
type UpdateAddressParam = {
|
|
1245
|
+
/**
|
|
1246
|
+
* - Unique shipment no. that is auto-generated
|
|
1247
|
+
*/
|
|
1144
1248
|
shipmentId: string;
|
|
1145
|
-
|
|
1146
|
-
address?: string;
|
|
1147
|
-
addressType?: string;
|
|
1148
|
-
pincode?: string;
|
|
1149
|
-
phone?: string;
|
|
1150
|
-
email?: string;
|
|
1151
|
-
landmark?: string;
|
|
1152
|
-
addressCategory: string;
|
|
1153
|
-
city?: string;
|
|
1154
|
-
state?: string;
|
|
1155
|
-
country?: string;
|
|
1249
|
+
body: OrderPlatformModel.UpdateAddressRequestBody;
|
|
1156
1250
|
};
|
|
1157
1251
|
type UpdatePackagingDimensionsParam = {
|
|
1158
1252
|
body: OrderPlatformModel.UpdatePackagingDimensionsPayload;
|
|
1159
1253
|
};
|
|
1254
|
+
type UpdatePaymentInfoParam = {
|
|
1255
|
+
body: OrderPlatformModel.UpdateShipmentPaymentMode;
|
|
1256
|
+
};
|
|
1160
1257
|
type UpdateShipmentLockParam = {
|
|
1161
1258
|
body: OrderPlatformModel.UpdateShipmentLockPayload;
|
|
1162
1259
|
};
|
|
1163
1260
|
type UpdateShipmentStatusParam = {
|
|
1164
|
-
body: OrderPlatformModel.
|
|
1261
|
+
body: OrderPlatformModel.UpdateShipmentStatusRequestSchema;
|
|
1165
1262
|
};
|
|
1166
1263
|
type UpdateShipmentTrackingParam = {
|
|
1167
1264
|
body: OrderPlatformModel.CourierPartnerTrackingDetails;
|