@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.
Files changed (36) hide show
  1. package/documentation/application/CART.md +291 -285
  2. package/documentation/application/CATALOG.md +411 -411
  3. package/documentation/application/LOGISTIC.md +423 -101
  4. package/documentation/application/ORDER.md +287 -287
  5. package/documentation/application/POSCART.md +319 -313
  6. package/documentation/application/README.md +1 -1
  7. package/documentation/platform/AUDITTRAIL.md +2 -2
  8. package/documentation/platform/CART.md +488 -488
  9. package/documentation/platform/CATALOG.md +1656 -1439
  10. package/documentation/platform/COMPANYPROFILE.md +250 -229
  11. package/documentation/platform/ORDER.md +1183 -1183
  12. package/package.json +2 -2
  13. package/sdk/application/ApplicationAPIClient.js +3 -0
  14. package/sdk/application/ApplicationClient.d.ts +1 -0
  15. package/sdk/application/ApplicationClient.js +11 -1
  16. package/sdk/application/ApplicationConfig.d.ts +1 -0
  17. package/sdk/application/ApplicationConfig.js +1 -0
  18. package/sdk/application/ApplicationModels.d.ts +83 -78
  19. package/sdk/application/ApplicationModels.js +1445 -1354
  20. package/sdk/application/client/LogisticApplicationClient.d.ts +32 -21
  21. package/sdk/application/client/LogisticApplicationClient.js +62 -27
  22. package/sdk/application/models/LogisticValidator.d.ts +2 -1
  23. package/sdk/application/models/LogisticValidator.js +11 -6
  24. package/sdk/common/AxiosHelper.js +1 -1
  25. package/sdk/platform/PlatformApplicationClient.d.ts +5328 -5185
  26. package/sdk/platform/PlatformApplicationClient.js +2877 -2795
  27. package/sdk/platform/PlatformApplicationModels.d.ts +5 -5
  28. package/sdk/platform/PlatformApplicationModels.js +3707 -3571
  29. package/sdk/platform/PlatformClient.d.ts +2577 -2509
  30. package/sdk/platform/PlatformClient.js +2770 -2688
  31. package/sdk/platform/PlatformModels.d.ts +146 -139
  32. package/sdk/platform/PlatformModels.js +3718 -3582
  33. package/sdk/platform/client/CatalogPlatformClient.d.ts +21 -12
  34. package/sdk/platform/client/CatalogPlatformClient.js +48 -17
  35. package/sdk/platform/models/CatalogValidator.d.ts +2 -1
  36. 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
