@gofynd/fdk-client-javascript 1.0.1 → 1.0.2

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 (134) hide show
  1. package/documentation/application/CART.md +251 -251
  2. package/documentation/application/CATALOG.md +414 -414
  3. package/documentation/application/CONTENT.md +15 -1
  4. package/documentation/application/ORDER.md +290 -290
  5. package/documentation/application/PAYMENT.md +255 -255
  6. package/documentation/application/POSCART.md +297 -297
  7. package/documentation/platform/CART.md +499 -499
  8. package/documentation/platform/CATALOG.md +3088 -2702
  9. package/documentation/platform/COMPANYPROFILE.md +201 -201
  10. package/documentation/platform/CONTENT.md +123 -1
  11. package/documentation/platform/ORDER.md +1233 -1158
  12. package/documentation/platform/PARTNER.md +7 -7
  13. package/documentation/platform/PAYMENT.md +83 -83
  14. package/package.json +1 -1
  15. package/sdk/application/ApplicationConfig.js +1 -1
  16. package/sdk/application/Cart/CartApplicationClient.js +619 -108
  17. package/sdk/application/Cart/CartApplicationModel.d.ts +7 -7
  18. package/sdk/application/Cart/CartApplicationModel.js +335 -335
  19. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +1 -1
  20. package/sdk/application/Catalog/CatalogApplicationClient.js +730 -134
  21. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +21 -21
  22. package/sdk/application/Catalog/CatalogApplicationModel.js +547 -547
  23. package/sdk/application/Common/CommonApplicationClient.js +48 -8
  24. package/sdk/application/Communication/CommunicationApplicationClient.js +75 -14
  25. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +1 -1
  26. package/sdk/application/Configuration/ConfigurationApplicationClient.js +392 -66
  27. package/sdk/application/Content/ContentApplicationClient.js +444 -76
  28. package/sdk/application/Content/ContentApplicationModel.d.ts +1 -0
  29. package/sdk/application/Content/ContentApplicationModel.js +11 -1
  30. package/sdk/application/FileStorage/FileStorageApplicationClient.js +74 -12
  31. package/sdk/application/Lead/LeadApplicationClient.js +164 -30
  32. package/sdk/application/Logistic/LogisticApplicationClient.js +98 -16
  33. package/sdk/application/Order/OrderApplicationClient.d.ts +1 -1
  34. package/sdk/application/Order/OrderApplicationClient.js +287 -54
  35. package/sdk/application/Order/OrderApplicationModel.d.ts +19 -19
  36. package/sdk/application/Order/OrderApplicationModel.js +357 -357
  37. package/sdk/application/Payment/PaymentApplicationClient.js +961 -186
  38. package/sdk/application/Payment/PaymentApplicationModel.d.ts +3 -3
  39. package/sdk/application/Payment/PaymentApplicationModel.js +352 -352
  40. package/sdk/application/PosCart/PosCartApplicationClient.js +645 -114
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +15 -15
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +389 -389
  43. package/sdk/application/Rewards/RewardsApplicationClient.js +168 -28
  44. package/sdk/application/Share/ShareApplicationClient.js +157 -32
  45. package/sdk/application/Theme/ThemeApplicationClient.js +94 -16
  46. package/sdk/application/User/UserApplicationClient.js +806 -148
  47. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +16 -8
  48. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +191 -34
  49. package/sdk/platform/Analytics/AnalyticsPlatformClient.d.ts +8 -4
  50. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +103 -16
  51. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -4
  52. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +103 -16
  53. package/sdk/platform/Billing/BillingPlatformClient.d.ts +24 -12
  54. package/sdk/platform/Billing/BillingPlatformClient.js +299 -54
  55. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -17
  56. package/sdk/platform/Cart/CartPlatformApplicationClient.js +409 -72
  57. package/sdk/platform/Cart/CartPlatformModel.d.ts +35 -35
  58. package/sdk/platform/Cart/CartPlatformModel.js +617 -617
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +167 -114
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1562 -453
  61. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +8 -8
  62. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +39 -39
  63. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +314 -196
  64. package/sdk/platform/Catalog/CatalogPlatformClient.js +2459 -718
  65. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +103 -94
  66. package/sdk/platform/Catalog/CatalogPlatformModel.js +2063 -1797
  67. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +17 -15
  68. package/sdk/platform/Catalog/CatalogPlatformValidator.js +95 -76
  69. package/sdk/platform/Common/CommonPlatformClient.d.ts +4 -2
  70. package/sdk/platform/Common/CommonPlatformClient.js +51 -8
  71. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -40
  72. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +1000 -168
  73. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -1
  74. package/sdk/platform/Communication/CommunicationPlatformClient.js +28 -4
  75. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +27 -14
  76. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +335 -54
  77. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +10 -10
  78. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +278 -278
  79. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +56 -28
  80. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +702 -118
  81. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +36 -18
  82. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +457 -82
  83. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +148 -67
  84. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1724 -284
  85. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -0
  86. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +7 -0
  87. package/sdk/platform/Content/ContentPlatformModel.d.ts +4 -0
  88. package/sdk/platform/Content/ContentPlatformModel.js +43 -1
  89. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +21 -10
  90. package/sdk/platform/Discount/DiscountPlatformClient.js +270 -44
  91. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +8 -4
  92. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +102 -16
  93. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -6
  94. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +150 -24
  95. package/sdk/platform/Inventory/InventoryPlatformClient.d.ts +27 -14
  96. package/sdk/platform/Inventory/InventoryPlatformClient.js +316 -52
  97. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +26 -13
  98. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +311 -52
  99. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -11
  100. package/sdk/platform/Lead/LeadPlatformClient.js +266 -44
  101. package/sdk/platform/OAuthClient.js +8 -8
  102. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +6 -3
  103. package/sdk/platform/Order/OrderPlatformApplicationClient.js +78 -14
  104. package/sdk/platform/Order/OrderPlatformClient.d.ts +95 -43
  105. package/sdk/platform/Order/OrderPlatformClient.js +1062 -180
  106. package/sdk/platform/Order/OrderPlatformModel.d.ts +64 -60
  107. package/sdk/platform/Order/OrderPlatformModel.js +1481 -1425
  108. package/sdk/platform/Order/OrderPlatformValidator.js +5 -0
  109. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -2
  110. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +52 -8
  111. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +1 -1
  112. package/sdk/platform/Partner/PartnerPlatformModel.js +8 -8
  113. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +22 -11
  114. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +287 -56
  115. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +21 -11
  116. package/sdk/platform/Payment/PaymentPlatformClient.js +263 -48
  117. package/sdk/platform/Payment/PaymentPlatformModel.js +122 -122
  118. package/sdk/platform/PlatformApplicationClient.d.ts +2959 -2787
  119. package/sdk/platform/PlatformApplicationClient.js +3420 -3212
  120. package/sdk/platform/PlatformClient.d.ts +2959 -2787
  121. package/sdk/platform/PlatformClient.js +3420 -3212
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +26 -13
  123. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +308 -54
  124. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +8 -4
  125. package/sdk/platform/Share/SharePlatformApplicationClient.js +94 -16
  126. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +47 -23
  127. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +571 -96
  128. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +24 -12
  129. package/sdk/platform/User/UserPlatformApplicationClient.js +296 -48
  130. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +12 -6
  131. package/sdk/platform/Webhook/WebhookPlatformClient.js +157 -30
  132. package/sdk/public/Configuration/ConfigurationPublicClient.js +51 -8
  133. package/sdk/public/Inventory/InventoryPublicClient.js +149 -26
  134. package/sdk/public/Webhook/WebhookPublicClient.js +51 -10
