@gofynd/fdk-client-javascript 1.4.15-beta.14 → 1.4.15-beta.15

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 (278) hide show
  1. package/README.md +23 -26
  2. package/package.json +5 -1
  3. package/sdk/application/ApplicationClient.d.ts +5 -6
  4. package/sdk/application/ApplicationClient.js +24 -20
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +133 -83
  6. package/sdk/application/Cart/CartApplicationClient.js +444 -76
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +132 -114
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +209 -126
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +4 -4
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +3 -3
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +3 -3
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +58 -36
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +73 -29
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +95 -66
  16. package/sdk/application/Content/ContentApplicationClient.js +274 -111
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +11 -11
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +10 -10
  19. package/sdk/application/Finance/FinanceApplicationClient.d.ts +29 -0
  20. package/sdk/application/Finance/FinanceApplicationClient.js +111 -0
  21. package/sdk/application/Lead/LeadApplicationClient.d.ts +7 -7
  22. package/sdk/application/Lead/LeadApplicationClient.js +6 -6
  23. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +37 -57
  24. package/sdk/application/Logistic/LogisticApplicationClient.js +117 -180
  25. package/sdk/application/Order/OrderApplicationClient.d.ts +63 -21
  26. package/sdk/application/Order/OrderApplicationClient.js +217 -17
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +179 -149
  28. package/sdk/application/Payment/PaymentApplicationClient.js +301 -167
  29. package/sdk/application/Share/ShareApplicationClient.d.ts +7 -7
  30. package/sdk/application/Share/ShareApplicationClient.js +7 -7
  31. package/sdk/application/Theme/ThemeApplicationClient.d.ts +7 -7
  32. package/sdk/application/Theme/ThemeApplicationClient.js +10 -6
  33. package/sdk/application/User/UserApplicationClient.d.ts +103 -53
  34. package/sdk/application/User/UserApplicationClient.js +308 -49
  35. package/sdk/common/AxiosHelper.js +11 -4
  36. package/sdk/common/Constant.d.ts +27 -4
  37. package/sdk/common/Constant.js +33 -6
  38. package/sdk/common/utils.d.ts +10 -0
  39. package/sdk/common/utils.js +24 -3
  40. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +46 -16
  41. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +266 -40
  42. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +163 -19
  43. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +158 -14
  44. package/sdk/partner/FileStorage/FileStoragePartnerValidator.d.ts +5 -2
  45. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +23 -7
  46. package/sdk/partner/Lead/LeadPartnerClient.d.ts +9 -9
  47. package/sdk/partner/Lead/LeadPartnerClient.js +9 -9
  48. package/sdk/partner/Lead/LeadPartnerModel.d.ts +14 -9
  49. package/sdk/partner/Lead/LeadPartnerModel.js +19 -17
  50. package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +264 -49
  51. package/sdk/partner/Logistics/LogisticsPartnerClient.js +2116 -252
  52. package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +2256 -258
  53. package/sdk/partner/Logistics/LogisticsPartnerModel.js +1187 -230
  54. package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +21 -1
  55. package/sdk/partner/Logistics/LogisticsPartnerValidator.js +218 -13
  56. package/sdk/partner/PartnerClient.d.ts +5 -2
  57. package/sdk/partner/PartnerClient.js +21 -7
  58. package/sdk/partner/Theme/ThemePartnerClient.d.ts +32 -34
  59. package/sdk/partner/Theme/ThemePartnerClient.js +42 -44
  60. package/sdk/partner/Theme/ThemePartnerModel.d.ts +142 -43
  61. package/sdk/partner/Theme/ThemePartnerModel.js +129 -44
  62. package/sdk/partner/Theme/ThemePartnerValidator.js +4 -4
  63. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +83 -27
  64. package/sdk/partner/Webhook/WebhookPartnerClient.js +446 -27
  65. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +920 -185
  66. package/sdk/partner/Webhook/WebhookPartnerModel.js +462 -154
  67. package/sdk/partner/Webhook/WebhookPartnerValidator.d.ts +5 -0
  68. package/sdk/partner/Webhook/WebhookPartnerValidator.js +41 -3
  69. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +8 -7
  70. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +17 -11
  71. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +4 -1
  72. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  73. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +68 -13
  74. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +44 -6
  75. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +3 -33
  76. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +4 -244
  77. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.d.ts +49 -145
  78. package/sdk/platform/AuditTrail/AuditTrailPlatformModel.js +20 -171
  79. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.d.ts +1 -39
  80. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +0 -35
  81. package/sdk/platform/Billing/BillingPlatformClient.d.ts +15 -15
  82. package/sdk/platform/Billing/BillingPlatformClient.js +18 -18
  83. package/sdk/platform/Billing/BillingPlatformModel.d.ts +443 -388
  84. package/sdk/platform/Billing/BillingPlatformModel.js +280 -263
  85. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +16 -18
  86. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -9
  87. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +266 -203
  88. package/sdk/platform/Cart/CartPlatformApplicationClient.js +1446 -500
  89. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +729 -100
  90. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +446 -82
  91. package/sdk/platform/Cart/CartPlatformModel.d.ts +6927 -1396
  92. package/sdk/platform/Cart/CartPlatformModel.js +3065 -1316
  93. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +433 -248
  94. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +1662 -559
  95. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +464 -159
  96. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +304 -87
  97. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +383 -234
  98. package/sdk/platform/Catalog/CatalogPlatformClient.js +2475 -1557
  99. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +9573 -2678
  100. package/sdk/platform/Catalog/CatalogPlatformModel.js +5033 -1973
  101. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +364 -117
  102. package/sdk/platform/Catalog/CatalogPlatformValidator.js +281 -104
  103. package/sdk/platform/Common/CommonPlatformClient.d.ts +5 -4
  104. package/sdk/platform/Common/CommonPlatformClient.js +6 -5
  105. package/sdk/platform/Common/CommonPlatformModel.d.ts +36 -25
  106. package/sdk/platform/Common/CommonPlatformModel.js +25 -14
  107. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +80 -153
  108. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +102 -541
  109. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.d.ts +36 -49
  110. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +20 -60
  111. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +1 -1
  112. package/sdk/platform/Communication/CommunicationPlatformClient.js +1 -1
  113. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +189 -43
  114. package/sdk/platform/Communication/CommunicationPlatformModel.js +165 -42
  115. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +58 -81
  116. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +68 -116
  117. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.d.ts +291 -249
  118. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +243 -234
  119. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +12 -12
  120. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +12 -12
  121. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +78 -65
  122. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +101 -88
  123. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.d.ts +20 -20
  124. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +19 -19
  125. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +68 -34
  126. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +174 -41
  127. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +667 -244
  128. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +474 -155
  129. package/sdk/platform/Configuration/ConfigurationPlatformValidator.d.ts +37 -9
  130. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +27 -8
  131. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +366 -280
  132. package/sdk/platform/Content/ContentPlatformApplicationClient.js +1435 -753
  133. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +323 -223
  134. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +335 -205
  135. package/sdk/platform/Content/ContentPlatformClient.d.ts +304 -106
  136. package/sdk/platform/Content/ContentPlatformClient.js +1842 -450
  137. package/sdk/platform/Content/ContentPlatformModel.d.ts +2582 -566
  138. package/sdk/platform/Content/ContentPlatformModel.js +1426 -558
  139. package/sdk/platform/Content/ContentPlatformValidator.d.ts +293 -114
  140. package/sdk/platform/Content/ContentPlatformValidator.js +328 -101
  141. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +59 -23
  142. package/sdk/platform/Discount/DiscountPlatformClient.js +84 -23
  143. package/sdk/platform/Discount/DiscountPlatformModel.d.ts +403 -110
  144. package/sdk/platform/Discount/DiscountPlatformModel.js +121 -107
  145. package/sdk/platform/Discount/DiscountPlatformValidator.d.ts +56 -36
  146. package/sdk/platform/Discount/DiscountPlatformValidator.js +29 -19
  147. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +12 -110
  148. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +14 -684
  149. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +5 -94
  150. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +4 -115
  151. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +20 -20
  152. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +22 -22
  153. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +90 -920
  154. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +53 -949
  155. package/sdk/platform/FileStorage/FileStoragePlatformValidator.d.ts +6 -6
  156. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +6 -6
  157. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +10 -10
  158. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +10 -10
  159. package/sdk/platform/Lead/LeadPlatformClient.d.ts +11 -11
  160. package/sdk/platform/Lead/LeadPlatformClient.js +11 -11
  161. package/sdk/platform/Lead/LeadPlatformModel.d.ts +14 -9
  162. package/sdk/platform/Lead/LeadPlatformModel.js +20 -18
  163. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +56 -9
  164. package/sdk/platform/Order/OrderPlatformApplicationClient.js +340 -10
  165. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +128 -24
  166. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +81 -19
  167. package/sdk/platform/Order/OrderPlatformClient.d.ts +517 -160
  168. package/sdk/platform/Order/OrderPlatformClient.js +1623 -384
  169. package/sdk/platform/Order/OrderPlatformModel.d.ts +10372 -1587
  170. package/sdk/platform/Order/OrderPlatformModel.js +5726 -1512
  171. package/sdk/platform/Order/OrderPlatformValidator.d.ts +539 -123
  172. package/sdk/platform/Order/OrderPlatformValidator.js +323 -92
  173. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +8 -6
  174. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +11 -9
  175. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +6 -4
  176. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +3 -2
  177. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +77 -25
  178. package/sdk/platform/Partner/PartnerPlatformModel.js +32 -21
  179. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +144 -219
  180. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +307 -796
  181. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +86 -121
  182. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +80 -138
  183. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +30 -30
  184. package/sdk/platform/Payment/PaymentPlatformClient.js +30 -30
  185. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +901 -761
  186. package/sdk/platform/Payment/PaymentPlatformModel.js +663 -583
  187. package/sdk/platform/Payment/PaymentPlatformValidator.d.ts +8 -8
  188. package/sdk/platform/Payment/PaymentPlatformValidator.js +8 -8
  189. package/sdk/platform/PlatformApplicationClient.d.ts +0 -2
  190. package/sdk/platform/PlatformApplicationClient.js +0 -4
  191. package/sdk/platform/PlatformClient.d.ts +5 -4
  192. package/sdk/platform/PlatformClient.js +32 -22
  193. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +526 -69
  194. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +3337 -337
  195. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +603 -38
  196. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +529 -32
  197. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +184 -133
  198. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +780 -491
  199. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +9408 -1666
  200. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +5720 -1765
  201. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +257 -180
  202. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +185 -127
  203. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +7 -7
  204. package/sdk/platform/Share/SharePlatformApplicationClient.js +7 -7
  205. package/sdk/platform/Share/SharePlatformModel.d.ts +45 -9
  206. package/sdk/platform/Share/SharePlatformModel.js +31 -6
  207. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +26 -26
  208. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +38 -29
  209. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -3
  210. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +10 -2
  211. package/sdk/platform/Theme/ThemePlatformClient.d.ts +4 -4
  212. package/sdk/platform/Theme/ThemePlatformClient.js +4 -4
  213. package/sdk/platform/Theme/ThemePlatformModel.d.ts +103 -17
  214. package/sdk/platform/Theme/ThemePlatformModel.js +92 -23
  215. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +167 -45
  216. package/sdk/platform/User/UserPlatformApplicationClient.js +950 -67
  217. package/sdk/platform/User/UserPlatformApplicationValidator.d.ts +189 -3
  218. package/sdk/platform/User/UserPlatformApplicationValidator.js +157 -3
  219. package/sdk/platform/User/UserPlatformModel.d.ts +880 -47
  220. package/sdk/platform/User/UserPlatformModel.js +607 -46
  221. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +33 -86
  222. package/sdk/platform/Webhook/WebhookPlatformClient.js +79 -474
  223. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +861 -422
  224. package/sdk/platform/Webhook/WebhookPlatformModel.js +469 -391
  225. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +10 -55
  226. package/sdk/platform/Webhook/WebhookPlatformValidator.js +12 -72
  227. package/sdk/platform/index.d.ts +0 -2
  228. package/sdk/platform/index.js +0 -4
  229. package/sdk/public/Catalog/CatalogPublicClient.d.ts +22 -0
  230. package/sdk/public/Catalog/CatalogPublicClient.js +133 -0
  231. package/sdk/public/Catalog/CatalogPublicModel.d.ts +158 -0
  232. package/sdk/public/Catalog/CatalogPublicModel.js +116 -0
  233. package/sdk/public/Catalog/CatalogPublicValidator.d.ts +55 -0
  234. package/sdk/public/Catalog/CatalogPublicValidator.js +35 -0
  235. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +5 -4
  236. package/sdk/public/Configuration/ConfigurationPublicClient.js +9 -8
  237. package/sdk/public/Configuration/ConfigurationPublicModel.d.ts +41 -21
  238. package/sdk/public/Configuration/ConfigurationPublicModel.js +28 -12
  239. package/sdk/public/Content/ContentPublicClient.d.ts +145 -2
  240. package/sdk/public/Content/ContentPublicClient.js +1067 -17
  241. package/sdk/public/Content/ContentPublicModel.d.ts +704 -3
  242. package/sdk/public/Content/ContentPublicModel.js +751 -3
  243. package/sdk/public/Content/ContentPublicValidator.d.ts +94 -3
  244. package/sdk/public/Content/ContentPublicValidator.js +119 -2
  245. package/sdk/public/Partner/PartnerPublicClient.d.ts +1 -1
  246. package/sdk/public/Partner/PartnerPublicClient.js +1 -1
  247. package/sdk/public/Partner/PartnerPublicModel.d.ts +248 -72
  248. package/sdk/public/Partner/PartnerPublicModel.js +81 -71
  249. package/sdk/public/Partner/PartnerPublicValidator.d.ts +2 -2
  250. package/sdk/public/Partner/PartnerPublicValidator.js +1 -1
  251. package/sdk/public/PublicClient.d.ts +5 -2
  252. package/sdk/public/PublicClient.js +16 -6
  253. package/sdk/public/Webhook/WebhookPublicClient.d.ts +13 -13
  254. package/sdk/public/Webhook/WebhookPublicClient.js +13 -13
  255. package/sdk/public/Webhook/WebhookPublicModel.d.ts +249 -67
  256. package/sdk/public/Webhook/WebhookPublicModel.js +81 -61
  257. package/sdk/public/Webhook/WebhookPublicValidator.d.ts +4 -4
  258. package/sdk/public/Webhook/WebhookPublicValidator.js +4 -4
  259. package/sdk/public/index.d.ts +1 -0
  260. package/sdk/public/index.js +2 -0
  261. package/utility.d.ts +3 -0
  262. package/utility.js +7 -0
  263. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +0 -79
  264. package/sdk/application/Rewards/RewardsApplicationClient.js +0 -315
  265. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +0 -19
  266. package/sdk/application/Webhook/WebhookApplicationClient.js +0 -72
  267. package/sdk/platform/Finance/FinancePlatformClient.d.ts +0 -320
  268. package/sdk/platform/Finance/FinancePlatformClient.js +0 -2333
  269. package/sdk/platform/Finance/FinancePlatformModel.d.ts +0 -2890
  270. package/sdk/platform/Finance/FinancePlatformModel.js +0 -2148
  271. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +0 -284
  272. package/sdk/platform/Finance/FinancePlatformValidator.js +0 -354
  273. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +0 -136
  274. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +0 -976
  275. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -152
  276. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -157
  277. package/sdk/platform/Rewards/RewardsPlatformModel.d.ts +0 -382
  278. package/sdk/platform/Rewards/RewardsPlatformModel.js +0 -408
