@gofynd/fdk-client-javascript 1.0.1 → 1.0.3
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/documentation/application/CART.md +5934 -4502
- package/documentation/application/CATALOG.md +6338 -7245
- package/documentation/application/COMMON.md +95 -222
- package/documentation/application/COMMUNICATION.md +106 -186
- package/documentation/application/CONFIGURATION.md +903 -1597
- package/documentation/application/CONTENT.md +562 -1270
- package/documentation/application/FILESTORAGE.md +84 -220
- package/documentation/application/LEAD.md +314 -660
- package/documentation/application/LOGISTIC.md +229 -305
- package/documentation/application/ORDER.md +642 -1137
- package/documentation/application/PAYMENT.md +2285 -3031
- package/documentation/application/POSCART.md +6079 -4642
- package/documentation/application/REWARDS.md +94 -248
- package/documentation/application/SHARE.md +152 -250
- package/documentation/application/THEME.md +952 -1235
- package/documentation/application/USER.md +1228 -1765
- package/documentation/platform/ANALYTICS.md +207 -349
- package/documentation/platform/AUDITTRAIL.md +121 -204
- package/documentation/platform/BILLING.md +865 -1376
- package/documentation/platform/CART.md +2814 -3662
- package/documentation/platform/CATALOG.md +15266 -17619
- package/documentation/platform/COMMON.md +95 -222
- package/documentation/platform/COMMUNICATION.md +1632 -2380
- package/documentation/platform/COMPANYPROFILE.md +572 -957
- package/documentation/platform/CONFIGURATION.md +3050 -4073
- package/documentation/platform/CONTENT.md +3509 -4121
- package/documentation/platform/DISCOUNT.md +140 -236
- package/documentation/platform/FILESTORAGE.md +187 -323
- package/documentation/platform/INVENTORY.md +268 -911
- package/documentation/platform/LEAD.md +2195 -2541
- package/documentation/platform/ORDER.md +3750 -5636
- package/documentation/platform/PARTNER.md +9 -36
- package/documentation/platform/PAYMENT.md +903 -1213
- package/documentation/platform/REWARDS.md +183 -347
- package/documentation/platform/SHARE.md +120 -213
- package/documentation/platform/THEME.md +12956 -13239
- package/documentation/platform/USER.md +975 -1120
- package/documentation/platform/WEBHOOK.md +78 -184
- package/documentation/public/CONFIGURATION.md +95 -222
- package/documentation/public/INVENTORY.md +100 -282
- package/documentation/public/WEBHOOK.md +27 -133
- package/package.json +1 -1
- package/sdk/application/ApplicationConfig.js +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +243 -243
- package/sdk/application/Cart/CartApplicationClient.js +1058 -547
- package/sdk/application/Cart/CartApplicationModel.d.ts +64 -63
- package/sdk/application/Cart/CartApplicationModel.js +489 -886
- package/sdk/application/Cart/CartApplicationValidator.d.ts +17 -17
- package/sdk/application/Cart/CartApplicationValidator.js +98 -98
- package/sdk/application/Catalog/CatalogApplicationClient.d.ts +358 -358
- package/sdk/application/Catalog/CatalogApplicationClient.js +1545 -949
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +90 -90
- package/sdk/application/Catalog/CatalogApplicationModel.js +692 -1258
- package/sdk/application/Catalog/CatalogApplicationValidator.d.ts +19 -19
- package/sdk/application/Catalog/CatalogApplicationValidator.js +110 -110
- package/sdk/application/Common/CommonApplicationClient.d.ts +13 -13
- package/sdk/application/Common/CommonApplicationClient.js +76 -36
- package/sdk/application/Common/CommonApplicationModel.d.ts +12 -12
- package/sdk/application/Common/CommonApplicationModel.js +83 -160
- package/sdk/application/Common/CommonApplicationValidator.d.ts +1 -1
- package/sdk/application/Common/CommonApplicationValidator.js +6 -6
- package/sdk/application/Communication/CommunicationApplicationClient.d.ts +11 -11
- package/sdk/application/Communication/CommunicationApplicationClient.js +92 -31
- package/sdk/application/Communication/CommunicationApplicationModel.d.ts +6 -6
- package/sdk/application/Communication/CommunicationApplicationModel.js +38 -83
- package/sdk/application/Communication/CommunicationApplicationValidator.d.ts +1 -1
- package/sdk/application/Communication/CommunicationApplicationValidator.js +4 -4
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +116 -116
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +638 -312
- package/sdk/application/Configuration/ConfigurationApplicationModel.d.ts +85 -85
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +480 -851
- package/sdk/application/Configuration/ConfigurationApplicationValidator.d.ts +8 -8
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +33 -33
- package/sdk/application/Content/ContentApplicationClient.d.ts +67 -67
- package/sdk/application/Content/ContentApplicationClient.js +581 -213
- package/sdk/application/Content/ContentApplicationModel.d.ts +76 -75
- package/sdk/application/Content/ContentApplicationModel.js +468 -875
- package/sdk/application/Content/ContentApplicationValidator.d.ts +5 -5
- package/sdk/application/Content/ContentApplicationValidator.js +24 -24
- package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +25 -25
- package/sdk/application/FileStorage/FileStorageApplicationClient.js +121 -59
- package/sdk/application/FileStorage/FileStorageApplicationModel.d.ts +13 -13
- package/sdk/application/FileStorage/FileStorageApplicationModel.js +86 -169
- package/sdk/application/FileStorage/FileStorageApplicationValidator.d.ts +1 -1
- package/sdk/application/FileStorage/FileStorageApplicationValidator.js +7 -7
- package/sdk/application/Lead/LeadApplicationClient.d.ts +24 -24
- package/sdk/application/Lead/LeadApplicationClient.js +230 -96
- package/sdk/application/Lead/LeadApplicationModel.d.ts +35 -35
- package/sdk/application/Lead/LeadApplicationModel.js +267 -474
- package/sdk/application/Lead/LeadApplicationValidator.d.ts +2 -2
- package/sdk/application/Lead/LeadApplicationValidator.js +11 -11
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +30 -19
- package/sdk/application/Logistic/LogisticApplicationClient.js +196 -47
- package/sdk/application/Logistic/LogisticApplicationModel.d.ts +17 -14
- package/sdk/application/Logistic/LogisticApplicationModel.js +133 -201
- package/sdk/application/Logistic/LogisticApplicationValidator.d.ts +3 -2
- package/sdk/application/Logistic/LogisticApplicationValidator.js +14 -8
- package/sdk/application/Order/OrderApplicationClient.d.ts +86 -86
- package/sdk/application/Order/OrderApplicationClient.js +448 -215
- package/sdk/application/Order/OrderApplicationModel.d.ts +50 -50
- package/sdk/application/Order/OrderApplicationModel.js +357 -661
- package/sdk/application/Order/OrderApplicationValidator.d.ts +7 -7
- package/sdk/application/Order/OrderApplicationValidator.js +28 -28
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +318 -318
- package/sdk/application/Payment/PaymentApplicationClient.js +1525 -750
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +72 -72
- package/sdk/application/Payment/PaymentApplicationModel.js +565 -1033
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +28 -28
- package/sdk/application/Payment/PaymentApplicationValidator.js +107 -107
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +254 -254
- package/sdk/application/PosCart/PosCartApplicationClient.js +1137 -606
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +61 -60
- package/sdk/application/PosCart/PosCartApplicationModel.js +477 -873
- package/sdk/application/PosCart/PosCartApplicationValidator.d.ts +18 -18
- package/sdk/application/PosCart/PosCartApplicationValidator.js +103 -103
- package/sdk/application/Rewards/RewardsApplicationClient.d.ts +27 -27
- package/sdk/application/Rewards/RewardsApplicationClient.js +253 -113
- package/sdk/application/Rewards/RewardsApplicationModel.d.ts +14 -14
- package/sdk/application/Rewards/RewardsApplicationModel.js +96 -191
- package/sdk/application/Rewards/RewardsApplicationValidator.d.ts +3 -3
- package/sdk/application/Rewards/RewardsApplicationValidator.js +12 -12
- package/sdk/application/Share/ShareApplicationClient.d.ts +37 -37
- package/sdk/application/Share/ShareApplicationClient.js +221 -96
- package/sdk/application/Share/ShareApplicationModel.d.ts +8 -8
- package/sdk/application/Share/ShareApplicationModel.js +63 -123
- package/sdk/application/Share/ShareApplicationValidator.d.ts +4 -4
- package/sdk/application/Share/ShareApplicationValidator.js +12 -12
- package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
- package/sdk/application/Theme/ThemeApplicationClient.js +115 -37
- package/sdk/application/Theme/ThemeApplicationModel.d.ts +34 -34
- package/sdk/application/Theme/ThemeApplicationModel.js +190 -336
- package/sdk/application/Theme/ThemeApplicationValidator.d.ts +1 -1
- package/sdk/application/Theme/ThemeApplicationValidator.js +4 -4
- package/sdk/application/User/UserApplicationClient.d.ts +280 -280
- package/sdk/application/User/UserApplicationClient.js +1201 -543
- package/sdk/application/User/UserApplicationModel.d.ts +79 -72
- package/sdk/application/User/UserApplicationModel.js +440 -689
- package/sdk/application/User/UserApplicationValidator.d.ts +24 -24
- package/sdk/application/User/UserApplicationValidator.js +89 -89
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +55 -47
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +308 -151
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +20 -20
- package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
- package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
- package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +11 -11
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +95 -178
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +16 -12
- package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +131 -44
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +10 -10
- package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +50 -89
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -1
- package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +6 -6
- package/sdk/platform/Billing/BillingPlatformClient.d.ts +68 -56
- package/sdk/platform/Billing/BillingPlatformClient.js +416 -171
- package/sdk/platform/Billing/BillingPlatformModel.d.ts +40 -40
- package/sdk/platform/Billing/BillingPlatformModel.js +342 -668
- package/sdk/platform/Billing/BillingPlatformValidator.d.ts +8 -8
- package/sdk/platform/Billing/BillingPlatformValidator.js +25 -25
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +176 -159
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +837 -500
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +11 -11
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +63 -63
- package/sdk/platform/Cart/CartPlatformModel.d.ts +86 -85
- package/sdk/platform/Cart/CartPlatformModel.js +677 -1211
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +582 -529
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +2642 -1533
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +40 -40
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +175 -175
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +708 -590
- package/sdk/platform/Catalog/CatalogPlatformClient.js +3103 -1362
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +293 -284
- package/sdk/platform/Catalog/CatalogPlatformModel.js +2149 -3660
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +66 -64
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +235 -216
- package/sdk/platform/Common/CommonPlatformClient.d.ts +14 -12
- package/sdk/platform/Common/CommonPlatformClient.js +80 -37
- package/sdk/platform/Common/CommonPlatformModel.d.ts +12 -12
- package/sdk/platform/Common/CommonPlatformModel.js +83 -160
- package/sdk/platform/Common/CommonPlatformValidator.d.ts +1 -1
- package/sdk/platform/Common/CommonPlatformValidator.js +6 -6
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +333 -293
- package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1687 -855
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +30 -30
- package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +87 -87
- package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
- package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +67 -67
- package/sdk/platform/Communication/CommunicationPlatformModel.js +522 -974
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +70 -57
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +463 -182
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +28 -28
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +294 -557
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +7 -7
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +24 -24
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +175 -137
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +1168 -521
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +22 -21
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +69 -63
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +137 -119
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +691 -316
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +148 -146
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +854 -1508
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +9 -9
- package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +38 -38
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +542 -461
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +2600 -1160
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +50 -49
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +159 -152
- package/sdk/platform/Content/ContentPlatformModel.d.ts +79 -75
- package/sdk/platform/Content/ContentPlatformModel.js +486 -867
- package/sdk/platform/Discount/DiscountPlatformClient.d.ts +72 -61
- package/sdk/platform/Discount/DiscountPlatformClient.js +424 -198
- package/sdk/platform/Discount/DiscountPlatformModel.d.ts +7 -7
- package/sdk/platform/Discount/DiscountPlatformModel.js +60 -121
- package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +6 -6
- package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -29
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +26 -22
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +145 -59
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +8 -8
- package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +58 -52
- package/sdk/platform/FileStorage/FileStoragePlatformClient.js +240 -114
- package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -13
- package/sdk/platform/FileStorage/FileStoragePlatformModel.js +86 -169
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +3 -3
- package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +11 -11
- package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +76 -63
- package/sdk/platform/Inventory/InventoryPlatformClient.js +461 -197
- package/sdk/platform/Inventory/InventoryPlatformModel.d.ts +30 -30
- package/sdk/platform/Inventory/InventoryPlatformModel.js +497 -964
- package/sdk/platform/Inventory/InventoryPlatformValidator.d.ts +7 -7
- package/sdk/platform/Inventory/InventoryPlatformValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +84 -71
- package/sdk/platform/Lead/LeadPlatformApplicationClient.js +441 -182
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +7 -7
- package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +28 -28
- package/sdk/platform/Lead/LeadPlatformClient.d.ts +86 -75
- package/sdk/platform/Lead/LeadPlatformClient.js +434 -212
- package/sdk/platform/Lead/LeadPlatformModel.d.ts +35 -35
- package/sdk/platform/Lead/LeadPlatformModel.js +267 -474
- package/sdk/platform/Lead/LeadPlatformValidator.d.ts +6 -6
- package/sdk/platform/Lead/LeadPlatformValidator.js +24 -24
- package/sdk/platform/OAuthClient.js +8 -8
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +14 -11
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +113 -49
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -6
- package/sdk/platform/Order/OrderPlatformClient.d.ts +367 -315
- package/sdk/platform/Order/OrderPlatformClient.js +1775 -893
- package/sdk/platform/Order/OrderPlatformModel.d.ts +198 -192
- package/sdk/platform/Order/OrderPlatformModel.js +1591 -2822
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +32 -32
- package/sdk/platform/Order/OrderPlatformValidator.js +160 -155
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
- package/sdk/platform/Partner/PartnerPlatformModel.js +6 -22
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +65 -54
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +395 -164
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +6 -6
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +23 -23
- package/sdk/platform/Payment/PaymentPlatformClient.d.ts +55 -45
- package/sdk/platform/Payment/PaymentPlatformClient.js +362 -147
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -27
- package/sdk/platform/Payment/PaymentPlatformModel.js +220 -408
- package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +4 -4
- package/sdk/platform/Payment/PaymentPlatformValidator.js +21 -21
- package/sdk/platform/PlatformApplicationClient.d.ts +1496 -10153
- package/sdk/platform/PlatformApplicationClient.js +1584 -13691
- package/sdk/platform/PlatformClient.d.ts +7918 -7666
- package/sdk/platform/PlatformClient.js +8701 -9926
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +91 -78
- package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +507 -253
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +8 -8
- package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +34 -34
- package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +15 -15
- package/sdk/platform/Rewards/RewardsPlatformModel.js +92 -194
- package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +16 -12
- package/sdk/platform/Share/SharePlatformApplicationClient.js +130 -52
- package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +1 -1
- package/sdk/platform/Share/SharePlatformApplicationValidator.js +6 -6
- package/sdk/platform/Share/SharePlatformModel.d.ts +8 -8
- package/sdk/platform/Share/SharePlatformModel.js +60 -118
- package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +148 -124
- package/sdk/platform/Theme/ThemePlatformApplicationClient.js +770 -295
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +15 -15
- package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +44 -44
- package/sdk/platform/Theme/ThemePlatformModel.d.ts +34 -34
- package/sdk/platform/Theme/ThemePlatformModel.js +190 -336
- package/sdk/platform/User/UserPlatformApplicationClient.d.ts +146 -67
- package/sdk/platform/User/UserPlatformApplicationClient.js +742 -155
- package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +12 -7
- package/sdk/platform/User/UserPlatformApplicationValidator.js +61 -23
- package/sdk/platform/User/UserPlatformModel.d.ts +79 -72
- package/sdk/platform/User/UserPlatformModel.js +440 -689
- package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +35 -29
- package/sdk/platform/Webhook/WebhookPlatformClient.js +218 -91
- package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +7 -7
- package/sdk/platform/Webhook/WebhookPlatformModel.js +68 -136
- package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +3 -3
- package/sdk/platform/Webhook/WebhookPlatformValidator.js +14 -14
- package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +13 -13
- package/sdk/public/Configuration/ConfigurationPublicClient.js +81 -38
- package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +12 -12
- package/sdk/public/Configuration/ConfigurationPublicModel.js +85 -162
- package/sdk/public/Configuration/ConfigurationPublicValidator.d.ts +1 -1
- package/sdk/public/Configuration/ConfigurationPublicValidator.js +6 -6
- package/sdk/public/Inventory/InventoryPublicClient.d.ts +34 -34
- package/sdk/public/Inventory/InventoryPublicClient.js +228 -105
- package/sdk/public/Inventory/InventoryPublicModel.d.ts +10 -10
- package/sdk/public/Inventory/InventoryPublicModel.js +119 -245
- package/sdk/public/Inventory/InventoryPublicValidator.d.ts +3 -3
- package/sdk/public/Inventory/InventoryPublicValidator.js +15 -15
- package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
- package/sdk/public/Webhook/WebhookPublicModel.d.ts +7 -7
- package/sdk/public/Webhook/WebhookPublicModel.js +68 -136
- package/tests/application/catalog.spec.js +7 -0
|
@@ -8,10 +8,11 @@
|
|
|
8
8
|
## Logistic Methods
|
|
9
9
|
Logistics Promise Engine APIs allows you to configure zone, pincode, TAT, logistics and many more useful features.
|
|
10
10
|
|
|
11
|
-
* [getPincodeCity](#getpincodecity)
|
|
12
|
-
* [getTatProduct](#gettatproduct)
|
|
13
11
|
* [getAllCountries](#getallcountries)
|
|
12
|
+
* [getOptimalLocations](#getoptimallocations)
|
|
13
|
+
* [getPincodeCity](#getpincodecity)
|
|
14
14
|
* [getPincodeZones](#getpincodezones)
|
|
15
|
+
* [getTatProduct](#gettatproduct)
|
|
15
16
|
|
|
16
17
|
|
|
17
18
|
|
|
@@ -20,6 +21,112 @@ Logistics Promise Engine APIs allows you to configure zone, pincode, TAT, logist
|
|
|
20
21
|
|
|
21
22
|
|
|
22
23
|
|
|
24
|
+
### getAllCountries
|
|
25
|
+
Get Country List
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
```javascript
|
|
30
|
+
// Promise
|
|
31
|
+
const promise = logistic.getAllCountries();
|
|
32
|
+
|
|
33
|
+
// Async/Await
|
|
34
|
+
const data = await logistic.getAllCountries();
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
Get all countries
|
|
43
|
+
|
|
44
|
+
*Returned Response:*
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
[CountryListResponse](#CountryListResponse)
|
|
50
|
+
|
|
51
|
+
Get Country List
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
<details>
|
|
57
|
+
<summary><i> Example:</i></summary>
|
|
58
|
+
|
|
59
|
+
```json
|
|
60
|
+
|
|
61
|
+
```
|
|
62
|
+
</details>
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
### getOptimalLocations
|
|
76
|
+
GET zone from the Pincode.
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
```javascript
|
|
81
|
+
// Promise
|
|
82
|
+
const promise = logistic.getOptimalLocations({ body : value });
|
|
83
|
+
|
|
84
|
+
// Async/Await
|
|
85
|
+
const data = await logistic.getOptimalLocations({ body : value });
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
| Argument | Type | Required | Description |
|
|
93
|
+
| --------- | ----- | -------- | ----------- |
|
|
94
|
+
| body | [ReAssignStoreRequest](#ReAssignStoreRequest) | yes | Request body |
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
This API returns zone from the Pincode View.
|
|
98
|
+
|
|
99
|
+
*Returned Response:*
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
[ReAssignStoreResponse](#ReAssignStoreResponse)
|
|
105
|
+
|
|
106
|
+
Response status_code
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
<details>
|
|
112
|
+
<summary><i> Example:</i></summary>
|
|
113
|
+
|
|
114
|
+
```json
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
</details>
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
---
|
|
128
|
+
|
|
129
|
+
|
|
23
130
|
### getPincodeCity
|
|
24
131
|
Get Pincode API
|
|
25
132
|
|
|
@@ -108,7 +215,14 @@ Get pincode data
|
|
|
108
215
|
"display_name": "Thane",
|
|
109
216
|
"uid": "city:INDIA|MAHARASHTRA|MUMBAI"
|
|
110
217
|
}
|
|
111
|
-
]
|
|
218
|
+
],
|
|
219
|
+
"lat_long": {
|
|
220
|
+
"type": "Point",
|
|
221
|
+
"coordinates": [
|
|
222
|
+
3.8858955,
|
|
223
|
+
7.2272335
|
|
224
|
+
]
|
|
225
|
+
}
|
|
112
226
|
}
|
|
113
227
|
],
|
|
114
228
|
"request_uuid": "fce9f431215e71c9ee0e86e792ae1dce4",
|
|
@@ -164,6 +278,61 @@ Get pincode data
|
|
|
164
278
|
|
|
165
279
|
|
|
166
280
|
|
|
281
|
+
---
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
### getPincodeZones
|
|
285
|
+
GET zone from the Pincode.
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
```javascript
|
|
290
|
+
// Promise
|
|
291
|
+
const promise = logistic.getPincodeZones({ body : value });
|
|
292
|
+
|
|
293
|
+
// Async/Await
|
|
294
|
+
const data = await logistic.getPincodeZones({ body : value });
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
| Argument | Type | Required | Description |
|
|
302
|
+
| --------- | ----- | -------- | ----------- |
|
|
303
|
+
| body | [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest) | yes | Request body |
|
|
304
|
+
|
|
305
|
+
|
|
306
|
+
This API returns zone from the Pincode View.
|
|
307
|
+
|
|
308
|
+
*Returned Response:*
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
[GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
314
|
+
|
|
315
|
+
Response status_code
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
<details>
|
|
321
|
+
<summary><i> Example:</i></summary>
|
|
322
|
+
|
|
323
|
+
```json
|
|
324
|
+
|
|
325
|
+
```
|
|
326
|
+
</details>
|
|
327
|
+
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
167
336
|
---
|
|
168
337
|
|
|
169
338
|
|
|
@@ -329,434 +498,189 @@ Get TAT data
|
|
|
329
498
|
---
|
|
330
499
|
|
|
331
500
|
|
|
332
|
-
### getAllCountries
|
|
333
|
-
Get Country List
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
```javascript
|
|
338
|
-
// Promise
|
|
339
|
-
const promise = logistic.getAllCountries();
|
|
340
|
-
|
|
341
|
-
// Async/Await
|
|
342
|
-
const data = await logistic.getAllCountries();
|
|
343
|
-
```
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
Get all countries
|
|
351
|
-
|
|
352
|
-
*Returned Response:*
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
[CountryListResponse](#CountryListResponse)
|
|
358
|
-
|
|
359
|
-
Get Country List
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
<details>
|
|
365
|
-
<summary><i> Example:</i></summary>
|
|
366
|
-
|
|
367
|
-
```json
|
|
368
|
-
|
|
369
|
-
```
|
|
370
|
-
</details>
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
501
|
|
|
502
|
+
### Schemas
|
|
376
503
|
|
|
377
504
|
|
|
505
|
+
#### [CountryEntityResponse](#CountryEntityResponse)
|
|
378
506
|
|
|
507
|
+
| Properties | Type | Nullable | Description |
|
|
508
|
+
| ---------- | ---- | -------- | ----------- || display_name | string | no | || is_active | boolean | no | || logistics | [LogisticsResponse](#LogisticsResponse) | no | || meta | [CountryMetaResponse](#CountryMetaResponse) | no | || name | string | no | || parent_id | string | no | || sub_type | string | no | || type | string | no | || uid | string | no | |
|
|
379
509
|
|
|
380
510
|
---
|
|
381
511
|
|
|
512
|
+
#### [CountryListResponse](#CountryListResponse)
|
|
382
513
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
```javascript
|
|
389
|
-
// Promise
|
|
390
|
-
const promise = logistic.getPincodeZones({ body : value });
|
|
391
|
-
|
|
392
|
-
// Async/Await
|
|
393
|
-
const data = await logistic.getPincodeZones({ body : value });
|
|
394
|
-
```
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
| Argument | Type | Required | Description |
|
|
401
|
-
| --------- | ----- | -------- | ----------- |
|
|
402
|
-
| body | [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest) | yes | Request body |
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
This API returns zone from the Pincode View.
|
|
406
|
-
|
|
407
|
-
*Returned Response:*
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
[GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
413
|
-
|
|
414
|
-
Response status_code
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
<details>
|
|
420
|
-
<summary><i> Example:</i></summary>
|
|
421
|
-
|
|
422
|
-
```json
|
|
423
|
-
|
|
424
|
-
```
|
|
425
|
-
</details>
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
514
|
+
| Properties | Type | Nullable | Description |
|
|
515
|
+
| ---------- | ---- | -------- | ----------- || results | [[CountryEntityResponse](#CountryEntityResponse)] | no | |
|
|
434
516
|
|
|
435
517
|
---
|
|
436
518
|
|
|
519
|
+
#### [CountryMetaResponse](#CountryMetaResponse)
|
|
437
520
|
|
|
521
|
+
| Properties | Type | Nullable | Description |
|
|
522
|
+
| ---------- | ---- | -------- | ----------- || country_code | string | no | || isd_code | string | no | |
|
|
438
523
|
|
|
439
|
-
|
|
524
|
+
---
|
|
440
525
|
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
#### [CountryMetaResponse](#CountryMetaResponse)
|
|
526
|
+
#### [DP](#DP)
|
|
444
527
|
|
|
445
528
|
| Properties | Type | Nullable | Description |
|
|
446
|
-
| ---------- | ---- | -------- | ----------- |
|
|
447
|
-
| isd_code | string | no | |
|
|
448
|
-
| country_code | string | no | |
|
|
529
|
+
| ---------- | ---- | -------- | ----------- || area_code | string | no | || assign_dp_from_sb | boolean | no | || external_account_id | string | no | || fm_priority | number | yes | || internal_account_id | string | no | || lm_priority | number | yes | || operations | [string] | yes | || payment_mode | string | yes | || rvp_priority | number | yes | || transport_mode | string | no | |
|
|
449
530
|
|
|
450
531
|
---
|
|
451
532
|
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
#### [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse)
|
|
533
|
+
#### [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest)
|
|
456
534
|
|
|
457
535
|
| Properties | Type | Nullable | Description |
|
|
458
|
-
| ---------- | ---- | -------- | ----------- |
|
|
459
|
-
| type | string | no | |
|
|
460
|
-
| message | string | no | |
|
|
461
|
-
| value | string | no | |
|
|
536
|
+
| ---------- | ---- | -------- | ----------- || country | string | yes | || pincode | string | yes | |
|
|
462
537
|
|
|
463
538
|
---
|
|
464
539
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
#### [PincodeMetaResponse](#PincodeMetaResponse)
|
|
540
|
+
#### [GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
469
541
|
|
|
470
542
|
| Properties | Type | Nullable | Description |
|
|
471
|
-
| ---------- | ---- | -------- | ----------- |
|
|
472
|
-
| zone | string | no | |
|
|
473
|
-
| internal_zone_id | number | no | |
|
|
543
|
+
| ---------- | ---- | -------- | ----------- || serviceability_type | string | yes | || zones | [string] | yes | |
|
|
474
544
|
|
|
475
545
|
---
|
|
476
546
|
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
#### [PincodeParentsResponse](#PincodeParentsResponse)
|
|
547
|
+
#### [LogisticsResponse](#LogisticsResponse)
|
|
481
548
|
|
|
482
549
|
| Properties | Type | Nullable | Description |
|
|
483
|
-
| ---------- | ---- | -------- | ----------- |
|
|
484
|
-
| sub_type | string | no | |
|
|
485
|
-
| display_name | string | no | |
|
|
486
|
-
| uid | string | no | |
|
|
487
|
-
| name | string | no | |
|
|
550
|
+
| ---------- | ---- | -------- | ----------- || dp | [String: [DP](#DP)] | no | |
|
|
488
551
|
|
|
489
552
|
---
|
|
490
553
|
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
#### [PincodeDataResponse](#PincodeDataResponse)
|
|
554
|
+
#### [PincodeApiResponse](#PincodeApiResponse)
|
|
495
555
|
|
|
496
556
|
| Properties | Type | Nullable | Description |
|
|
497
|
-
| ---------- | ---- | -------- | ----------- |
|
|
498
|
-
| meta_code | [CountryMetaResponse](#CountryMetaResponse) | no | |
|
|
499
|
-
| sub_type | string | no | |
|
|
500
|
-
| error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | |
|
|
501
|
-
| display_name | string | no | |
|
|
502
|
-
| uid | string | no | |
|
|
503
|
-
| meta | [PincodeMetaResponse](#PincodeMetaResponse) | no | |
|
|
504
|
-
| parents | [[PincodeParentsResponse](#PincodeParentsResponse)] | no | |
|
|
505
|
-
| name | string | no | |
|
|
557
|
+
| ---------- | ---- | -------- | ----------- || data | [[PincodeDataResponse](#PincodeDataResponse)] | no | || error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | || success | boolean | yes | |
|
|
506
558
|
|
|
507
559
|
---
|
|
508
560
|
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
#### [PincodeApiResponse](#PincodeApiResponse)
|
|
561
|
+
#### [PincodeDataResponse](#PincodeDataResponse)
|
|
513
562
|
|
|
514
563
|
| Properties | Type | Nullable | Description |
|
|
515
|
-
| ---------- | ---- | -------- | ----------- |
|
|
516
|
-
| data | [[PincodeDataResponse](#PincodeDataResponse)] | no | |
|
|
517
|
-
| error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | |
|
|
518
|
-
| success | boolean | yes | |
|
|
564
|
+
| ---------- | ---- | -------- | ----------- || display_name | string | no | || error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | || lat_long | [PincodeLatLongData](#PincodeLatLongData) | no | || meta | [PincodeMetaResponse](#PincodeMetaResponse) | no | || meta_code | [CountryMetaResponse](#CountryMetaResponse) | no | || name | string | no | || parents | [[PincodeParentsResponse](#PincodeParentsResponse)] | no | || sub_type | string | no | || uid | string | no | |
|
|
519
565
|
|
|
520
566
|
---
|
|
521
567
|
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
#### [TATCategoryRequest](#TATCategoryRequest)
|
|
568
|
+
#### [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse)
|
|
526
569
|
|
|
527
570
|
| Properties | Type | Nullable | Description |
|
|
528
|
-
| ---------- | ---- | -------- | ----------- |
|
|
529
|
-
| level | string | no | |
|
|
530
|
-
| id | number | no | |
|
|
571
|
+
| ---------- | ---- | -------- | ----------- || message | string | no | || type | string | no | || value | string | no | |
|
|
531
572
|
|
|
532
573
|
---
|
|
533
574
|
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
#### [TATArticlesRequest](#TATArticlesRequest)
|
|
575
|
+
#### [PincodeLatLongData](#PincodeLatLongData)
|
|
538
576
|
|
|
539
577
|
| Properties | Type | Nullable | Description |
|
|
540
|
-
| ---------- | ---- | -------- | ----------- |
|
|
541
|
-
| category | [TATCategoryRequest](#TATCategoryRequest) | no | |
|
|
542
|
-
| manufacturing_time | number | no | |
|
|
543
|
-
| manufacturing_time_unit | string | no | |
|
|
578
|
+
| ---------- | ---- | -------- | ----------- || coordinates | [string] | no | || type | string | no | |
|
|
544
579
|
|
|
545
580
|
---
|
|
546
581
|
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
#### [TATLocationDetailsRequest](#TATLocationDetailsRequest)
|
|
582
|
+
#### [PincodeMetaResponse](#PincodeMetaResponse)
|
|
551
583
|
|
|
552
584
|
| Properties | Type | Nullable | Description |
|
|
553
|
-
| ---------- | ---- | -------- | ----------- |
|
|
554
|
-
| fulfillment_id | number | no | |
|
|
555
|
-
| articles | [[TATArticlesRequest](#TATArticlesRequest)] | no | |
|
|
556
|
-
| from_pincode | string | no | |
|
|
585
|
+
| ---------- | ---- | -------- | ----------- || internal_zone_id | number | no | || zone | string | no | |
|
|
557
586
|
|
|
558
587
|
---
|
|
559
588
|
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
#### [TATViewRequest](#TATViewRequest)
|
|
589
|
+
#### [PincodeParentsResponse](#PincodeParentsResponse)
|
|
564
590
|
|
|
565
591
|
| Properties | Type | Nullable | Description |
|
|
566
|
-
| ---------- | ---- | -------- | ----------- |
|
|
567
|
-
| journey | string | no | |
|
|
568
|
-
| to_pincode | string | no | |
|
|
569
|
-
| action | string | no | |
|
|
570
|
-
| identifier | string | no | |
|
|
571
|
-
| source | string | no | |
|
|
572
|
-
| location_details | [[TATLocationDetailsRequest](#TATLocationDetailsRequest)] | no | |
|
|
592
|
+
| ---------- | ---- | -------- | ----------- || display_name | string | no | || name | string | no | || sub_type | string | no | || uid | string | no | |
|
|
573
593
|
|
|
574
594
|
---
|
|
575
595
|
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
#### [TATErrorSchemaResponse](#TATErrorSchemaResponse)
|
|
596
|
+
#### [ReAssignStoreRequest](#ReAssignStoreRequest)
|
|
580
597
|
|
|
581
598
|
| Properties | Type | Nullable | Description |
|
|
582
|
-
| ---------- | ---- | -------- | ----------- |
|
|
583
|
-
| type | string | no | |
|
|
584
|
-
| message | string | no | |
|
|
585
|
-
| value | string | no | |
|
|
599
|
+
| ---------- | ---- | -------- | ----------- || articles | [string] | yes | || configuration | string | yes | || identifier | string | yes | || ignored_locations | [string] | yes | || to_pincode | string | yes | |
|
|
586
600
|
|
|
587
601
|
---
|
|
588
602
|
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
#### [TATFormattedResponse](#TATFormattedResponse)
|
|
603
|
+
#### [ReAssignStoreResponse](#ReAssignStoreResponse)
|
|
593
604
|
|
|
594
605
|
| Properties | Type | Nullable | Description |
|
|
595
|
-
| ---------- | ---- | -------- | ----------- |
|
|
596
|
-
| min | string | no | |
|
|
597
|
-
| max | string | no | |
|
|
606
|
+
| ---------- | ---- | -------- | ----------- || articles | [string] | no | || error | string | yes | || success | boolean | yes | || to_pincode | string | yes | |
|
|
598
607
|
|
|
599
608
|
---
|
|
600
609
|
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
#### [TATTimestampResponse](#TATTimestampResponse)
|
|
610
|
+
#### [TATArticlesRequest](#TATArticlesRequest)
|
|
605
611
|
|
|
606
612
|
| Properties | Type | Nullable | Description |
|
|
607
|
-
| ---------- | ---- | -------- | ----------- |
|
|
608
|
-
| min | number | no | |
|
|
609
|
-
| max | number | no | |
|
|
613
|
+
| ---------- | ---- | -------- | ----------- || category | [TATCategoryRequest](#TATCategoryRequest) | no | || manufacturing_time | number | no | || manufacturing_time_unit | string | no | |
|
|
610
614
|
|
|
611
615
|
---
|
|
612
616
|
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
#### [TATPromiseResponse](#TATPromiseResponse)
|
|
617
|
+
#### [TATArticlesResponse](#TATArticlesResponse)
|
|
617
618
|
|
|
618
619
|
| Properties | Type | Nullable | Description |
|
|
619
|
-
| ---------- | ---- | -------- | ----------- |
|
|
620
|
-
| formatted | [TATFormattedResponse](#TATFormattedResponse) | no | |
|
|
621
|
-
| timestamp | [TATTimestampResponse](#TATTimestampResponse) | no | |
|
|
620
|
+
| ---------- | ---- | -------- | ----------- || _manufacturing_time_seconds | number | no | || category | [TATCategoryRequest](#TATCategoryRequest) | no | || error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | || is_cod_available | boolean | no | || manufacturing_time | number | no | || manufacturing_time_unit | string | no | || promise | [TATPromiseResponse](#TATPromiseResponse) | no | |
|
|
622
621
|
|
|
623
622
|
---
|
|
624
623
|
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
#### [TATArticlesResponse](#TATArticlesResponse)
|
|
624
|
+
#### [TATCategoryRequest](#TATCategoryRequest)
|
|
629
625
|
|
|
630
626
|
| Properties | Type | Nullable | Description |
|
|
631
|
-
| ---------- | ---- | -------- | ----------- |
|
|
632
|
-
| category | [TATCategoryRequest](#TATCategoryRequest) | no | |
|
|
633
|
-
| error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | |
|
|
634
|
-
| promise | [TATPromiseResponse](#TATPromiseResponse) | no | |
|
|
635
|
-
| manufacturing_time | number | no | |
|
|
636
|
-
| manufacturing_time_unit | string | no | |
|
|
637
|
-
| _manufacturing_time_seconds | number | no | |
|
|
638
|
-
| is_cod_available | boolean | no | |
|
|
627
|
+
| ---------- | ---- | -------- | ----------- || id | number | no | || level | string | no | |
|
|
639
628
|
|
|
640
629
|
---
|
|
641
630
|
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
#### [TATLocationDetailsResponse](#TATLocationDetailsResponse)
|
|
631
|
+
#### [TATErrorSchemaResponse](#TATErrorSchemaResponse)
|
|
646
632
|
|
|
647
633
|
| Properties | Type | Nullable | Description |
|
|
648
|
-
| ---------- | ---- | -------- | ----------- |
|
|
649
|
-
| fulfillment_id | number | no | |
|
|
650
|
-
| articles | [[TATArticlesResponse](#TATArticlesResponse)] | no | |
|
|
651
|
-
| from_pincode | string | no | |
|
|
634
|
+
| ---------- | ---- | -------- | ----------- || message | string | no | || type | string | no | || value | string | no | |
|
|
652
635
|
|
|
653
636
|
---
|
|
654
637
|
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
#### [TATViewResponse](#TATViewResponse)
|
|
638
|
+
#### [TATFormattedResponse](#TATFormattedResponse)
|
|
659
639
|
|
|
660
640
|
| Properties | Type | Nullable | Description |
|
|
661
|
-
| ---------- | ---- | -------- | ----------- |
|
|
662
|
-
| journey | string | no | |
|
|
663
|
-
| to_pincode | string | no | |
|
|
664
|
-
| payment_mode | string | no | |
|
|
665
|
-
| success | boolean | no | |
|
|
666
|
-
| stormbreaker_uuid | string | no | |
|
|
667
|
-
| error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | |
|
|
668
|
-
| action | string | no | |
|
|
669
|
-
| identifier | string | no | |
|
|
670
|
-
| to_city | string | no | |
|
|
671
|
-
| source | string | no | |
|
|
672
|
-
| request_uuid | string | no | |
|
|
673
|
-
| location_details | [[TATLocationDetailsResponse](#TATLocationDetailsResponse)] | no | |
|
|
674
|
-
| is_cod_available | boolean | no | |
|
|
641
|
+
| ---------- | ---- | -------- | ----------- || max | string | no | || min | string | no | |
|
|
675
642
|
|
|
676
643
|
---
|
|
677
644
|
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
#### [DP](#DP)
|
|
645
|
+
#### [TATLocationDetailsRequest](#TATLocationDetailsRequest)
|
|
682
646
|
|
|
683
647
|
| Properties | Type | Nullable | Description |
|
|
684
|
-
| ---------- | ---- | -------- | ----------- |
|
|
685
|
-
| fm_priority | number | yes | |
|
|
686
|
-
| lm_priority | number | yes | |
|
|
687
|
-
| rvp_priority | number | yes | |
|
|
688
|
-
| payment_mode | string | yes | |
|
|
689
|
-
| operations | [string] | yes | |
|
|
690
|
-
| area_code | string | no | |
|
|
691
|
-
| assign_dp_from_sb | boolean | no | |
|
|
692
|
-
| internal_account_id | string | no | |
|
|
693
|
-
| external_account_id | string | no | |
|
|
694
|
-
| transport_mode | string | no | |
|
|
648
|
+
| ---------- | ---- | -------- | ----------- || articles | [[TATArticlesRequest](#TATArticlesRequest)] | no | || from_pincode | string | no | || fulfillment_id | number | no | |
|
|
695
649
|
|
|
696
650
|
---
|
|
697
651
|
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
#### [LogisticsResponse](#LogisticsResponse)
|
|
652
|
+
#### [TATLocationDetailsResponse](#TATLocationDetailsResponse)
|
|
702
653
|
|
|
703
654
|
| Properties | Type | Nullable | Description |
|
|
704
|
-
| ---------- | ---- | -------- | ----------- |
|
|
705
|
-
| dp | [String: [DP](#DP)] | no | |
|
|
655
|
+
| ---------- | ---- | -------- | ----------- || articles | [[TATArticlesResponse](#TATArticlesResponse)] | no | || from_pincode | string | no | || fulfillment_id | number | no | |
|
|
706
656
|
|
|
707
657
|
---
|
|
708
658
|
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
#### [CountryEntityResponse](#CountryEntityResponse)
|
|
659
|
+
#### [TATPromiseResponse](#TATPromiseResponse)
|
|
713
660
|
|
|
714
661
|
| Properties | Type | Nullable | Description |
|
|
715
|
-
| ---------- | ---- | -------- | ----------- |
|
|
716
|
-
| parent_id | string | no | |
|
|
717
|
-
| sub_type | string | no | |
|
|
718
|
-
| display_name | string | no | |
|
|
719
|
-
| uid | string | no | |
|
|
720
|
-
| logistics | [LogisticsResponse](#LogisticsResponse) | no | |
|
|
721
|
-
| type | string | no | |
|
|
722
|
-
| meta | [CountryMetaResponse](#CountryMetaResponse) | no | |
|
|
723
|
-
| is_active | boolean | no | |
|
|
724
|
-
| name | string | no | |
|
|
662
|
+
| ---------- | ---- | -------- | ----------- || formatted | [TATFormattedResponse](#TATFormattedResponse) | no | || timestamp | [TATTimestampResponse](#TATTimestampResponse) | no | |
|
|
725
663
|
|
|
726
664
|
---
|
|
727
665
|
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
#### [CountryListResponse](#CountryListResponse)
|
|
666
|
+
#### [TATTimestampResponse](#TATTimestampResponse)
|
|
732
667
|
|
|
733
668
|
| Properties | Type | Nullable | Description |
|
|
734
|
-
| ---------- | ---- | -------- | ----------- |
|
|
735
|
-
| results | [[CountryEntityResponse](#CountryEntityResponse)] | no | |
|
|
669
|
+
| ---------- | ---- | -------- | ----------- || max | number | no | || min | number | no | |
|
|
736
670
|
|
|
737
671
|
---
|
|
738
672
|
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
#### [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest)
|
|
673
|
+
#### [TATViewRequest](#TATViewRequest)
|
|
743
674
|
|
|
744
675
|
| Properties | Type | Nullable | Description |
|
|
745
|
-
| ---------- | ---- | -------- | ----------- |
|
|
746
|
-
| country | string | yes | |
|
|
747
|
-
| pincode | string | yes | |
|
|
676
|
+
| ---------- | ---- | -------- | ----------- || action | string | no | || identifier | string | no | || journey | string | no | || location_details | [[TATLocationDetailsRequest](#TATLocationDetailsRequest)] | no | || source | string | no | || to_pincode | string | no | |
|
|
748
677
|
|
|
749
678
|
---
|
|
750
679
|
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
#### [GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
680
|
+
#### [TATViewResponse](#TATViewResponse)
|
|
755
681
|
|
|
756
682
|
| Properties | Type | Nullable | Description |
|
|
757
|
-
| ---------- | ---- | -------- | ----------- |
|
|
758
|
-
| zones | [string] | yes | |
|
|
759
|
-
| serviceability_type | string | yes | |
|
|
683
|
+
| ---------- | ---- | -------- | ----------- || action | string | no | || error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | || identifier | string | no | || is_cod_available | boolean | no | || journey | string | no | || location_details | [[TATLocationDetailsResponse](#TATLocationDetailsResponse)] | no | || payment_mode | string | no | || request_uuid | string | no | || source | string | no | || stormbreaker_uuid | string | no | || success | boolean | no | || to_city | string | no | || to_pincode | string | no | |
|
|
760
684
|
|
|
761
685
|
---
|
|
762
686
|
|