@@ -1355,49 +1355,59 @@ Returns a success response
1355
1355
 
1356
1356
 
1357
1357
 
1358
- #### [BusinessCountryInfo](#BusinessCountryInfo)
1358
+ #### [UserSerializer](#UserSerializer)
1359
1359
 
1360
1360
  | Properties | Type | Nullable | Description |
1361
1361
  | ---------- | ---- | -------- | ----------- |
1362
- | country_code | string | no | |
1363
- | country | string | no | |
1362
+ | user_id | string | no | |
1363
+ | username | string | no | |
1364
+ | contact | string | no | |
1364
1365
 
1365
1366
  ---
1366
1367
 
1367
1368
 
1368
1369
 
1369
1370
 
1370
- #### [SellerPhoneNumber](#SellerPhoneNumber)
1371
+ #### [GetAddressSerializer](#GetAddressSerializer)
1371
1372
 
1372
1373
  | Properties | Type | Nullable | Description |
1373
1374
  | ---------- | ---- | -------- | ----------- |
1374
- | number | string | yes | |
1375
- | country_code | number | yes | |
1375
+ | address1 | string | no | |
1376
+ | latitude | number | yes | |
1377
+ | city | string | no | |
1378
+ | longitude | number | yes | |
1379
+ | country_code | string | no | |
1380
+ | address2 | string | no | |
1381
+ | state | string | no | |
1382
+ | pincode | number | no | |
1383
+ | country | string | no | |
1384
+ | address_type | string | no | |
1385
+ | landmark | string | no | |
1376
1386
 
1377
1387
  ---
1378
1388
 
1379
1389
 
1380
1390
 
1381
1391
 
1382
- #### [ContactDetails](#ContactDetails)
1392
+ #### [CompanyTaxesSerializer](#CompanyTaxesSerializer)
1383
1393
 
1384
1394
  | Properties | Type | Nullable | Description |
1385
1395
  | ---------- | ---- | -------- | ----------- |
1386
- | emails | [string] | no | |
1387
- | phone | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1396
+ | effective_date | string | no | |
1397
+ | rate | number | no | |
1398
+ | enable | boolean | no | |
1388
1399
 
