@gofynd/fdk-client-javascript 0.1.36 → 0.1.37
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 +291 -285
- package/documentation/application/CATALOG.md +411 -411
- package/documentation/application/LOGISTIC.md +423 -101
- package/documentation/application/ORDER.md +287 -287
- package/documentation/application/POSCART.md +319 -313
- package/documentation/application/README.md +1 -1
- package/documentation/platform/AUDITTRAIL.md +2 -2
- package/documentation/platform/CART.md +488 -488
- package/documentation/platform/CATALOG.md +1656 -1439
- package/documentation/platform/COMPANYPROFILE.md +250 -229
- package/documentation/platform/ORDER.md +1183 -1183
- package/package.json +2 -2
- package/sdk/application/ApplicationAPIClient.js +3 -0
- package/sdk/application/ApplicationClient.d.ts +1 -0
- package/sdk/application/ApplicationClient.js +11 -1
- package/sdk/application/ApplicationConfig.d.ts +1 -0
- package/sdk/application/ApplicationConfig.js +1 -0
- package/sdk/application/ApplicationModels.d.ts +83 -78
- package/sdk/application/ApplicationModels.js +1445 -1354
- package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
- package/sdk/application/client/LogisticApplicationClient.js +62 -27
- package/sdk/application/models/LogisticValidator.d.ts +2 -1
- package/sdk/application/models/LogisticValidator.js +11 -6
- package/sdk/common/AxiosHelper.js +1 -1
- package/sdk/platform/PlatformApplicationClient.d.ts +5328 -5185
- package/sdk/platform/PlatformApplicationClient.js +2877 -2795
- package/sdk/platform/PlatformApplicationModels.d.ts +5 -5
- package/sdk/platform/PlatformApplicationModels.js +3707 -3571
- package/sdk/platform/PlatformClient.d.ts +2577 -2509
- package/sdk/platform/PlatformClient.js +2770 -2688
- package/sdk/platform/PlatformModels.d.ts +146 -139
- package/sdk/platform/PlatformModels.js +3718 -3582
- package/sdk/platform/client/CatalogPlatformClient.d.ts +21 -12
- package/sdk/platform/client/CatalogPlatformClient.js +48 -17
- package/sdk/platform/models/CatalogValidator.d.ts +2 -1
- package/sdk/platform/models/CatalogValidator.js +11 -5
|
@@ -6,11 +6,12 @@
|
|
|
6
6
|
##### [Back to Application docs](./README.md)
|
|
7
7
|
|
|
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)
|
|
11
12
|
* [getTatProduct](#gettatproduct)
|
|
13
|
+
* [getAllCountries](#getallcountries)
|
|
12
14
|
* [getPincodeZones](#getpincodezones)
|
|
13
|
-
* [getPincodeCity](#getpincodecity)
|
|
14
15
|
|
|
15
16
|
|
|
16
17
|
|
|
@@ -19,8 +20,155 @@ Handles Platform websites OMS
|
|
|
19
20
|
|
|
20
21
|
|
|
21
22
|
|
|
23
|
+
### getPincodeCity
|
|
24
|
+
Get Pincode API
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
```javascript
|
|
29
|
+
// Promise
|
|
30
|
+
const promise = logistic.getPincodeCity({ pincode : value,
|
|
31
|
+
countryCode : value });
|
|
32
|
+
|
|
33
|
+
// Async/Await
|
|
34
|
+
const data = await logistic.getPincodeCity({ pincode : value,
|
|
35
|
+
countryCode : value });
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
| Argument | Type | Required | Description |
|
|
43
|
+
| --------- | ----- | -------- | ----------- |
|
|
44
|
+
| pincode | string | yes | A `pincode` contains a specific address of a location. |
|
|
45
|
+
| countryCode | string | no | A 3 alphabetic country code |
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
Get pincode data
|
|
50
|
+
|
|
51
|
+
*Returned Response:*
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
[PincodeApiResponse](#PincodeApiResponse)
|
|
57
|
+
|
|
58
|
+
Get pincode data
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
<details>
|
|
64
|
+
<summary><i> Examples:</i></summary>
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
<details>
|
|
68
|
+
<summary><i> Pincode data found</i></summary>
|
|
69
|
+
|
|
70
|
+
```json
|
|
71
|
+
{
|
|
72
|
+
"value": {
|
|
73
|
+
"data": [
|
|
74
|
+
{
|
|
75
|
+
"sub_type": "pincode",
|
|
76
|
+
"name": "421202",
|
|
77
|
+
"error": {
|
|
78
|
+
"type": null,
|
|
79
|
+
"value": null,
|
|
80
|
+
"message": null
|
|
81
|
+
},
|
|
82
|
+
"uid": "pincode:INDIA|MAHARASHTRA|MUMBAI|421202",
|
|
83
|
+
"display_name": "421202",
|
|
84
|
+
"meta": {
|
|
85
|
+
"zone": "West",
|
|
86
|
+
"internal_zone_id": 4
|
|
87
|
+
},
|
|
88
|
+
"meta_code": {
|
|
89
|
+
"country_code": "IND",
|
|
90
|
+
"isd_code": "+91"
|
|
91
|
+
},
|
|
92
|
+
"parents": [
|
|
93
|
+
{
|
|
94
|
+
"sub_type": "country",
|
|
95
|
+
"name": "India",
|
|
96
|
+
"display_name": "India",
|
|
97
|
+
"uid": "country:INDIA"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"sub_type": "state",
|
|
101
|
+
"name": "Maharashtra",
|
|
102
|
+
"display_name": "Maharashtra",
|
|
103
|
+
"uid": "state:INDIA|MAHARASHTRA"
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"sub_type": "city",
|
|
107
|
+
"name": "Thane",
|
|
108
|
+
"display_name": "Thane",
|
|
109
|
+
"uid": "city:INDIA|MAHARASHTRA|MUMBAI"
|
|
110
|
+
}
|
|
111
|
+
]
|
|
112
|
+
}
|
|
113
|
+
],
|
|
114
|
+
"request_uuid": "fce9f431215e71c9ee0e86e792ae1dce4",
|
|
115
|
+
"stormbreaker_uuid": "56cca764-9fab-41f4-adb8-6e9683532aa5",
|
|
116
|
+
"error": {
|
|
117
|
+
"type": null,
|
|
118
|
+
"value": null,
|
|
119
|
+
"message": null
|
|
120
|
+
},
|
|
121
|
+
"success": true
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
```
|
|
125
|
+
</details>
|
|
126
|
+
|
|
127
|
+
<details>
|
|
128
|
+
<summary><i> Pincode not found</i></summary>
|
|
129
|
+
|
|
130
|
+
```json
|
|
131
|
+
{
|
|
132
|
+
"value": {
|
|
133
|
+
"data": [
|
|
134
|
+
{
|
|
135
|
+
"sub_type": "pincode",
|
|
136
|
+
"name": "999999",
|
|
137
|
+
"error": {
|
|
138
|
+
"type": "DoesNotExist",
|
|
139
|
+
"value": "999999",
|
|
140
|
+
"message": "pincode 999999 does not exist"
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
],
|
|
144
|
+
"request_uuid": "fce9fb9215e71c9ee0e86e792ae1dce4",
|
|
145
|
+
"stormbreaker_uuid": "03b353ed-9dbd-4629-80b2-2be337859a20",
|
|
146
|
+
"error": {
|
|
147
|
+
"type": null,
|
|
148
|
+
"value": null,
|
|
149
|
+
"message": null
|
|
150
|
+
},
|
|
151
|
+
"success": false
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
```
|
|
155
|
+
</details>
|
|
156
|
+
|
|
157
|
+
</details>
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
---
|
|
168
|
+
|
|
169
|
+
|
|
22
170
|
### getTatProduct
|
|
23
|
-
Get TAT
|
|
171
|
+
Get TAT API
|
|
24
172
|
|
|
25
173
|
|
|
26
174
|
|
|
@@ -38,31 +186,138 @@ const data = await logistic.getTatProduct({ body : value });
|
|
|
38
186
|
|
|
39
187
|
| Argument | Type | Required | Description |
|
|
40
188
|
| --------- | ----- | -------- | ----------- |
|
|
41
|
-
| body | [
|
|
189
|
+
| body | [TATViewRequest](#TATViewRequest) | yes | Request body |
|
|
42
190
|
|
|
43
191
|
|
|
44
|
-
|
|
192
|
+
Get TAT data
|
|
45
193
|
|
|
46
194
|
*Returned Response:*
|
|
47
195
|
|
|
48
196
|
|
|
49
197
|
|
|
50
198
|
|
|
51
|
-
[
|
|
199
|
+
[TATViewResponse](#TATViewResponse)
|
|
52
200
|
|
|
53
|
-
|
|
201
|
+
Get TAT data
|
|
54
202
|
|
|
55
203
|
|
|
56
204
|
|
|
57
205
|
|
|
58
206
|
<details>
|
|
59
|
-
<summary><i>
|
|
207
|
+
<summary><i> Examples:</i></summary>
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
<details>
|
|
211
|
+
<summary><i> Pincode data found</i></summary>
|
|
60
212
|
|
|
61
213
|
```json
|
|
214
|
+
{
|
|
215
|
+
"value": {
|
|
216
|
+
"source": "FYND-APP",
|
|
217
|
+
"identifier": "PDP",
|
|
218
|
+
"journey": "forward",
|
|
219
|
+
"action": "get_tat",
|
|
220
|
+
"to_pincode": "143001",
|
|
221
|
+
"location_details": [
|
|
222
|
+
{
|
|
223
|
+
"fulfillment_id": 8,
|
|
224
|
+
"from_pincode": "560023",
|
|
225
|
+
"articles": [
|
|
226
|
+
{
|
|
227
|
+
"category": {
|
|
228
|
+
"level": "l3",
|
|
229
|
+
"id": 155
|
|
230
|
+
},
|
|
231
|
+
"manufacturing_time": 2,
|
|
232
|
+
"manufacturing_time_unit": "days",
|
|
233
|
+
"promise": {
|
|
234
|
+
"timestamp": {
|
|
235
|
+
"min": 1663564548,
|
|
236
|
+
"max": 1663650948
|
|
237
|
+
},
|
|
238
|
+
"formatted": {
|
|
239
|
+
"min": "19 Sep, Monday",
|
|
240
|
+
"max": "20 Sep, Tuesday"
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"error": {
|
|
244
|
+
"type": null,
|
|
245
|
+
"value": null,
|
|
246
|
+
"message": null
|
|
247
|
+
},
|
|
248
|
+
"is_cod_available": true,
|
|
249
|
+
"_manufacturing_time_seconds": 172800
|
|
250
|
+
}
|
|
251
|
+
]
|
|
252
|
+
}
|
|
253
|
+
],
|
|
254
|
+
"request_uuid": "b4adf5508e34f17971817c3581e16310",
|
|
255
|
+
"stormbreaker_uuid": "4b8084d4-ea74-45af-8ddc-c38e29bf0cfb",
|
|
256
|
+
"error": {
|
|
257
|
+
"type": null,
|
|
258
|
+
"value": null,
|
|
259
|
+
"message": null
|
|
260
|
+
},
|
|
261
|
+
"to_city": "Amritsar",
|
|
262
|
+
"payment_mode": "prepaid",
|
|
263
|
+
"is_cod_available": true,
|
|
264
|
+
"success": true
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
```
|
|
268
|
+
</details>
|
|
269
|
+
|
|
270
|
+
<details>
|
|
271
|
+
<summary><i> Pincode not found</i></summary>
|
|
62
272
|
|
|
273
|
+
```json
|
|
274
|
+
{
|
|
275
|
+
"value": {
|
|
276
|
+
"source": "FYND-APP",
|
|
277
|
+
"identifier": "PDP",
|
|
278
|
+
"journey": "forward",
|
|
279
|
+
"action": "get_tat",
|
|
280
|
+
"to_pincode": "99999",
|
|
281
|
+
"location_details": [
|
|
282
|
+
{
|
|
283
|
+
"fulfillment_id": 8,
|
|
284
|
+
"from_pincode": "560023",
|
|
285
|
+
"articles": [
|
|
286
|
+
{
|
|
287
|
+
"category": {
|
|
288
|
+
"level": "l3",
|
|
289
|
+
"id": 155
|
|
290
|
+
},
|
|
291
|
+
"manufacturing_time": 2,
|
|
292
|
+
"manufacturing_time_unit": "days",
|
|
293
|
+
"promise": null,
|
|
294
|
+
"error": {
|
|
295
|
+
"type": "ValueError",
|
|
296
|
+
"value": "99999",
|
|
297
|
+
"message": "We are not delivering to 99999"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
]
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"request_uuid": "4b99d15fddb2b9fc2d6ab99a1c933010",
|
|
304
|
+
"stormbreaker_uuid": "6a847909-1d59-43e7-9ae0-15f5de8fc7d7",
|
|
305
|
+
"error": {
|
|
306
|
+
"type": "ValueError",
|
|
307
|
+
"value": "99999",
|
|
308
|
+
"message": "All of the items in your cart are not deliverable to 99999"
|
|
309
|
+
},
|
|
310
|
+
"to_city": "",
|
|
311
|
+
"payment_mode": "prepaid",
|
|
312
|
+
"is_cod_available": true,
|
|
313
|
+
"success": false
|
|
314
|
+
}
|
|
315
|
+
}
|
|
63
316
|
```
|
|
64
317
|
</details>
|
|
65
318
|
|
|
319
|
+
</details>
|
|
320
|
+
|
|
66
321
|
|
|
67
322
|
|
|
68
323
|
|
|
@@ -74,38 +329,34 @@ Success. Check the example shown below or refer `GetTatProductResponse` for more
|
|
|
74
329
|
---
|
|
75
330
|
|
|
76
331
|
|
|
77
|
-
###
|
|
78
|
-
Get
|
|
332
|
+
### getAllCountries
|
|
333
|
+
Get Country List
|
|
79
334
|
|
|
80
335
|
|
|
81
336
|
|
|
82
337
|
```javascript
|
|
83
338
|
// Promise
|
|
84
|
-
const promise = logistic.
|
|
339
|
+
const promise = logistic.getAllCountries();
|
|
85
340
|
|
|
86
341
|
// Async/Await
|
|
87
|
-
const data = await logistic.
|
|
342
|
+
const data = await logistic.getAllCountries();
|
|
88
343
|
```
|
|
89
344
|
|
|
90
345
|
|
|
91
346
|
|
|
92
347
|
|
|
93
348
|
|
|
94
|
-
| Argument | Type | Required | Description |
|
|
95
|
-
| --------- | ----- | -------- | ----------- |
|
|
96
|
-
| body | [GetPincodeZonesReqBody](#GetPincodeZonesReqBody) | yes | Request body |
|
|
97
349
|
|
|
98
|
-
|
|
99
|
-
Get to know the zones of a specefic pincode
|
|
350
|
+
Get all countries
|
|
100
351
|
|
|
101
352
|
*Returned Response:*
|
|
102
353
|
|
|
103
354
|
|
|
104
355
|
|
|
105
356
|
|
|
106
|
-
[
|
|
357
|
+
[CountryListResponse](#CountryListResponse)
|
|
107
358
|
|
|
108
|
-
|
|
359
|
+
Get Country List
|
|
109
360
|
|
|
110
361
|
|
|
111
362
|
|
|
@@ -129,17 +380,17 @@ Success. Check the example shown below or refer `GetTatProductResponse` for more
|
|
|
129
380
|
---
|
|
130
381
|
|
|
131
382
|
|
|
132
|
-
###
|
|
133
|
-
|
|
383
|
+
### getPincodeZones
|
|
384
|
+
GET zone from the Pincode.
|
|
134
385
|
|
|
135
386
|
|
|
136
387
|
|
|
137
388
|
```javascript
|
|
138
389
|
// Promise
|
|
139
|
-
const promise = logistic.
|
|
390
|
+
const promise = logistic.getPincodeZones({ body : value });
|
|
140
391
|
|
|
141
392
|
// Async/Await
|
|
142
|
-
const data = await logistic.
|
|
393
|
+
const data = await logistic.getPincodeZones({ body : value });
|
|
143
394
|
```
|
|
144
395
|
|
|
145
396
|
|
|
@@ -147,21 +398,20 @@ const data = await logistic.getPincodeCity({ pincode : value });
|
|
|
147
398
|
|
|
148
399
|
|
|
149
400
|
| Argument | Type | Required | Description |
|
|
150
|
-
| --------- | ----- | -------- | ----------- |
|
|
151
|
-
|
|
|
152
|
-
|
|
401
|
+
| --------- | ----- | -------- | ----------- |
|
|
402
|
+
| body | [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest) | yes | Request body |
|
|
153
403
|
|
|
154
404
|
|
|
155
|
-
|
|
405
|
+
This API returns zone from the Pincode View.
|
|
156
406
|
|
|
157
407
|
*Returned Response:*
|
|
158
408
|
|
|
159
409
|
|
|
160
410
|
|
|
161
411
|
|
|
162
|
-
[
|
|
412
|
+
[GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
163
413
|
|
|
164
|
-
|
|
414
|
+
Response status_code
|
|
165
415
|
|
|
166
416
|
|
|
167
417
|
|
|
@@ -190,56 +440,68 @@ Success. Returns a JSON object containing the city name, state and country ident
|
|
|
190
440
|
|
|
191
441
|
|
|
192
442
|
|
|
193
|
-
#### [
|
|
443
|
+
#### [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse)
|
|
194
444
|
|
|
195
445
|
| Properties | Type | Nullable | Description |
|
|
196
446
|
| ---------- | ---- | -------- | ----------- |
|
|
197
|
-
|
|
|
198
|
-
|
|
|
199
|
-
|
|
|
200
|
-
| data | [[LogisticPincodeData](#LogisticPincodeData)] | yes | |
|
|
447
|
+
| message | string | no | |
|
|
448
|
+
| value | string | no | |
|
|
449
|
+
| type | string | no | |
|
|
201
450
|
|
|
202
451
|
---
|
|
203
452
|
|
|
204
453
|
|
|
205
454
|
|
|
206
455
|
|
|
207
|
-
#### [
|
|
456
|
+
#### [PincodeParentsResponse](#PincodeParentsResponse)
|
|
208
457
|
|
|
209
458
|
| Properties | Type | Nullable | Description |
|
|
210
459
|
| ---------- | ---- | -------- | ----------- |
|
|
211
|
-
| meta | [LogisticMeta](#LogisticMeta) | no | |
|
|
212
|
-
| parents | [[LogisticParents](#LogisticParents)] | no | |
|
|
213
|
-
| sub_type | string | no | |
|
|
214
460
|
| name | string | no | |
|
|
215
|
-
|
|
|
216
|
-
| uid | string | no | |
|
|
461
|
+
| sub_type | string | no | |
|
|
217
462
|
| display_name | string | no | |
|
|
463
|
+
| uid | string | no | |
|
|
464
|
+
|
|
465
|
+
---
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
|
|
469
|
+
|
|
470
|
+
#### [CountryMetaResponse](#CountryMetaResponse)
|
|
471
|
+
|
|
472
|
+
| Properties | Type | Nullable | Description |
|
|
473
|
+
| ---------- | ---- | -------- | ----------- |
|
|
474
|
+
| isd_code | string | no | |
|
|
475
|
+
| country_code | string | no | |
|
|
218
476
|
|
|
219
477
|
---
|
|
220
478
|
|
|
221
479
|
|
|
222
480
|
|
|
223
481
|
|
|
224
|
-
#### [
|
|
482
|
+
#### [PincodeMetaResponse](#PincodeMetaResponse)
|
|
225
483
|
|
|
226
484
|
| Properties | Type | Nullable | Description |
|
|
227
485
|
| ---------- | ---- | -------- | ----------- |
|
|
486
|
+
| internal_zone_id | number | no | |
|
|
228
487
|
| zone | string | no | |
|
|
229
|
-
| deliverables | [any] | no | |
|
|
230
488
|
|
|
231
489
|
---
|
|
232
490
|
|
|
233
491
|
|
|
234
492
|
|
|
235
493
|
|
|
236
|
-
#### [
|
|
494
|
+
#### [PincodeDataResponse](#PincodeDataResponse)
|
|
237
495
|
|
|
238
496
|
| Properties | Type | Nullable | Description |
|
|
239
497
|
| ---------- | ---- | -------- | ----------- |
|
|
498
|
+
| parents | [[PincodeParentsResponse](#PincodeParentsResponse)] | no | |
|
|
240
499
|
| sub_type | string | no | |
|
|
241
|
-
| name | string | no | |
|
|
242
500
|
| display_name | string | no | |
|
|
501
|
+
| meta_code | [CountryMetaResponse](#CountryMetaResponse) | no | |
|
|
502
|
+
| name | string | no | |
|
|
503
|
+
| error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | |
|
|
504
|
+
| meta | [PincodeMetaResponse](#PincodeMetaResponse) | no | |
|
|
243
505
|
| uid | string | no | |
|
|
244
506
|
|
|
245
507
|
---
|
|
@@ -247,194 +509,254 @@ Success. Returns a JSON object containing the city name, state and country ident
|
|
|
247
509
|
|
|
248
510
|
|
|
249
511
|
|
|
250
|
-
#### [
|
|
512
|
+
#### [PincodeApiResponse](#PincodeApiResponse)
|
|
251
513
|
|
|
252
514
|
| Properties | Type | Nullable | Description |
|
|
253
515
|
| ---------- | ---- | -------- | ----------- |
|
|
254
|
-
|
|
|
255
|
-
|
|
|
256
|
-
|
|
|
516
|
+
| error | [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse) | yes | |
|
|
517
|
+
| data | [[PincodeDataResponse](#PincodeDataResponse)] | no | |
|
|
518
|
+
| success | boolean | yes | |
|
|
257
519
|
|
|
258
520
|
---
|
|
259
521
|
|
|
260
522
|
|
|
261
523
|
|
|
262
524
|
|
|
263
|
-
#### [
|
|
525
|
+
#### [TATCategoryRequest](#TATCategoryRequest)
|
|
264
526
|
|
|
265
527
|
| Properties | Type | Nullable | Description |
|
|
266
528
|
| ---------- | ---- | -------- | ----------- |
|
|
267
|
-
|
|
|
268
|
-
|
|
|
529
|
+
| id | number | no | |
|
|
530
|
+
| level | string | no | |
|
|
269
531
|
|
|
270
532
|
---
|
|
271
533
|
|
|
272
534
|
|
|
273
535
|
|
|
274
536
|
|
|
275
|
-
#### [
|
|
537
|
+
#### [TATArticlesRequest](#TATArticlesRequest)
|
|
276
538
|
|
|
277
539
|
| Properties | Type | Nullable | Description |
|
|
278
540
|
| ---------- | ---- | -------- | ----------- |
|
|
279
|
-
|
|
|
280
|
-
|
|
|
541
|
+
| manufacturing_time | number | no | |
|
|
542
|
+
| manufacturing_time_unit | string | no | |
|
|
543
|
+
| category | [TATCategoryRequest](#TATCategoryRequest) | no | |
|
|
544
|
+
|
|
545
|
+
---
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
#### [TATLocationDetailsRequest](#TATLocationDetailsRequest)
|
|
551
|
+
|
|
552
|
+
| Properties | Type | Nullable | Description |
|
|
553
|
+
| ---------- | ---- | -------- | ----------- |
|
|
554
|
+
| articles | [[TATArticlesRequest](#TATArticlesRequest)] | no | |
|
|
555
|
+
| fulfillment_id | number | no | |
|
|
556
|
+
| from_pincode | string | no | |
|
|
281
557
|
|
|
282
558
|
---
|
|
283
559
|
|
|
284
560
|
|
|
285
561
|
|
|
286
562
|
|
|
287
|
-
#### [
|
|
563
|
+
#### [TATViewRequest](#TATViewRequest)
|
|
288
564
|
|
|
289
565
|
| Properties | Type | Nullable | Description |
|
|
290
566
|
| ---------- | ---- | -------- | ----------- |
|
|
291
|
-
|
|
|
292
|
-
| to_pincode | string | yes | |
|
|
567
|
+
| source | string | no | |
|
|
293
568
|
| action | string | no | |
|
|
569
|
+
| journey | string | no | |
|
|
570
|
+
| to_pincode | string | no | |
|
|
571
|
+
| location_details | [[TATLocationDetailsRequest](#TATLocationDetailsRequest)] | no | |
|
|
572
|
+
| identifier | string | no | |
|
|
294
573
|
|
|
295
574
|
---
|
|
296
575
|
|
|
297
576
|
|
|
298
577
|
|
|
299
578
|
|
|
300
|
-
#### [
|
|
579
|
+
#### [TATErrorSchemaResponse](#TATErrorSchemaResponse)
|
|
301
580
|
|
|
302
581
|
| Properties | Type | Nullable | Description |
|
|
303
582
|
| ---------- | ---- | -------- | ----------- |
|
|
304
|
-
|
|
|
305
|
-
|
|
|
306
|
-
|
|
|
583
|
+
| message | string | no | |
|
|
584
|
+
| value | string | no | |
|
|
585
|
+
| type | string | no | |
|
|
307
586
|
|
|
308
587
|
---
|
|
309
588
|
|
|
310
589
|
|
|
311
590
|
|
|
312
591
|
|
|
313
|
-
#### [
|
|
592
|
+
#### [TATFormattedResponse](#TATFormattedResponse)
|
|
314
593
|
|
|
315
594
|
| Properties | Type | Nullable | Description |
|
|
316
595
|
| ---------- | ---- | -------- | ----------- |
|
|
317
|
-
|
|
|
318
|
-
|
|
|
319
|
-
| category | [LogisticRequestCategory](#LogisticRequestCategory) | no | |
|
|
596
|
+
| min | string | no | |
|
|
597
|
+
| max | string | no | |
|
|
320
598
|
|
|
321
599
|
---
|
|
322
600
|
|
|
323
601
|
|
|
324
602
|
|
|
325
603
|
|
|
326
|
-
#### [
|
|
604
|
+
#### [TATTimestampResponse](#TATTimestampResponse)
|
|
327
605
|
|
|
328
606
|
| Properties | Type | Nullable | Description |
|
|
329
607
|
| ---------- | ---- | -------- | ----------- |
|
|
330
|
-
|
|
|
331
|
-
|
|
|
608
|
+
| min | number | no | |
|
|
609
|
+
| max | number | no | |
|
|
332
610
|
|
|
333
611
|
---
|
|
334
612
|
|
|
335
613
|
|
|
336
614
|
|
|
337
615
|
|
|
338
|
-
#### [
|
|
616
|
+
#### [TATPromiseResponse](#TATPromiseResponse)
|
|
339
617
|
|
|
340
618
|
| Properties | Type | Nullable | Description |
|
|
341
619
|
| ---------- | ---- | -------- | ----------- |
|
|
342
|
-
|
|
|
343
|
-
|
|
|
344
|
-
| error | string | yes | |
|
|
345
|
-
| to_city | string | yes | |
|
|
346
|
-
| source | string | yes | |
|
|
347
|
-
| to_pincode | string | yes | |
|
|
348
|
-
| action | string | yes | |
|
|
349
|
-
| stormbreaker_uuid | string | yes | |
|
|
350
|
-
| success | boolean | yes | |
|
|
351
|
-
| identifier | string | yes | |
|
|
352
|
-
| journey | string | yes | |
|
|
620
|
+
| formatted | [TATFormattedResponse](#TATFormattedResponse) | no | |
|
|
621
|
+
| timestamp | [TATTimestampResponse](#TATTimestampResponse) | no | |
|
|
353
622
|
|
|
354
623
|
---
|
|
355
624
|
|
|
356
625
|
|
|
357
626
|
|
|
358
627
|
|
|
359
|
-
#### [
|
|
628
|
+
#### [TATArticlesResponse](#TATArticlesResponse)
|
|
360
629
|
|
|
361
630
|
| Properties | Type | Nullable | Description |
|
|
362
631
|
| ---------- | ---- | -------- | ----------- |
|
|
363
|
-
|
|
|
364
|
-
|
|
|
632
|
+
| is_cod_available | boolean | no | |
|
|
633
|
+
| error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | |
|
|
634
|
+
| manufacturing_time_unit | string | no | |
|
|
635
|
+
| _manufacturing_time_seconds | number | no | |
|
|
636
|
+
| promise | [TATPromiseResponse](#TATPromiseResponse) | no | |
|
|
637
|
+
| manufacturing_time | number | no | |
|
|
638
|
+
| category | [TATCategoryRequest](#TATCategoryRequest) | no | |
|
|
639
|
+
|
|
640
|
+
---
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
#### [TATLocationDetailsResponse](#TATLocationDetailsResponse)
|
|
646
|
+
|
|
647
|
+
| Properties | Type | Nullable | Description |
|
|
648
|
+
| ---------- | ---- | -------- | ----------- |
|
|
649
|
+
| articles | [[TATArticlesResponse](#TATArticlesResponse)] | no | |
|
|
365
650
|
| fulfillment_id | number | no | |
|
|
651
|
+
| from_pincode | string | no | |
|
|
366
652
|
|
|
367
653
|
---
|
|
368
654
|
|
|
369
655
|
|
|
370
656
|
|
|
371
657
|
|
|
372
|
-
#### [
|
|
658
|
+
#### [TATViewResponse](#TATViewResponse)
|
|
373
659
|
|
|
374
660
|
| Properties | Type | Nullable | Description |
|
|
375
661
|
| ---------- | ---- | -------- | ----------- |
|
|
376
|
-
|
|
|
377
|
-
|
|
|
378
|
-
|
|
|
662
|
+
| to_city | string | no | |
|
|
663
|
+
| source | string | no | |
|
|
664
|
+
| stormbreaker_uuid | string | no | |
|
|
665
|
+
| action | string | no | |
|
|
666
|
+
| journey | string | no | |
|
|
667
|
+
| to_pincode | string | no | |
|
|
668
|
+
| error | [TATErrorSchemaResponse](#TATErrorSchemaResponse) | no | |
|
|
669
|
+
| location_details | [[TATLocationDetailsResponse](#TATLocationDetailsResponse)] | no | |
|
|
670
|
+
| is_cod_available | boolean | no | |
|
|
671
|
+
| identifier | string | no | |
|
|
672
|
+
| payment_mode | string | no | |
|
|
673
|
+
| success | boolean | no | |
|
|
674
|
+
| request_uuid | string | no | |
|
|
379
675
|
|
|
380
676
|
---
|
|
381
677
|
|
|
382
678
|
|
|
383
679
|
|
|
384
680
|
|
|
385
|
-
#### [
|
|
681
|
+
#### [DP](#DP)
|
|
386
682
|
|
|
387
683
|
| Properties | Type | Nullable | Description |
|
|
388
684
|
| ---------- | ---- | -------- | ----------- |
|
|
389
|
-
|
|
|
390
|
-
|
|
|
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 | |
|
|
391
695
|
|
|
392
696
|
---
|
|
393
697
|
|
|
394
698
|
|
|
395
699
|
|
|
396
700
|
|
|
397
|
-
#### [
|
|
701
|
+
#### [LogisticsResponse](#LogisticsResponse)
|
|
398
702
|
|
|
399
703
|
| Properties | Type | Nullable | Description |
|
|
400
704
|
| ---------- | ---- | -------- | ----------- |
|
|
401
|
-
|
|
|
402
|
-
| formatted | [Formatted](#Formatted) | no | |
|
|
705
|
+
| dp | [String: [DP](#DP)] | no | |
|
|
403
706
|
|
|
404
707
|
---
|
|
405
708
|
|
|
406
709
|
|
|
407
710
|
|
|
408
711
|
|
|
409
|
-
#### [
|
|
712
|
+
#### [CountryEntityResponse](#CountryEntityResponse)
|
|
410
713
|
|
|
411
714
|
| Properties | Type | Nullable | Description |
|
|
412
715
|
| ---------- | ---- | -------- | ----------- |
|
|
413
|
-
|
|
|
414
|
-
|
|
|
716
|
+
| sub_type | string | no | |
|
|
717
|
+
| display_name | string | no | |
|
|
718
|
+
| logistics | [LogisticsResponse](#LogisticsResponse) | no | |
|
|
719
|
+
| is_active | boolean | no | |
|
|
720
|
+
| name | string | no | |
|
|
721
|
+
| parent_id | string | no | |
|
|
722
|
+
| type | string | no | |
|
|
723
|
+
| meta | [CountryMetaResponse](#CountryMetaResponse) | no | |
|
|
724
|
+
| uid | string | no | |
|
|
415
725
|
|
|
416
726
|
---
|
|
417
727
|
|
|
418
728
|
|
|
419
729
|
|
|
420
730
|
|
|
421
|
-
#### [
|
|
731
|
+
#### [CountryListResponse](#CountryListResponse)
|
|
422
732
|
|
|
423
733
|
| Properties | Type | Nullable | Description |
|
|
424
734
|
| ---------- | ---- | -------- | ----------- |
|
|
425
|
-
|
|
|
426
|
-
| max | string | no | |
|
|
735
|
+
| results | [[CountryEntityResponse](#CountryEntityResponse)] | no | |
|
|
427
736
|
|
|
428
737
|
---
|
|
429
738
|
|
|
430
739
|
|
|
431
740
|
|
|
432
741
|
|
|
433
|
-
#### [
|
|
742
|
+
#### [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest)
|
|
434
743
|
|
|
435
744
|
| Properties | Type | Nullable | Description |
|
|
436
745
|
| ---------- | ---- | -------- | ----------- |
|
|
437
|
-
|
|
|
746
|
+
| country | string | yes | |
|
|
747
|
+
| pincode | string | yes | |
|
|
748
|
+
|
|
749
|
+
---
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
|
|
754
|
+
#### [GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
|
|
755
|
+
|
|
756
|
+
| Properties | Type | Nullable | Description |
|
|
757
|
+
| ---------- | ---- | -------- | ----------- |
|
|
758
|
+
| zones | [string] | yes | |
|
|
759
|
+
| serviceability_type | string | yes | |
|
|
438
760
|
|
|
439
761
|
---
|
|
440
762
|
|