- Handles Platform websites OMS
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>&nbsp; Examples:</i></summary>
65
+
66
+
67
+ <details>
68
+ <summary><i>&nbsp; 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>&nbsp; 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 of a product
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 | [GetTatProductReqBody](#GetTatProductReqBody) | yes | Request body |
189
+ | body | [TATViewRequest](#TATViewRequest) | yes | Request body |
42
190
 
43
191
 
44
- Use this API to know the delivery turnaround time (TAT) by entering the product details along with the PIN Code of the location.
192
+ Get TAT data
45
193
 
46
194
  *Returned Response:*
47
195
 
48
196
 
49
197
 
50
198
 
51
- [GetTatProductResponse](#GetTatProductResponse)
199
+ [TATViewResponse](#TATViewResponse)
52
200
 
53
- Success. Check the example shown below or refer `GetTatProductResponse` for more details.
201
+ Get TAT data
54
202
 
55
203
 
56
204
 
57
205
 
58
206
  <details>
59
- <summary><i>&nbsp; Example:</i></summary>
207
+ <summary><i>&nbsp; Examples:</i></summary>
208
+
209
+
210
+ <details>
211
+ <summary><i>&nbsp; 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>&nbsp; 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
- ### getPincodeZones
78
- Get Pincode Zones
332
+ ### getAllCountries
333
+ Get Country List
79
334
 
80
335
 
81
336
 
82
337
  ```javascript
83
338
  // Promise
84
- const promise = logistic.getPincodeZones({ body : value });
339
+ const promise = logistic.getAllCountries();
85
340
 
86
341
  // Async/Await
87
- const data = await logistic.getPincodeZones({ body : value });
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
- [GetPincodeZonesResponse](#GetPincodeZonesResponse)
357
+ [CountryListResponse](#CountryListResponse)
107
358
 
108
- Success. Check the example shown below or refer `GetTatProductResponse` for more details.
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
- ### getPincodeCity
133
- Get city from PIN Code
383
+ ### getPincodeZones
384
+ GET zone from the Pincode.
134
385
 
135
386
 
136
387
 
137
388
  ```javascript
138
389
  // Promise
139
- const promise = logistic.getPincodeCity({ pincode : value });
390
+ const promise = logistic.getPincodeZones({ body : value });
140
391
 
141
392
  // Async/Await
142
- const data = await logistic.getPincodeCity({ pincode : value });
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
- | pincode | string | yes | The PIN Code of the area, e.g. 400059 |
152
-
401
+ | --------- | ----- | -------- | ----------- |
402
+ | body | [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest) | yes | Request body |
153
403
 
154
404
 
155
- Use this API to retrieve a city by its PIN Code.
405
+ This API returns zone from the Pincode View.
156
406
 
157
407
  *Returned Response:*
158
408
 
159
409
 
160
410
 
161
411
 
162
- [GetPincodeCityResponse](#GetPincodeCityResponse)
412
+ [GetZoneFromPincodeViewResponse](#GetZoneFromPincodeViewResponse)
163
413
 
164
- Success. Returns a JSON object containing the city name, state and country identified by its PIN Code. Check the example shown below or refer `GetPincodeCityResponse` for more details.
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
- #### [GetPincodeCityResponse](#GetPincodeCityResponse)
443
+ #### [PincodeErrorSchemaResponse](#PincodeErrorSchemaResponse)
194
444
 
195
445
  | Properties | Type | Nullable | Description |
196
446
  | ---------- | ---- | -------- | ----------- |
197
- | request_uuid | string | yes | |
198
- | stormbreaker_uuid | string | yes | |
199
- | success | boolean | yes | |
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
- #### [LogisticPincodeData](#LogisticPincodeData)
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
- | error | [LogisticError](#LogisticError) | no | |
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
- #### [LogisticMeta](#LogisticMeta)
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
- #### [LogisticParents](#LogisticParents)
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
- #### [LogisticError](#LogisticError)
512
+ #### [PincodeApiResponse](#PincodeApiResponse)
251
513
 
252
514
  | Properties | Type | Nullable | Description |
253
515
  | ---------- | ---- | -------- | ----------- |
254
- | type | string | no | |
255
- | value | string | no | |
256
- | message | string | no | |
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
- #### [GetPincodeZonesReqBody](#GetPincodeZonesReqBody)
525
+ #### [TATCategoryRequest](#TATCategoryRequest)
264
526
 
265
527
  | Properties | Type | Nullable | Description |
266
528
  | ---------- | ---- | -------- | ----------- |
267
- | country | string | yes | |
268
- | pincode | string | yes | |
529
+ | id | number | no | |
530
+ | level | string | no | |
269
531
 
270
532
  ---
271
533
 
272
534
 
273
535
 
274
536
 
275
- #### [GetPincodeZonesResponse](#GetPincodeZonesResponse)
537
+ #### [TATArticlesRequest](#TATArticlesRequest)
276
538
 
277
539
  | Properties | Type | Nullable | Description |
278
540
  | ---------- | ---- | -------- | ----------- |
279
- | zones | [any] | yes | |
280
- | serviceability_type | string | yes | |
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
- #### [GetTatProductReqBody](#GetTatProductReqBody)
563
+ #### [TATViewRequest](#TATViewRequest)
288
564
 
289
565
  | Properties | Type | Nullable | Description |
290
566
  | ---------- | ---- | -------- | ----------- |
291
- | location_details | [[LocationDetailsReq](#LocationDetailsReq)] | yes | |
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
- #### [LocationDetailsReq](#LocationDetailsReq)
579
+ #### [TATErrorSchemaResponse](#TATErrorSchemaResponse)
301
580
 
302
581
  | Properties | Type | Nullable | Description |
303
582
  | ---------- | ---- | -------- | ----------- |
304
- | from_pincode | string | no | |
305
- | articles | [[TatReqProductArticles](#TatReqProductArticles)] | no | |
306
- | fulfillment_id | number | no | |
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
- #### [TatReqProductArticles](#TatReqProductArticles)
592
+ #### [TATFormattedResponse](#TATFormattedResponse)
314
593
 
315
594
  | Properties | Type | Nullable | Description |
316
595
  | ---------- | ---- | -------- | ----------- |
317
- | manufacturing_time | number | no | |
318
- | manufacturing_time_unit | string | no | |
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
- #### [LogisticRequestCategory](#LogisticRequestCategory)
604
+ #### [TATTimestampResponse](#TATTimestampResponse)
327
605
 
328
606
  | Properties | Type | Nullable | Description |
329
607
  | ---------- | ---- | -------- | ----------- |
330
- | id | number | no | |
331
- | level | string | no | |
608
+ | min | number | no | |
609
+ | max | number | no | |
332
610
 
333
611
  ---
334
612
 
335
613
 
336
614
 
337
615
 
338
- #### [GetTatProductResponse](#GetTatProductResponse)
616
+ #### [TATPromiseResponse](#TATPromiseResponse)
339
617
 
340
618
  | Properties | Type | Nullable | Description |
341
619
  | ---------- | ---- | -------- | ----------- |
342
- | location_details | [[LocationDetails](#LocationDetails)] | yes | |
343
- | request_uuid | string | yes | |
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
- #### [LocationDetails](#LocationDetails)
628
+ #### [TATArticlesResponse](#TATArticlesResponse)
360
629
 
361
630
  | Properties | Type | Nullable | Description |
362
631
  | ---------- | ---- | -------- | ----------- |
363
- | from_pincode | string | no | |
364
- | articles | [[TatProductArticles](#TatProductArticles)] | no | |
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
- #### [TatProductArticles](#TatProductArticles)
658
+ #### [TATViewResponse](#TATViewResponse)
373
659
 
374
660
  | Properties | Type | Nullable | Description |
375
661
  | ---------- | ---- | -------- | ----------- |
376
- | error | string | no | |
377
- | category | [LogisticResponseCategory](#LogisticResponseCategory) | no | |
378
- | promise | [LogisticPromise](#LogisticPromise) | no | |
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
- #### [LogisticResponseCategory](#LogisticResponseCategory)
681
+ #### [DP](#DP)
386
682
 
387
683
  | Properties | Type | Nullable | Description |
388
684
  | ---------- | ---- | -------- | ----------- |
389
- | id | number | no | |
390
- | level | string | no | |
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
- #### [LogisticPromise](#LogisticPromise)
701
+ #### [LogisticsResponse](#LogisticsResponse)
398
702
 
399
703
  | Properties | Type | Nullable | Description |
400
704
  | ---------- | ---- | -------- | ----------- |
401
- | timestamp | [LogisticTimestamp](#LogisticTimestamp) | no | |
402
- | formatted | [Formatted](#Formatted) | no | |
705
+ | dp | [String: [DP](#DP)] | no | |
403
706
 
404
707
  ---
405
708
 
406
709
 
407
710
 
408
711
 
409
- #### [LogisticTimestamp](#LogisticTimestamp)
712
+ #### [CountryEntityResponse](#CountryEntityResponse)
410
713
 
411
714
  | Properties | Type | Nullable | Description |
412
715
  | ---------- | ---- | -------- | ----------- |
413
- | min | number | no | |
414
- | max | number | no | |
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
- #### [Formatted](#Formatted)
731
+ #### [CountryListResponse](#CountryListResponse)
422
732
 
423
733
  | Properties | Type | Nullable | Description |
424
734
  | ---------- | ---- | -------- | ----------- |
425
- | min | string | no | |
426
- | max | string | no | |
735
+ | results | [[CountryEntityResponse](#CountryEntityResponse)] | no | |
427
736
 
428
737
  ---
429
738
 
430
739
 
431
740
 
432
741
 
433
- #### [ApefaceApiError](#ApefaceApiError)
742
+ #### [GetZoneFromPincodeViewRequest](#GetZoneFromPincodeViewRequest)
434
743
 
435
744
  | Properties | Type | Nullable | Description |
436
745
  | ---------- | ---- | -------- | ----------- |
437
- | message | string | no | |
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