1389
1400
  ---
1390
1401
 
1391
1402
 
1392
1403
 
1393
1404
 
1394
- #### [UserSerializer](#UserSerializer)
1405
+ #### [BusinessCountryInfo](#BusinessCountryInfo)
1395
1406
 
1396
1407
  | Properties | Type | Nullable | Description |
1397
1408
  | ---------- | ---- | -------- | ----------- |
1398
- | user_id | string | no | |
1399
- | contact | string | no | |
1400
- | username | string | no | |
1409
+ | country_code | string | no | |
1410
+ | country | string | no | |
1401
1411
 
1402
1412
  ---
1403
1413
 
@@ -1426,49 +1436,39 @@ Returns a success response
1426
1436
 
1427
1437
 
1428
1438
 
1429
- #### [GetAddressSerializer](#GetAddressSerializer)
1439
+ #### [SellerPhoneNumber](#SellerPhoneNumber)
1430
1440
 
1431
1441
  | Properties | Type | Nullable | Description |
1432
1442
  | ---------- | ---- | -------- | ----------- |
1433
- | country_code | string | no | |
1434
- | country | string | no | |
1435
- | pincode | number | no | |
1436
- | state | string | no | |
1437
- | landmark | string | no | |
1438
- | address_type | string | no | |
1439
- | longitude | number | yes | |
1440
- | address2 | string | no | |
1441
- | address1 | string | no | |
1442
- | latitude | number | yes | |
1443
- | city | string | no | |
1443
+ | country_code | number | yes | |
1444
+ | number | string | yes | |
1444
1445
 
1445
1446
  ---
1446
1447
 
1447
1448
 
1448
1449
 
1449
1450
 
1450
- #### [Document](#Document)
1451
+ #### [ContactDetails](#ContactDetails)
1451
1452
 
1452
1453
  | Properties | Type | Nullable | Description |
1453
1454
  | ---------- | ---- | -------- | ----------- |
1454
- | url | string | no | |
1455
- | legal_name | string | no | |
1456
- | verified | boolean | no | |
1457
- | type | string | yes | |
1458
- | value | string | yes | |
1455
+ | phone | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1456
+ | emails | [string] | no | |
1459
1457
 
1460
1458
  ---
1461
1459
 
1462
1460
 
1463
1461
 
1464
1462
 
1465
- #### [CompanyTaxesSerializer](#CompanyTaxesSerializer)
1463
+ #### [Document](#Document)
1466
1464
 
1467
1465
  | Properties | Type | Nullable | Description |
1468
1466
  | ---------- | ---- | -------- | ----------- |
1469
- | rate | number | no | |
1470
- | enable | boolean | no | |
1471
- | effective_date | string | no | |
1467
+ | url | string | no | |
1468
+ | legal_name | string | no | |
1469
+ | value | string | yes | |
1470
+ | type | string | yes | |
1471
+ | verified | boolean | no | |
1472
1472
 
1473
1473
  ---
1474
1474
 
@@ -1479,29 +1479,29 @@ Returns a success response
1479
1479
 
1480
1480
  | Properties | Type | Nullable | Description |
1481
1481
  | ---------- | ---- | -------- | ----------- |
1482
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1483
+ | franchise_enabled | boolean | no | |
1484
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1485
+ | taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
1486
+ | uid | number | yes | |
1487
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1482
1488
  | business_info | string | no | |
1489
+ | warnings | string | no | |
1483
1490
  | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1484