@@ -2,24 +2,24 @@ export = CompanyProfilePlatformValidator;
2
2
  /** @typedef CbsOnboardGetParam */
3
3
  /**
4
4
  * @typedef CreateBrandParam
5
- * @property {CompanyProfilePlatformModel.CreateBrandRequestSerializer} body
5
+ * @property {CompanyProfilePlatformModel.CreateBrandRequestSchema} body
6
6
  */
7
7
  /**
8
8
  * @typedef CreateCompanyBrandMappingParam
9
- * @property {CompanyProfilePlatformModel.CompanyBrandPostRequestSerializer} body
9
+ * @property {CompanyProfilePlatformModel.CompanyBrandPostRequestSchema} body
10
10
  */
11
11
  /**
12
12
  * @typedef CreateLocationParam
13
- * @property {CompanyProfilePlatformModel.LocationSerializer} body
13
+ * @property {CompanyProfilePlatformModel.LocationSchema} body
14
14
  */
15
15
  /**
16
16
  * @typedef CreateLocationBulkParam
17
- * @property {CompanyProfilePlatformModel.BulkLocationSerializer} body
17
+ * @property {CompanyProfilePlatformModel.BulkLocationSchema} body
18
18
  */
19
19
  /**
20
20
  * @typedef EditBrandParam
21
21
  * @property {string} brandId - Id of the brand to be viewed.
22
- * @property {CompanyProfilePlatformModel.UpdateBrandRequestSerializer} body
22
+ * @property {CompanyProfilePlatformModel.UpdateBrandRequestSchema} body
23
23
  */
24
24
  /**
25
25
  * @typedef GetBrandParam
@@ -63,7 +63,7 @@ export = CompanyProfilePlatformValidator;
63
63
  /**
64
64
  * @typedef UpdateLocationParam
65
65
  * @property {string} locationId - Id of the location which you want to edit.
66
- * @property {CompanyProfilePlatformModel.LocationSerializer} body
66
+ * @property {CompanyProfilePlatformModel.LocationSchema} body
67
67
  */
68
68
  declare class CompanyProfilePlatformValidator {
69
69
  /** @returns {CbsOnboardGetParam} */
@@ -99,23 +99,23 @@ declare namespace CompanyProfilePlatformValidator {
99
99
  export { CbsOnboardGetParam, CreateBrandParam, CreateCompanyBrandMappingParam, CreateLocationParam, CreateLocationBulkParam, EditBrandParam, GetBrandParam, GetBrandsParam, GetCompanyMetricsParam, GetLocationDetailParam, GetLocationTagsParam, GetLocationsParam, UpdateCompanyParam, UpdateLocationParam };
100
100
  }
101
101
  type CreateBrandParam = {
102
- body: CompanyProfilePlatformModel.CreateBrandRequestSerializer;
102
+ body: CompanyProfilePlatformModel.CreateBrandRequestSchema;
103
103
  };
104
104
  type CreateCompanyBrandMappingParam = {
105
- body: CompanyProfilePlatformModel.CompanyBrandPostRequestSerializer;
105
+ body: CompanyProfilePlatformModel.CompanyBrandPostRequestSchema;
106
106
  };
107
107
  type CreateLocationParam = {
108
- body: CompanyProfilePlatformModel.LocationSerializer;
108
+ body: CompanyProfilePlatformModel.LocationSchema;
109
109
  };
110
110
  type CreateLocationBulkParam = {
111
- body: CompanyProfilePlatformModel.BulkLocationSerializer;
111
+ body: CompanyProfilePlatformModel.BulkLocationSchema;
112
112
  };
113
113
  type EditBrandParam = {
114
114
  /**
115
115
  * - Id of the brand to be viewed.
116
116
  */
117
117
  brandId: string;
118
- body: CompanyProfilePlatformModel.UpdateBrandRequestSerializer;
118
+ body: CompanyProfilePlatformModel.UpdateBrandRequestSchema;
119
119
  };
120
120
  type GetBrandParam = {
121
121
  /**
@@ -193,7 +193,7 @@ type UpdateLocationParam = {
193
193
  * - Id of the location which you want to edit.
194
194
  */
195
195
  locationId: string;
196
- body: CompanyProfilePlatformModel.LocationSerializer;
196
+ body: CompanyProfilePlatformModel.LocationSchema;
197
197
  };
198
198
  type CbsOnboardGetParam = any;
199
199
  type GetCompanyMetricsParam = any;
@@ -6,28 +6,28 @@ const CompanyProfilePlatformModel = require("./CompanyProfilePlatformModel");
6
6
 
7
7
  /**
8
8
  * @typedef CreateBrandParam
9
- * @property {CompanyProfilePlatformModel.CreateBrandRequestSerializer} body
9
+ * @property {CompanyProfilePlatformModel.CreateBrandRequestSchema} body
10
10
  */
11
11
 
12
12
  /**
13
13
  * @typedef CreateCompanyBrandMappingParam
14
- * @property {CompanyProfilePlatformModel.CompanyBrandPostRequestSerializer} body
14
+ * @property {CompanyProfilePlatformModel.CompanyBrandPostRequestSchema} body
15
15
  */
16
16
 
17
17
  /**
18
18
  * @typedef CreateLocationParam
19
- * @property {CompanyProfilePlatformModel.LocationSerializer} body
19
+ * @property {CompanyProfilePlatformModel.LocationSchema} body
20
20
  */
21
21
 
22
22
  /**
23
23
  * @typedef CreateLocationBulkParam
24
- * @property {CompanyProfilePlatformModel.BulkLocationSerializer} body
24
+ * @property {CompanyProfilePlatformModel.BulkLocationSchema} body
25
25
  */
26
26
 
27
27
  /**
28
28
  * @typedef EditBrandParam
29
29
  * @property {string} brandId - Id of the brand to be viewed.
30
- * @property {CompanyProfilePlatformModel.UpdateBrandRequestSerializer} body
30
+ * @property {CompanyProfilePlatformModel.UpdateBrandRequestSchema} body
31
31
  */
32
32
 
33
33
  /**
@@ -79,7 +79,7 @@ const CompanyProfilePlatformModel = require("./CompanyProfilePlatformModel");
79
79
  /**
80
80
  * @typedef UpdateLocationParam
81
81
  * @property {string} locationId - Id of the location which you want to edit.
82
- * @property {CompanyProfilePlatformModel.LocationSerializer} body
82
+ * @property {CompanyProfilePlatformModel.LocationSchema} body
83
83
  */
84
84
 
85
85
  class CompanyProfilePlatformValidator {
@@ -91,28 +91,28 @@ class CompanyProfilePlatformValidator {
91
91
  /** @returns {CreateBrandParam} */
92
92
  static createBrand() {
93
93
  return Joi.object({
94
- body: CompanyProfilePlatformModel.CreateBrandRequestSerializer().required(),
94
+ body: CompanyProfilePlatformModel.CreateBrandRequestSchema().required(),
95
95
  }).required();
96
96
  }
97
97
 
98
98
  /** @returns {CreateCompanyBrandMappingParam} */
99
99
  static createCompanyBrandMapping() {
100
100
  return Joi.object({
101
- body: CompanyProfilePlatformModel.CompanyBrandPostRequestSerializer().required(),
101
+ body: CompanyProfilePlatformModel.CompanyBrandPostRequestSchema().required(),
102
102
  }).required();
103
103
  }
104
104
 
105
105
  /** @returns {CreateLocationParam} */
106
106
  static createLocation() {
107
107
  return Joi.object({
108
- body: CompanyProfilePlatformModel.LocationSerializer().required(),
108
+ body: CompanyProfilePlatformModel.LocationSchema().required(),
109
109
  }).required();
110
110
  }
111
111
 
112
112
  /** @returns {CreateLocationBulkParam} */
113
113
  static createLocationBulk() {
114
114
  return Joi.object({
115
- body: CompanyProfilePlatformModel.BulkLocationSerializer().required(),
115
+ body: CompanyProfilePlatformModel.BulkLocationSchema().required(),
116
116
  }).required();
117
117
  }
118
118
 
@@ -120,7 +120,7 @@ class CompanyProfilePlatformValidator {
120
120
  static editBrand() {
121
121
  return Joi.object({
122
122
  brandId: Joi.string().allow("").required(),
123
- body: CompanyProfilePlatformModel.UpdateBrandRequestSerializer().required(),
123
+ body: CompanyProfilePlatformModel.UpdateBrandRequestSchema().required(),
124
124
  }).required();
125
125
  }
126
126
 
@@ -182,7 +182,7 @@ class CompanyProfilePlatformValidator {
182
182
  static updateLocation() {
183
183
  return Joi.object({
184
184
  locationId: Joi.string().allow("").required(),
185
- body: CompanyProfilePlatformModel.LocationSerializer().required(),
185
+ body: CompanyProfilePlatformModel.LocationSchema().required(),
186
186
  }).required();
187
187
  }
188
188
  }
@@ -10,7 +10,7 @@ declare class Configuration {
10
10
  * @returns {Promise<ConfigurationPlatformModel.Domain>} - Success response
11
11
  * @name addDomain
12
12
  * @summary: Create domain
13
- * @description: Creates a domain for an sales channel. Note - Only 15 domains can be added to the sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/addDomain/).
13
+ * @description: Creates a domain for an sales channel. Note - Only 15 domains can be added to the sales channel - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/addDomain/).
14
14
  */
15
15
  addDomain({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.AddDomainParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.Domain>;
16
16
  /**
@@ -19,24 +19,26 @@ declare class Configuration {
19
19
  *
20
20
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
21
21
  * @param {import("../PlatformAPIClient").Options} - Options
22
- * @returns {Promise<ConfigurationPlatformModel.DomainsResponse>} - Success response
22
+ * @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
23
+ * Success response
23
24
  * @name changeDomainType
24
25
  * @summary: Update domain
25
- * @description: Modify the type of a specific domain. Primary domain is used as the URL of your website. Short link domain is comparatively smaller and used while generating short links. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/changeDomainType/).
26
+ * @description: Modify the type of a specific domain. Primary domain is used as the URL of your website. Short link domain is comparatively smaller and used while generating short links. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/changeDomainType/).
26
27
  */
27
- changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponse>;
28
+ changeDomainType({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ChangeDomainTypeParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
28
29
  /**
29
30
  * @param {ConfigurationPlatformApplicationValidator.GetAppApiTokensParam} arg
30
31
  * - Arg object
31
32
  *
32
33
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
33
34
  * @param {import("../PlatformAPIClient").Options} - Options
34
- * @returns {Promise<ConfigurationPlatformModel.TokenResponse>} - Success response
35
+ * @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
36
+ * Success response
35
37
  * @name getAppApiTokens
36
38
  * @summary: Get sales channel API tokens
37
- * @description: Retrieve the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google, and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppApiTokens/).
39
+ * @description: Retrieve the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google, and Facebook auth. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppApiTokens/).
38
40
  */
39
- getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponse>;
41
+ getAppApiTokens({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
40
42
  /**
41
43
  * @param {ConfigurationPlatformApplicationValidator.GetAppBasicDetailsParam} arg
42
44
  * - Arg object
@@ -46,7 +48,7 @@ declare class Configuration {
46
48
  * @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
47
49
  * @name getAppBasicDetails
48
50
  * @summary: Get sales channel
49
- * @description: Shows basic sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppBasicDetails/).
51
+ * @description: Shows basic sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppBasicDetails/).
50
52
  */
51
53
  getAppBasicDetails({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
52
54
  /**
@@ -55,12 +57,13 @@ declare class Configuration {
55
57
  *
56
58
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
57
59
  * @param {import("../PlatformAPIClient").Options} - Options
58
- * @returns {Promise<ConfigurationPlatformModel.CompaniesResponse>} - Success response
60
+ * @returns {Promise<ConfigurationPlatformModel.CompaniesResponseSchema>} -
61
+ * Success response
59
62
  * @name getAppCompanies
60
63
  * @summary: List sales channel companies
61
- * @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCompanies/).
64
+ * @description: Retrieve info of all the companies (e.g. name, uid, and company type) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppCompanies/).
62
65
  */
63
- getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.CompaniesResponse>;
66
+ getAppCompanies({ uid, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppCompaniesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.CompaniesResponseSchema>;
64
67
  /**
65
68
  * @param {ConfigurationPlatformApplicationValidator.GetAppContactInfoParam} arg
66
69
  * - Arg object
@@ -71,7 +74,7 @@ declare class Configuration {
71
74
  * Success response
72
75
  * @name getAppContactInfo
73
76
  * @summary: Get sales channel contact
74
- * @description: Fetch data such as social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppContactInfo/).
77
+ * @description: Fetch data such as social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppContactInfo/).
75
78
  */
76
79
  getAppContactInfo({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
77
80
  /**
@@ -84,7 +87,7 @@ declare class Configuration {
84
87
  * Success response
85
88
  * @name getAppCurrencyConfig
86
89
  * @summary: Get sales channel currency configuration
87
- * @description: Retrieve a list of currencies supported in the current sales channel. Moreover, get the cuurency that is set as the default one in the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppCurrencyConfig/).
90
+ * @description: Retrieve a list of currencies supported in the current sales channel. Moreover, get the cuurency that is set as the default one in the sales channel. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppCurrencyConfig/).
88
91
  */
89
92
  getAppCurrencyConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
90
93
  /**
@@ -93,38 +96,41 @@ declare class Configuration {
93
96
  *
94
97
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
95
98
  * @param {import("../PlatformAPIClient").Options} - Options
96
- * @returns {Promise<ConfigurationPlatformModel.AppFeatureResponse>} -
97
- * Success response
99
+ * @returns {Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>}
100
+ * - Success response
101
+ *
98
102
  * @name getAppFeatures
99
103
  * @summary: Get sales channel
100
- * @description: Shows feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppFeatures/).
104
+ * @description: Shows feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppFeatures/).
101
105
  */
102
- getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeatureResponse>;
106
+ getAppFeatures({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeatureResponseSchema>;
103
107
  /**
104
108
  * @param {ConfigurationPlatformApplicationValidator.GetAppStoresParam} arg
105
109
  * - Arg object
106
110
  *
107
111
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
108
112
  * @param {import("../PlatformAPIClient").Options} - Options
109
- * @returns {Promise<ConfigurationPlatformModel.StoresResponse>} - Success response
113
+ * @returns {Promise<ConfigurationPlatformModel.StoresResponseSchema>} -
114
+ * Success response
110
115
  * @name getAppStores
111
116
  * @summary: list sales channel stores
112
- * @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppStores/).
117
+ * @description: Retrieve information of all the companies (e.g. uid, name, display name, store type, store code and company id) whose inventory is fetched into the current sales channel sales channel - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppStores/).
113
118
  */
114
- getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.StoresResponse>;
119
+ getAppStores({ pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetAppStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.StoresResponseSchema>;
115
120
  /**
116
121
  * @param {ConfigurationPlatformApplicationValidator.GetAppSupportedCurrencyParam} arg
117
122
  * - Arg object
118
123
  *
119
124
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
120
125
  * @param {import("../PlatformAPIClient").Options} - Options
121
- * @returns {Promise<ConfigurationPlatformModel.AppCurrencyResponse>} -
122
- * Success response
126
+ * @returns {Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>}
127
+ * - Success response
128
+ *
123
129
  * @name getAppSupportedCurrency
124
130
  * @summary: List supported currencies
125
- * @description: Retrieve a list of supported currencies for the sales channel. A list of currencies allowed in the current sales channel. Moreover, get the name, code, symbol, and the decimal digits of the currencies. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getAppSupportedCurrency/).
131
+ * @description: Retrieve a list of supported currencies for the sales channel. A list of currencies allowed in the current sales channel. Moreover, get the name, code, symbol, and the decimal digits of the currencies. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getAppSupportedCurrency/).
126
132
  */
127
- getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppCurrencyResponse>;
133
+ getAppSupportedCurrency({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppCurrencyResponseSchema>;
128
134
  /**
129
135
  * @param {ConfigurationPlatformApplicationValidator.GetApplicationByIdParam} arg
130
136
  * - Arg object
@@ -134,7 +140,7 @@ declare class Configuration {
134
140
  * @returns {Promise<ConfigurationPlatformModel.ApplicationById>} - Success response
135
141
  * @name getApplicationById
136
142
  * @summary: Get sales channel by id
137
- * @description: Retrieve detailed information about a specific sales channel. Use sales channel ID to get the current sales channel details which includes channel name, description, banner, logo, favicon, domain details, token, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getApplicationById/).
143
+ * @description: Retrieve detailed information about a specific sales channel. Use sales channel ID to get the current sales channel details which includes channel name, description, banner, logo, favicon, domain details, token, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getApplicationById/).
138
144
  */
139
145
  getApplicationById({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationById>;
140
146
  /**
@@ -147,7 +153,7 @@ declare class Configuration {
147
153
  * Success response
148
154
  * @name getBuildConfig
149
155
  * @summary: Get Build Configuration
150
- * @description: Retrieve latest build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getBuildConfig/).
156
+ * @description: Retrieve latest build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getBuildConfig/).
151
157
  */
152
158
  getBuildConfig({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
153
159
  /**
@@ -156,23 +162,25 @@ declare class Configuration {
156
162
  *
157
163
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
158
164
  * @param {import("../PlatformAPIClient").Options} - Options
159
- * @returns {Promise<ConfigurationPlatformModel.DomainStatusResponse>} -
160
- * Success response
165
+ * @returns {Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>}
166
+ * - Success response
167
+ *
161
168
  * @name getDomainStatus
162
169
  * @summary: Get domain status
163
- * @description: Retrieve the status of a specific domain. Shows if the A records and TXT records of the domain correctly points to appropriate IP on Fynd Servers. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomainStatus/).
170
+ * @description: Retrieve the status of a specific domain. Shows if the A records and TXT records of the domain correctly points to appropriate IP on Fynd Servers. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getDomainStatus/).
164
171
  */
165
- getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainStatusResponse>;
172
+ getDomainStatus({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetDomainStatusParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainStatusResponseSchema>;
166
173
  /**
167
174
  * @param {ConfigurationPlatformApplicationValidator.GetDomainsParam} arg - Arg object
168
175
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
169
176
  * @param {import("../PlatformAPIClient").Options} - Options
170
- * @returns {Promise<ConfigurationPlatformModel.DomainsResponse>} - Success response
177
+ * @returns {Promise<ConfigurationPlatformModel.DomainsResponseSchema>} -
178
+ * Success response
171
179
  * @name getDomains
172
180
  * @summary: List domains
173
- * @description: Retrieve a list of existing domains by its sales channel id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getDomains/).
181
+ * @description: Retrieve a list of existing domains by its sales channel. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getDomains/).
174
182
  */
175
- getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponse>;
183
+ getDomains({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DomainsResponseSchema>;
176
184
  /**
177
185
  * @param {ConfigurationPlatformApplicationValidator.GetInventoryConfigParam} arg
178
186
  * - Arg object
@@ -183,7 +191,7 @@ declare class Configuration {
183
191
  * Success response
184
192
  * @name getInventoryConfig
185
193
  * @summary: Get inventory configuration
186
- * @description: Retrieve configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getInventoryConfig/).
194
+ * @description: Retrieve configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getInventoryConfig/).
187
195
  */
188
196
  getInventoryConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
189
197
  /**
@@ -196,7 +204,7 @@ declare class Configuration {
196
204
  * Success response
197
205
  * @name getOrderingStoreConfig
198
206
  * @summary: Get ordering store configuration
199
- * @description: Retrieve configuration settings for ordering stores. Retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreConfig/).
207
+ * @description: Retrieve configuration settings for ordering stores. Retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getOrderingStoreConfig/).
200
208
  */
201
209
  getOrderingStoreConfig({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoreConfig>;
202
210
  /**
@@ -205,13 +213,14 @@ declare class Configuration {
205
213
  *
206
214
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
207
215
  * @param {import("../PlatformAPIClient").Options} - Options
208
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
209
- * Success response
216
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
217
+ * - Success response
218
+ *
210
219
  * @name getOrderingStoreCookie
211
220
  * @summary: Get ordering store signed cookie
212
- * @description: Use this API to get an Ordering Store signed cookie upon selecting an ordering store. This will be used by the cart service to verify a coupon against the selected ordering store in cart. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoreCookie/).
221
+ * @description: Use this API to get an Ordering Store signed cookie upon selecting an ordering store. This will be used by the cart service to verify a coupon against the selected ordering store in cart. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getOrderingStoreCookie/).
213
222
  */
214
- getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
223
+ getOrderingStoreCookie({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoreCookieParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
215
224
  /**
216
225
  * @param {ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam} arg
217
226
  * - Arg object
@@ -221,7 +230,7 @@ declare class Configuration {
221
230
  * @returns {Promise<ConfigurationPlatformModel.OrderingStores>} - Success response
222
231
  * @name getOrderingStoresByFilter
223
232
  * @summary: List ordering stores
224
- * @description: Retrieve ordering stores based on specified filters. Use filters and retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getOrderingStoresByFilter/).
233
+ * @description: Retrieve ordering stores based on specified filters. Use filters and retrieve the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders). - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getOrderingStoresByFilter/).
225
234
  */
226
235
  getOrderingStoresByFilter({ body, pageNo, pageSize, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetOrderingStoresByFilterParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStores>;
227
236
  /**
@@ -234,7 +243,7 @@ declare class Configuration {
234
243
  * Success response
235
244
  * @name getPreviousVersions
236
245
  * @summary: Get previous versions
237
- * @description: Retrieve version details of the app, this includes the build status, build date, version name, latest version, and a lot more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getPreviousVersions/).
246
+ * @description: Retrieve version details of the app, this includes the build status, build date, version name, latest version, and a lot more. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getPreviousVersions/).
238
247
  */
239
248
  getPreviousVersions({ platformType, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetPreviousVersionsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.BuildVersionHistory>;
240
249
  /**
@@ -243,13 +252,14 @@ declare class Configuration {
243
252
  *
244
253
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
245
254
  * @param {import("../PlatformAPIClient").Options} - Options
246
- * @returns {Promise<ConfigurationPlatformModel.OrderingStoresResponse>} -
247
- * Success response
255
+ * @returns {Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>}
256
+ * - Success response
257
+ *
248
258
  * @name getStaffOrderingStores
249
259
  * @summary: Get staff ordering stores
250
- * @description: Retrieve ordering stores accessible to staff members. Retrieve the details of all stores access given to the staff member (the selling locations where the sales channel will be utilized for placing orders). - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/getStaffOrderingStores/).
260
+ * @description: Retrieve ordering stores accessible to staff members. Retrieve the details of all stores access given to the staff member (the selling locations where the sales channel will be utilized for placing orders). - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/getStaffOrderingStores/).
251
261
  */
252
- getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponse>;
262
+ getStaffOrderingStores({ pageNo, pageSize, q, requestHeaders }?: ConfigurationPlatformApplicationValidator.GetStaffOrderingStoresParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.OrderingStoresResponseSchema>;
253
263
  /**
254
264
  * @param {ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam} arg
255
265
  * - Arg object
@@ -259,7 +269,7 @@ declare class Configuration {
259
269
  * @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
260
270
  * @name modifyAppFeatures
261
271
  * @summary: update sales channel features
262
- * @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/modifyAppFeatures/).
272
+ * @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/modifyAppFeatures/).
263
273
  */
264
274
  modifyAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.ModifyAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
265
275
  /**
@@ -272,7 +282,7 @@ declare class Configuration {
272
282
  * Success response
273
283
  * @name partiallyUpdateInventoryConfig
274
284
  * @summary: Partially update inventory configuration
275
- * @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/partiallyUpdateInventoryConfig/).
285
+ * @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/partiallyUpdateInventoryConfig/).
276
286
  */
277
287
  partiallyUpdateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.PartiallyUpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
278
288
  /**
@@ -281,38 +291,41 @@ declare class Configuration {
281
291
  *
282
292
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
283
293
  * @param {import("../PlatformAPIClient").Options} - Options
284
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
285
- * Success response
294
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
295
+ * - Success response
296
+ *
286
297
  * @name removeDomainById
287
298
  * @summary: Remove domain
288
- * @description: Delete a specific domain from the sales channel. Delete a domain (secondary or shortlink domain) added to a sales channel. It will disable user's access to website, shared links, and other features associated with this domain. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeDomainById/).
299
+ * @description: Delete a specific domain from the sales channel. Delete a domain (secondary or shortlink domain) added to a sales channel. It will disable user's access to website, shared links, and other features associated with this domain. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/removeDomainById/).
289
300
  */
290
- removeDomainById({ id, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
301
+ removeDomainById({ id, requestHeaders }?: ConfigurationPlatformApplicationValidator.RemoveDomainByIdParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
291
302
  /**
292
303
  * @param {ConfigurationPlatformApplicationValidator.RemoveOrderingStoreCookieParam} arg
293
304
  * - Arg object
294
305
  *
295
306
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
296
307
  * @param {import("../PlatformAPIClient").Options} - Options
297
- * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponse>} -
298
- * Success response
308
+ * @returns {Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>}
309
+ * - Success response
310
+ *
299
311
  * @name removeOrderingStoreCookie
300
312
  * @summary: Delete Ordering Store signed cookie
301
- * @description: Use this API to unset the Ordering Store cookie upon changing the sales channel, by its domain URL, in the Universal Fynd Store app. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/removeOrderingStoreCookie/).
313
+ * @description: Use this API to unset the Ordering Store cookie upon changing the sales channel, by its domain URL, in the Universal Fynd Store app. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/removeOrderingStoreCookie/).
302
314
  */
303
- removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponse>;
315
+ removeOrderingStoreCookie({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.SuccessMessageResponseSchema>;
304
316
  /**
305
317
  * @param {ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam} arg
306
318
  * - Arg object
307
319
  *
308
320
  * @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
309
321
  * @param {import("../PlatformAPIClient").Options} - Options
310
- * @returns {Promise<ConfigurationPlatformModel.TokenResponse>} - Success response
322
+ * @returns {Promise<ConfigurationPlatformModel.TokenResponseSchema>} -
323
+ * Success response
311
324
  * @name updateAppApiTokens
312
325
  * @summary: Update sales channel API tokens
313
- * @description: Add and edit the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google and Facebook auth. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppApiTokens/).
326
+ * @description: Add and edit the tokens used for integrating Firebase, MoEngage, Segment, GTM, Freshchat, Safetynet, Google Map, Google and Facebook auth. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppApiTokens/).
314
327
  */
315
- updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponse>;
328
+ updateAppApiTokens({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppApiTokensParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.TokenResponseSchema>;
316
329
  /**
317
330
  * @param {ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam} arg
318
331
  * - Arg object
@@ -322,7 +335,7 @@ declare class Configuration {
322
335
  * @returns {Promise<ConfigurationPlatformModel.ApplicationDetail>} - Success response
323
336
  * @name updateAppBasicDetails
324
337
  * @summary: Update sales channel basic details
325
- * @description: Modify sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppBasicDetails/).
338
+ * @description: Modify sales channel details like name, description, logo, domain, company ID, and other related information. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppBasicDetails/).
326
339
  */
327
340
  updateAppBasicDetails({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppBasicDetailsParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationDetail>;
328
341
  /**
@@ -335,7 +348,7 @@ declare class Configuration {
335
348
  * Success response
336
349
  * @name updateAppContactInfo
337
350
  * @summary: Update sales channel contact
338
- * @description: Modify the social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppContactInfo/).
351
+ * @description: Modify the social links, copyright text, business highlights, address and contact information of the company/seller/brand operating the sales channel. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppContactInfo/).
339
352
  */
340
353
  updateAppContactInfo({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppContactInfoParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInformation>;
341
354
  /**
@@ -348,7 +361,7 @@ declare class Configuration {
348
361
  * Success response
349
362
  * @name updateAppCurrencyConfig
350
363
  * @summary: Update sales channel currency configuration
351
- * @description: Modify currency configuration settings for the sales channel. Add and edit the currencies supported in the sales channel. Initially, INR will be enabled by default. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppCurrencyConfig/).
364
+ * @description: Modify currency configuration settings for the sales channel. Add and edit the currencies supported in the sales channel. Initially, INR will be enabled by default. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppCurrencyConfig/).
352
365
  */
353
366
  updateAppCurrencyConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppCurrencyConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppSupportedCurrency>;
354
367
  /**
@@ -360,7 +373,7 @@ declare class Configuration {
360
373
  * @returns {Promise<ConfigurationPlatformModel.AppFeature>} - Success response
361
374
  * @name updateAppFeatures
362
375
  * @summary: Update sales channel
363
- * @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateAppFeatures/).
376
+ * @description: Modify the feature configuration of sales channel websites, such as product detail, landing page, options in the login/registration screen, home page, listing page, reward points, communication opt-in, cart options and many more. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateAppFeatures/).
364
377
  */
365
378
  updateAppFeatures({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateAppFeaturesParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.AppFeature>;
366
379
  /**
@@ -373,7 +386,7 @@ declare class Configuration {
373
386
  * Success response
374
387
  * @name updateBuildConfig
375
388
  * @summary: Update build configuration
376
- * @description: Modify the existing build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateBuildConfig/).
389
+ * @description: Modify the existing build configuration, such as app name, landing page image, splash image used in a mobile build. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateBuildConfig/).
377
390
  */
378
391
  updateBuildConfig({ platformType, body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateBuildConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.MobileAppConfiguration>;
379
392
  /**
@@ -386,7 +399,7 @@ declare class Configuration {
386
399
  * Success response
387
400
  * @name updateInventoryConfig
388
401
  * @summary: Update inventory configuration
389
- * @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateInventoryConfig/).
402
+ * @description: Modify the configuration details of authentication, inventory, article assignment rules, reward points, cart, payment, order, logistics, etc. - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateInventoryConfig/).
390
403
  */
391
404
  updateInventoryConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateInventoryConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.ApplicationInventory>;
392
405
  /**
@@ -398,7 +411,7 @@ declare class Configuration {
398
411
  * @returns {Promise<ConfigurationPlatformModel.DeploymentMeta>} - Success response
399
412
  * @name updateOrderingStoreConfig
400
413
  * @summary: Update ordering store configuration
401
- * @description: Modify configuration settings for ordering stores. Edit the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders) - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/configuration/updateOrderingStoreConfig/).
414
+ * @description: Modify configuration settings for ordering stores. Edit the details of the deployment stores (the selling locations where the sales channel will be utilised for placing orders) - Check out [method documentation](https://docs.fynd.com/partners/commerce/sdk/platform/configuration/updateOrderingStoreConfig/).
402
415
  */
403
416
  updateOrderingStoreConfig({ body, requestHeaders }?: ConfigurationPlatformApplicationValidator.UpdateOrderingStoreConfigParam, { responseHeaders }?: object): Promise<ConfigurationPlatformModel.DeploymentMeta>;
404
417
  }