- | verified_on | string | no | |
1485
- | contact_details | [ContactDetails](#ContactDetails) | no | |
1486
1491
  | stage | string | no | |
1492
+ | modified_on | string | no | |
1487
1493
  | company_type | string | yes | |
1488
- | _custom_json | string | no | |
1494
+ | business_details | [BusinessDetails](#BusinessDetails) | no | |
1495
+ | contact_details | [ContactDetails](#ContactDetails) | no | |
1489
1496
  | business_type | string | yes | |
1490
- | warnings | string | no | |
1491
- | name | string | no | |
1492
1497
  | notification_emails | [string] | no | |
1493
- | created_by | [UserSerializer](#UserSerializer) | no | |
1494
1498
  | modified_by | [UserSerializer](#UserSerializer) | no | |
1495
- | franchise_enabled | boolean | no | |
1496
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1497
- | mode | string | no | |
1498
- | business_details | [BusinessDetails](#BusinessDetails) | no | |
1499
- | modified_on | string | no | |
1500
- | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1501
1499
  | documents | [[Document](#Document)] | no | |
1502
- | uid | number | yes | |
1503
- | taxes | [[CompanyTaxesSerializer](#CompanyTaxesSerializer)] | no | |
1504
1500
  | created_on | string | no | |
1501
+ | mode | string | no | |
1502
+ | verified_on | string | no | |
1503
+ | name | string | no | |
1504
+ | _custom_json | string | no | |
1505
1505
 
1506
1506
  ---
1507
1507
 
@@ -1513,43 +1513,43 @@ Returns a success response
1513
1513
  | Properties | Type | Nullable | Description |
1514
1514
  | ---------- | ---- | -------- | ----------- |
1515
1515
  | message | string | no | |
1516
- | meta | string | no | |
1517
- | code | string | no | |
1518
1516
  | status | number | no | |
1517
+ | code | string | no | |
1518
+ | meta | string | no | |
1519
1519
 
1520
1520
  ---
1521
1521
 
1522
1522
 
1523
1523
 
1524
1524
 
1525
- #### [CompanyTaxesSerializer1](#CompanyTaxesSerializer1)
1525
+ #### [CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)
1526
1526
 
1527
1527
  | Properties | Type | Nullable | Description |
1528
1528
  | ---------- | ---- | -------- | ----------- |
1529
- | rate | number | no | |
1530
- | enable | boolean | no | |
1531
- | effective_date | string | no | |
1529
+ | address1 | string | yes | |
1530
+ | latitude | number | yes | |
1531
+ | city | string | yes | |
1532
+ | longitude | number | yes | |
1533
+ | country_code | string | no | |
1534
+ | address2 | string | no | |
1535
+ | state | string | yes | |
1536
+ | pincode | number | yes | |
1537
+ | country | string | yes | |
1538
+ | address_type | string | yes | |
1539
+ | landmark | string | no | |
1532
1540
 
1533
1541
  ---
1534
1542
 
1535
1543
 
1536
1544
 
1537
1545
 
1538
- #### [CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)
1546
+ #### [CompanyTaxesSerializer1](#CompanyTaxesSerializer1)
1539
1547
 
1540
1548
  | Properties | Type | Nullable | Description |
1541
1549
  | ---------- | ---- | -------- | ----------- |
1542
- | country_code | string | no | |
1543
- | country | string | yes | |
1544
- | pincode | number | yes | |
1545
- | state | string | yes | |
1546
- | landmark | string | no | |
1547
- | address_type | string | yes | |
1548
- | longitude | number | yes | |
1549
- | address2 | string | no | |
1550
- | address1 | string | yes | |
1551
- | latitude | number | yes | |
1552
- | city | string | yes | |
1550
+ | effective_date | string | no | |
1551
+ | rate | number | no | |
1552
+ | enable | boolean | no | |
1553
1553
 
1554
1554
  ---
1555
1555
 
@@ -1560,20 +1560,20 @@ Returns a success response
1560
1560
 
1561
1561
  | Properties | Type | Nullable | Description |
1562
1562
  | ---------- | ---- | -------- | ----------- |
1563
- | business_info | string | no | |
1564
- | franchise_enabled | boolean | no | |
1565
- | warnings | string | no | |
1566
- | contact_details | [ContactDetails](#ContactDetails) | no | |
1567
- | reject_reason | string | no | |
1568
- | name | string | no | |
1569
- | business_details | [BusinessDetails](#BusinessDetails) | no | |
1563
+ | addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
1570
1564
  | company_type | string | no | |
1571
- | documents | [[Document](#Document)] | no | |
1572
1565
  | taxes | [[CompanyTaxesSerializer1](#CompanyTaxesSerializer1)] | no | |
1573
- | _custom_json | string | no | |
1566
+ | business_details | [BusinessDetails](#BusinessDetails) | no | |
1567
+ | reject_reason | string | no | |
1568
+ | contact_details | [ContactDetails](#ContactDetails) | no | |
1574
1569
  | business_type | string | no | |
1570
+ | name | string | no | |
1575
1571
  | notification_emails | [string] | no | |
1576
- | addresses | [[CreateUpdateAddressSerializer](#CreateUpdateAddressSerializer)] | no | |
1572
+ | business_info | string | no | |
1573
+ | warnings | string | no | |
1574
+ | _custom_json | string | no | |
1575
+ | documents | [[Document](#Document)] | no | |
1576
+ | franchise_enabled | boolean | no | |
1577
1577
 
1578
1578
  ---
1579
1579
 
@@ -1584,8 +1584,8 @@ Returns a success response
1584
1584
 
1585
1585
  | Properties | Type | Nullable | Description |
1586
1586
  | ---------- | ---- | -------- | ----------- |
1587
- | uid | number | no | |
1588
1587
  | success | boolean | no | |
1588
+ | uid | number | no | |
1589
1589
 
1590
1590
  ---
1591
1591
 
@@ -1608,12 +1608,12 @@ Returns a success response
1608
1608
 
1609
1609
  | Properties | Type | Nullable | Description |
1610
1610
  | ---------- | ---- | -------- | ----------- |
1611
- | store_documents | [DocumentsObj](#DocumentsObj) | no | |
1612
- | product | [DocumentsObj](#DocumentsObj) | no | |
1613
- | brand | [DocumentsObj](#DocumentsObj) | no | |
1614
- | company_documents | [DocumentsObj](#DocumentsObj) | no | |
1615
1611
  | stage | string | no | |
1616
1612
  | uid | number | no | |
1613
+ | company_documents | [DocumentsObj](#DocumentsObj) | no | |
1614
+ | store_documents | [DocumentsObj](#DocumentsObj) | no | |
1615
+ | brand | [DocumentsObj](#DocumentsObj) | no | |
1616
+ | product | [DocumentsObj](#DocumentsObj) | no | |
1617
1617
  | store | [DocumentsObj](#DocumentsObj) | no | |
1618
1618
 
1619
1619
  ---
@@ -1625,8 +1625,8 @@ Returns a success response
1625
1625
 
1626
1626
  | Properties | Type | Nullable | Description |
1627
1627
  | ---------- | ---- | -------- | ----------- |
1628
- | portrait | string | no | |
1629
1628
  | landscape | string | no | |
1629
+ | portrait | string | no | |
1630
1630
 
1631
1631
  ---
1632
1632
 
@@ -1637,25 +1637,25 @@ Returns a success response
1637
1637
 
1638
1638
  | Properties | Type | Nullable | Description |
1639
1639
  | ---------- | ---- | -------- | ----------- |
1640
- | verified_on | string | no | |
1641
- | stage | string | no | |
1642
- | _custom_json | string | no | |
1643
- | synonyms | [string] | no | |
1640
+ | _locale_language | string | no | |
1641
+ | reject_reason | string | no | |
1644
1642
  | logo | string | no | |
1645
- | warnings | string | no | |
1646
- | name | string | yes | |
1647
- | created_by | [UserSerializer](#UserSerializer) | no | |
1648
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1643
+ | description | string | no | |
1649
1644
  | verified_by | [UserSerializer](#UserSerializer) | no | |
1650
- | mode | string | no | |
1651
- | reject_reason | string | no | |
1652
- | modified_on | string | no | |
1645
+ | uid | number | no | |
1646
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1647
+ | warnings | string | no | |
1653
1648
  | slug_key | string | no | |
1654
- | description | string | no | |
1649
+ | stage | string | no | |
1650
+ | modified_on | string | no | |
1655
1651
  | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1656
- | uid | number | no | |
1652
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1657
1653
  | created_on | string | no | |
1658
- | _locale_language | string | no | |
1654
+ | mode | string | no | |
1655
+ | verified_on | string | no | |
1656
+ | name | string | yes | |
1657
+ | _custom_json | string | no | |
1658
+ | synonyms | [string] | no | |
1659
1659
 
1660
1660
  ---
1661
1661
 
@@ -1666,15 +1666,15 @@ Returns a success response
1666
1666
 
1667
1667
  | Properties | Type | Nullable | Description |
1668
1668
  | ---------- | ---- | -------- | ----------- |
1669
- | description | string | no | |
1670
1669
  | brand_tier | string | no | |
1670
+ | uid | number | no | |
1671
+ | _locale_language | string | no | |
1671
1672
  | logo | string | yes | |
1673
+ | description | string | no | |
1672
1674
  | name | string | yes | |
1673
- | company_id | number | no | |
1674
1675
  | banner | [BrandBannerSerializer](#BrandBannerSerializer) | no | |
1675
- | uid | number | no | |
1676
1676
  | _custom_json | string | no | |
1677
- | _locale_language | string | no | |
1677
+ | company_id | number | no | |
1678
1678
  | synonyms | [string] | no | |
1679
1679
 
1680
1680
  ---
@@ -1686,13 +1686,13 @@ Returns a success response
1686
1686
 
1687
1687
  | Properties | Type | Nullable | Description |
1688
1688
  | ---------- | ---- | -------- | ----------- |
1689
- | has_next | boolean | no | |
1689
+ | item_total | number | no | |
1690
+ | type | string | yes | |
1691
+ | has_previous | boolean | no | |
1690
1692
  | next_id | string | no | |
1693
+ | has_next | boolean | no | |
1691
1694
  | current | number | no | |
1692
- | type | string | yes | |
1693
1695
  | size | number | no | |
1694
- | has_previous | boolean | no | |
1695
- | item_total | number | no | |
1696
1696
 
1697
1697
  ---
1698
1698
 
@@ -1703,8 +1703,8 @@ Returns a success response
1703
1703
 
1704
1704
  | Properties | Type | Nullable | Description |
1705
1705
  | ---------- | ---- | -------- | ----------- |
1706
- | name | string | yes | |
1707
1706
  | url | string | yes | |
1707
+ | name | string | yes | |
1708
1708
 
1709
1709
  ---
1710
1710
 
@@ -1727,24 +1727,24 @@ Returns a success response
1727
1727
 
1728
1728
  | Properties | Type | Nullable | Description |
1729
1729
  | ---------- | ---- | -------- | ----------- |
1730
- | details | [CompanyDetails](#CompanyDetails) | no | |
1731
- | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1732
- | created_by | [UserSerializer](#UserSerializer) | no | |
1733
- | verified_on | string | no | |
1734
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1735
- | reject_reason | string | no | |
1730
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1736
1731
  | stage | string | no | |
1737
- | name | string | no | |
1732
+ | modified_on | string | no | |
1738
1733
  | company_type | string | yes | |
1739
1734
  | uid | number | no | |
1740
- | _custom_json | string | no | |
1741
- | modified_on | string | no | |
1735
+ | reject_reason | string | no | |
1742
1736
  | business_type | string | yes | |
1743
- | created_on | string | no | |
1737
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1738
+ | name | string | no | |
1739
+ | details | [CompanyDetails](#CompanyDetails) | no | |
1740
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1744
1741
  | notification_emails | [string] | no | |
1745
- | market_channels | [string] | no | |
1746
1742
  | modified_by | [UserSerializer](#UserSerializer) | no | |
1747
- | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1743
+ | market_channels | [string] | no | |
1744
+ | _custom_json | string | no | |
1745
+ | business_country_info | [BusinessCountryInfo](#BusinessCountryInfo) | no | |
1746
+ | created_on | string | no | |
1747
+ | verified_on | string | no | |
1748
1748
 
1749
1749
  ---
1750
1750
 
@@ -1755,18 +1755,18 @@ Returns a success response
1755
1755
 
1756
1756
  | Properties | Type | Nullable | Description |
1757
1757
  | ---------- | ---- | -------- | ----------- |
1758
- | company | [CompanySerializer](#CompanySerializer) | no | |
1759
- | created_by | [UserSerializer](#UserSerializer) | no | |
1758
+ | stage | string | no | |
1759
+ | modified_on | string | no | |
1760
+ | uid | number | no | |
1761
+ | reject_reason | string | no | |
1760
1762
  | brand | [GetBrandResponseSerializer](#GetBrandResponseSerializer) | no | |
1761
- | verified_on | string | no | |
1762
1763
  | verified_by | [UserSerializer](#UserSerializer) | no | |
1764
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1763
1765
  | warnings | string | no | |
1764
- | reject_reason | string | no | |
1765
- | stage | string | no | |
1766
- | uid | number | no | |
1767
- | modified_on | string | no | |
1768
- | created_on | string | no | |
1769
1766
  | modified_by | [UserSerializer](#UserSerializer) | no | |
1767
+ | company | [CompanySerializer](#CompanySerializer) | no | |
1768
+ | created_on | string | no | |
1769
+ | verified_on | string | no | |
1770
1770
 
1771
1771
  ---
1772
1772
 
@@ -1789,21 +1789,32 @@ Returns a success response
1789
1789
 
1790
1790
  | Properties | Type | Nullable | Description |
1791
1791
  | ---------- | ---- | -------- | ----------- |
1792
+ | brands | [number] | yes | |
1792
1793
  | company | number | yes | |
1793
1794
  | uid | number | no | |
1794
- | brands | [number] | yes | |
1795
1795
 
1796
1796
  ---
1797
1797
 
1798
1798
 
1799
1799
 
1800
1800
 
1801
- #### [ProductReturnConfigSerializer](#ProductReturnConfigSerializer)
1801
+ #### [GetCompanySerializer](#GetCompanySerializer)
1802
1802
 
1803
1803
  | Properties | Type | Nullable | Description |
1804
1804
  | ---------- | ---- | -------- | ----------- |
1805
- | on_same_store | boolean | no | |
1806
- | store_uid | number | no | |
1805
+ | stage | string | no | |
1806
+ | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1807
+ | modified_on | string | no | |
1808
+ | company_type | string | no | |
1809
+ | uid | number | no | |
1810
+ | reject_reason | string | no | |
1811
+ | business_type | string | no | |
1812
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1813
+ | name | string | no | |
1814
+ | created_by | [UserSerializer](#UserSerializer) | no | |
1815
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1816
+ | created_on | string | no | |
1817
+ | verified_on | string | no | |
1807
1818
 
1808
1819
  ---
1809
1820
 
@@ -1814,8 +1825,8 @@ Returns a success response
1814
1825
 
1815
1826
  | Properties | Type | Nullable | Description |
1816
1827
  | ---------- | ---- | -------- | ----------- |
1817
- | end_date | string | yes | |
1818
1828
  | start_date | string | yes | |
1829
+ | end_date | string | yes | |
1819
1830
 
1820
1831
  ---
1821
1832
 
@@ -1826,96 +1837,85 @@ Returns a success response
1826
1837
 
1827
1838
  | Properties | Type | Nullable | Description |
1828
1839
  | ---------- | ---- | -------- | ----------- |
1840
+ | date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
1829
1841
  | title | string | yes | |
1830
1842
  | holiday_type | string | yes | |
1831
- | date | [HolidayDateSerializer](#HolidayDateSerializer) | yes | |
1832
1843
 
1833
1844
  ---
1834
1845
 
1835
1846
 
1836
1847
 
1837
1848
 
1838
- #### [LocationTimingSerializer](#LocationTimingSerializer)
1849
+ #### [InvoiceCredSerializer](#InvoiceCredSerializer)
1839
1850
 
1840
1851
  | Properties | Type | Nullable | Description |
1841
1852
  | ---------- | ---- | -------- | ----------- |
1842
- | minute | number | yes | |
1843
- | hour | number | yes | |
1853
+ | username | string | no | |
1854
+ | password | string | no | |
1855
+ | enabled | boolean | no | |
1844
1856
 
1845
1857
  ---
1846
1858
 
1847
1859
 
1848
1860
 
1849
1861
 
1850
- #### [LocationDayWiseSerializer](#LocationDayWiseSerializer)
1862
+ #### [InvoiceDetailsSerializer](#InvoiceDetailsSerializer)
1851
1863
 
1852
1864
  | Properties | Type | Nullable | Description |
1853
1865
  | ---------- | ---- | -------- | ----------- |
1854
- | closing | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1855
- | opening | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1856
- | open | boolean | yes | |
1857
- | weekday | string | yes | |
1866
+ | e_waybill | [InvoiceCredSerializer](#InvoiceCredSerializer) | no | |
1867
+ | e_invoice | [InvoiceCredSerializer](#InvoiceCredSerializer) | no | |
1858
1868
 
1859
1869
  ---
1860
1870
 
1861
1871
 
1862
1872
 
1863
1873
 
1864
- #### [LocationManagerSerializer](#LocationManagerSerializer)
1874
+ #### [LocationTimingSerializer](#LocationTimingSerializer)
1865
1875
 
1866
1876
  | Properties | Type | Nullable | Description |
1867
1877
  | ---------- | ---- | -------- | ----------- |
1868
- | email | string | no | |
1869
- | name | string | no | |
1870
- | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
1878
+ | hour | number | yes | |
1879
+ | minute | number | yes | |
1871
1880
 
1872
1881
  ---
1873
1882
 
1874
1883
 
1875
1884
 
1876
1885
 
1877
- #### [GetCompanySerializer](#GetCompanySerializer)
1886
+ #### [LocationDayWiseSerializer](#LocationDayWiseSerializer)
1878
1887
 
1879
1888
  | Properties | Type | Nullable | Description |
1880
1889
  | ---------- | ---- | -------- | ----------- |
1881
- | created_by | [UserSerializer](#UserSerializer) | no | |
1882
- | verified_on | string | no | |
1883
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1884
- | reject_reason | string | no | |
1885
- | stage | string | no | |
1886
- | name | string | no | |
1887
- | company_type | string | no | |
1888
- | uid | number | no | |
1889
- | modified_on | string | no | |
1890
- | business_type | string | no | |
1891
- | created_on | string | no | |
1892
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1893
- | addresses | [[GetAddressSerializer](#GetAddressSerializer)] | no | |
1890
+ | closing | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1891
+ | weekday | string | yes | |
1892
+ | open | boolean | yes | |
1893
+ | opening | [LocationTimingSerializer](#LocationTimingSerializer) | no | |
1894
1894
 
1895
1895
  ---
1896
1896
 
1897
1897
 
1898
1898
 
1899
1899
 
1900
- #### [InvoiceCredSerializer](#InvoiceCredSerializer)
1900
+ #### [ProductReturnConfigSerializer](#ProductReturnConfigSerializer)
1901
1901
 
1902
1902
  | Properties | Type | Nullable | Description |
1903
1903
  | ---------- | ---- | -------- | ----------- |
1904
- | password | string | no | |
1905
- | enabled | boolean | no | |
1906
- | username | string | no | |
1904
+ | on_same_store | boolean | no | |
1905
+ | store_uid | number | no | |
1907
1906
 
1908
1907
  ---
1909
1908
 
1910
1909
 
1911
1910
 
1912
1911
 
1913
- #### [InvoiceDetailsSerializer](#InvoiceDetailsSerializer)
1912
+ #### [LocationManagerSerializer](#LocationManagerSerializer)
1914
1913
 
1915
1914
  | Properties | Type | Nullable | Description |
1916
1915
  | ---------- | ---- | -------- | ----------- |
1917
- | e_waybill | [InvoiceCredSerializer](#InvoiceCredSerializer) | no | |
1918
- | e_invoice | [InvoiceCredSerializer](#InvoiceCredSerializer) | no | |
1916
+ | email | string | no | |
1917
+ | mobile_no | [SellerPhoneNumber](#SellerPhoneNumber) | yes | |
1918
+ | name | string | no | |
1919
1919
 
1920
1920
  ---
1921
1921
 
@@ -1926,31 +1926,31 @@ Returns a success response
1926
1926
 
1927
1927
  | Properties | Type | Nullable | Description |
1928
1928
  | ---------- | ---- | -------- | ----------- |
1929
- | verified_on | string | no | |
1930
- | stage | string | no | |
1931
- | display_name | string | yes | |
1932
- | _custom_json | string | no | |
1933
- | phone_number | string | no | |
1934
- | warnings | string | no | |
1935
- | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1936
- | name | string | yes | |
1929
+ | store_type | string | no | |
1930
+ | verified_by | [UserSerializer](#UserSerializer) | no | |
1931
+ | company | [GetCompanySerializer](#GetCompanySerializer) | no | |
1937
1932
  | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
1938
- | notification_emails | [string] | no | |
1933
+ | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
1934
+ | uid | number | no | |
1939
1935
  | created_by | [UserSerializer](#UserSerializer) | no | |
1940
- | modified_by | [UserSerializer](#UserSerializer) | no | |
1941
- | verified_by | [UserSerializer](#UserSerializer) | no | |
1936
+ | warnings | string | no | |
1942
1937
  | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
1943
- | code | string | yes | |
1938
+ | address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
1939
+ | stage | string | no | |
1944
1940
  | modified_on | string | no | |
1941
+ | code | string | yes | |
1942
+ | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1945
1943
  | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
1946
- | address | [GetAddressSerializer](#GetAddressSerializer) | yes | |
1947
- | company | [GetCompanySerializer](#GetCompanySerializer) | no | |
1948
- | store_type | string | no | |
1949
- | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
1944
+ | notification_emails | [string] | no | |
1945
+ | modified_by | [UserSerializer](#UserSerializer) | no | |
1950
1946
  | documents | [[Document](#Document)] | no | |
1951
- | uid | number | no | |
1952
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1953
1947
  | created_on | string | no | |
1948
+ | verified_on | string | no | |
1949
+ | phone_number | string | no | |
1950
+ | name | string | yes | |
1951
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
1952
+ | _custom_json | string | no | |
1953
+ | display_name | string | yes | |
1954
1954
 
1955
1955
  ---
1956
1956
 
@@ -1973,17 +1973,17 @@ Returns a success response
1973
1973
 
1974
1974
  | Properties | Type | Nullable | Description |
1975
1975
  | ---------- | ---- | -------- | ----------- |
1976
- | country_code | string | no | |
1977
- | country | string | no | |
1978
- | pincode | number | no | |
1979
- | state | string | no | |
1980
- | landmark | string | no | |
1981
- | address_type | string | no | |
1982
- | longitude | number | yes | |
1983
- | address2 | string | no | |
1984
1976
  | address1 | string | no | |
1985
1977
  | latitude | number | yes | |
1986
1978
  | city | string | no | |
1979
+ | longitude | number | yes | |
1980
+ | country_code | string | no | |
1981
+ | address2 | string | no | |
1982
+ | state | string | no | |
1983
+ | pincode | number | no | |
1984
+ | country | string | no | |
1985
+ | address_type | string | no | |
1986
+ | landmark | string | no | |
1987
1987
 
1988
1988
  ---
1989
1989
 
@@ -1994,23 +1994,23 @@ Returns a success response
1994
1994
 
1995
1995
  | Properties | Type | Nullable | Description |
1996
1996
  | ---------- | ---- | -------- | ----------- |
1997
- | company | number | yes | |
1997
+ | stage | string | no | |
1998
+ | code | string | yes | |
1999
+ | uid | number | no | |
1998
2000
  | product_return_config | [ProductReturnConfigSerializer](#ProductReturnConfigSerializer) | no | |
1999
2001
  | store_type | string | no | |
2000
- | warnings | string | no | |
2001
- | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2002
- | code | string | yes | |
2002
+ | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2003
2003
  | name | string | yes | |
2004
- | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2005
- | stage | string | no | |
2004
+ | notification_emails | [string] | no | |
2005
+ | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2006
+ | warnings | string | no | |
2007
+ | company | number | yes | |
2006
2008
  | display_name | string | yes | |
2009
+ | holiday | [[HolidaySchemaSerializer](#HolidaySchemaSerializer)] | no | |
2007
2010
  | documents | [[Document](#Document)] | no | |
2008
- | uid | number | no | |
2009
- | contact_numbers | [[SellerPhoneNumber](#SellerPhoneNumber)] | no | |
2010
- | manager | [LocationManagerSerializer](#LocationManagerSerializer) | no | |
2011
+ | timing | [[LocationDayWiseSerializer](#LocationDayWiseSerializer)] | no | |
2011
2012
  | _custom_json | string | no | |
2012
2013
  | gst_credentials | [InvoiceDetailsSerializer](#InvoiceDetailsSerializer) | no | |
2013
- | notification_emails | [string] | no | |
2014
2014
  | address | [AddressSerializer](#AddressSerializer) | yes | |
2015
2015
 
2016
2016
  ---