@gofynd/fdk-client-javascript 1.4.2-beta.4 → 1.4.2-beta.5

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 (140) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
  4. package/sdk/application/Cart/CartApplicationClient.js +82 -71
  5. package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
  6. package/sdk/application/Cart/CartApplicationValidator.js +59 -34
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
  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 +6 -6
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
  16. package/sdk/application/Content/ContentApplicationClient.js +34 -115
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
  20. package/sdk/application/Lead/LeadApplicationClient.js +14 -14
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +24 -24
  25. package/sdk/application/Order/OrderApplicationModel.d.ts +23 -1
  26. package/sdk/application/Order/OrderApplicationModel.js +28 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
  28. package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
  29. package/sdk/application/Payment/PaymentApplicationModel.d.ts +498 -3
  30. package/sdk/application/Payment/PaymentApplicationModel.js +316 -2
  31. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
  32. package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
  33. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
  34. package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
  35. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
  36. package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
  37. package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
  38. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  39. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  40. package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
  41. package/sdk/application/User/UserApplicationClient.d.ts +64 -64
  42. package/sdk/application/User/UserApplicationClient.js +64 -64
  43. package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
  44. package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
  45. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
  46. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
  47. package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
  48. package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
  49. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
  50. package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
  51. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
  52. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
  53. package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
  54. package/sdk/platform/Cart/CartPlatformModel.js +12 -0
  55. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +195 -108
  56. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +278 -113
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +2 -2
  58. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +2 -2
  59. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
  60. package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
  61. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +5 -5
  62. package/sdk/platform/Catalog/CatalogPlatformModel.js +3 -3
  63. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
  64. package/sdk/platform/Common/CommonPlatformClient.js +3 -3
  65. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
  66. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
  67. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
  68. package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
  69. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
  70. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
  71. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
  72. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
  73. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
  74. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
  75. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
  76. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
  77. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
  78. package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
  79. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
  80. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
  81. package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
  82. package/sdk/platform/Content/ContentPlatformClient.js +7 -7
  83. package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
  84. package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
  85. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
  86. package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
  87. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +19 -55
  88. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +19 -55
  89. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +14 -50
  90. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +16 -55
  91. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +13 -12
  92. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +12 -14
  93. package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
  94. package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
  95. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
  96. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
  97. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
  98. package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
  99. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
  100. package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
  101. package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
  102. package/sdk/platform/Order/OrderPlatformClient.js +79 -294
  103. package/sdk/platform/Order/OrderPlatformModel.d.ts +32 -3
  104. package/sdk/platform/Order/OrderPlatformModel.js +34 -2
  105. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
  106. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
  107. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
  108. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
  109. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
  110. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
  111. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  112. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  113. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
  114. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
  115. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
  116. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
  117. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +5 -5
  118. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +8 -8
  119. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
  120. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
  121. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +10 -10
  122. package/sdk/platform/Share/SharePlatformApplicationClient.js +10 -10
  123. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
  124. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
  125. package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
  126. package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
  127. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
  128. package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
  129. package/sdk/platform/User/UserPlatformModel.d.ts +2 -2
  130. package/sdk/platform/User/UserPlatformModel.js +2 -2
  131. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
  132. package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
  133. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
  134. package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
  135. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
  136. package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
  137. package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
  138. package/sdk/public/Partner/PartnerPublicClient.js +2 -2
  139. package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
  140. package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
@@ -108,8 +108,8 @@ class User {
108
108
  * @param {import("../ApplicationAPIClient").Options} - Options
109
109
  * @returns {Promise<UserApplicationModel.VerifyEmailOTPSuccess>} - Success response
110
110
  * @name addEmail
111
- * @summary: Add email to profile
112
- * @description: Use this API to add a new email address to a profile - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/addEmail/).
111
+ * @summary: Add email.
112
+ * @description: Adds a new email address to the user's profile. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/addEmail/).
113
113
  */
114
114
  async addEmail(
115
115
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -185,8 +185,8 @@ class User {
185
185
  * @param {import("../ApplicationAPIClient").Options} - Options
186
186
  * @returns {Promise<UserApplicationModel.VerifyMobileOTPSuccess>} - Success response
187
187
  * @name addMobileNumber
188
- * @summary: Add mobile number to profile
189
- * @description: Use this API to add a new mobile number to a profile. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/addMobileNumber/).
188
+ * @summary: Add mobile.
189
+ * @description: Adds a new mobile number to the user's profile. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/addMobileNumber/).
190
190
  */
191
191
  async addMobileNumber(
192
192
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -264,8 +264,8 @@ class User {
264
264
  * @param {import("../ApplicationAPIClient").Options} - Options
265
265
  * @returns {Promise<UserApplicationModel.LoginSuccess>} - Success response
266
266
  * @name deleteEmail
267
- * @summary: Delete email from profile
268
- * @description: Use this API to delete an email address from a profile - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/deleteEmail/).
267
+ * @summary: Delete email.
268
+ * @description: Removes an email address from the user's profile. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/deleteEmail/).
269
269
  */
270
270
  async deleteEmail(
271
271
  { active, primary, verified, email, platform, requestHeaders } = {
@@ -515,8 +515,8 @@ class User {
515
515
  * @param {import("../ApplicationAPIClient").Options} - Options
516
516
  * @returns {Promise<UserApplicationModel.LoginSuccess>} - Success response
517
517
  * @name forgotPassword
518
- * @summary: Forgot Password
519
- * @description: Use this API to reset a password using the code sent on email or SMS. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/forgotPassword/).
518
+ * @summary: Forgot password.
519
+ * @description: Initiates the password recovery process for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/forgotPassword/).
520
520
  */
521
521
  async forgotPassword(
522
522
  { body, requestHeaders } = { requestHeaders: {} },
@@ -673,8 +673,8 @@ class User {
673
673
  * @param {import("../ApplicationAPIClient").Options} - Options
674
674
  * @returns {Promise<UserApplicationModel.UserObjectSchema>} - Success response
675
675
  * @name getLoggedInUser
676
- * @summary: Get logged in user
677
- * @description: Use this API to get the details of a logged in user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/getLoggedInUser/).
676
+ * @summary: Current user.
677
+ * @description: Retrieve information about the currently logged-in user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/getLoggedInUser/).
678
678
  */
679
679
  async getLoggedInUser(
680
680
  { requestHeaders } = { requestHeaders: {} },
@@ -751,8 +751,8 @@ class User {
751
751
  * @param {import("../ApplicationAPIClient").Options} - Options
752
752
  * @returns {Promise<UserApplicationModel.PlatformSchema>} - Success response
753
753
  * @name getPlatformConfig
754
- * @summary: Get platform configurations
755
- * @description: Use this API to get all the platform configurations such as mobile image, desktop image, social logins, and all other text. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/getPlatformConfig/).
754
+ * @summary: Platform config.
755
+ * @description: Retrieve configuration settings related to the user platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/getPlatformConfig/).
756
756
  */
757
757
  async getPlatformConfig(
758
758
  { name, requestHeaders } = { requestHeaders: {} },
@@ -909,8 +909,8 @@ class User {
909
909
  * @param {import("../ApplicationAPIClient").Options} - Options
910
910
  * @returns {Promise<UserApplicationModel.HasPasswordSuccess>} - Success response
911
911
  * @name hasPassword
912
- * @summary: Check password
913
- * @description: Use this API to check if user has created a password for login. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/hasPassword/).
912
+ * @summary: Check password.
913
+ * @description: Checks if the user has set a password for the account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/hasPassword/).
914
914
  */
915
915
  async hasPassword(
916
916
  { requestHeaders } = { requestHeaders: {} },
@@ -985,8 +985,8 @@ class User {
985
985
  * @param {import("../ApplicationAPIClient").Options} - Options
986
986
  * @returns {Promise<UserApplicationModel.AuthSuccess>} - Success response
987
987
  * @name loginWithAppleIOS
988
- * @summary: Login or Register using Apple on iOS
989
- * @description: Use this API to login or register in iOS app using Apple Account credentials. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithAppleIOS/).
988
+ * @summary: Apple iOS login.
989
+ * @description: Enables login through Apple ID specifically for iOS users. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithAppleIOS/).
990
990
  */
991
991
  async loginWithAppleIOS(
992
992
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1064,8 +1064,8 @@ class User {
1064
1064
  * @param {import("../ApplicationAPIClient").Options} - Options
1065
1065
  * @returns {Promise<UserApplicationModel.LoginSuccess>} - Success response
1066
1066
  * @name loginWithEmailAndPassword
1067
- * @summary: Login or Register with password
1068
- * @description: Use this API to login or register using an email address and password. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithEmailAndPassword/).
1067
+ * @summary: Email/password login.
1068
+ * @description: Enables login using an email and password combination. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithEmailAndPassword/).
1069
1069
  */
1070
1070
  async loginWithEmailAndPassword(
1071
1071
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1144,8 +1144,8 @@ class User {
1144
1144
  * @param {import("../ApplicationAPIClient").Options} - Options
1145
1145
  * @returns {Promise<UserApplicationModel.AuthSuccess>} - Success response
1146
1146
  * @name loginWithFacebook
1147
- * @summary: Login or Register using Facebook
1148
- * @description: Use this API to login or register using Facebook credentials. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithFacebook/).
1147
+ * @summary: Facebook login.
1148
+ * @description: Enables login through Facebook accounts. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithFacebook/).
1149
1149
  */
1150
1150
  async loginWithFacebook(
1151
1151
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1223,8 +1223,8 @@ class User {
1223
1223
  * @param {import("../ApplicationAPIClient").Options} - Options
1224
1224
  * @returns {Promise<UserApplicationModel.AuthSuccess>} - Success response
1225
1225
  * @name loginWithGoogle
1226
- * @summary: Login or Register using Google
1227
- * @description: Use this API to login or register using Google Account credentials. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithGoogle/).
1226
+ * @summary: Google login.
1227
+ * @description: Enables login through Google accounts. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithGoogle/).
1228
1228
  */
1229
1229
  async loginWithGoogle(
1230
1230
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1302,8 +1302,8 @@ class User {
1302
1302
  * @param {import("../ApplicationAPIClient").Options} - Options
1303
1303
  * @returns {Promise<UserApplicationModel.AuthSuccess>} - Success response
1304
1304
  * @name loginWithGoogleAndroid
1305
- * @summary: Login or Register using Google on Android
1306
- * @description: Use this API to login or register in Android app using Google Account credentials. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithGoogleAndroid/).
1305
+ * @summary: Android Google login.
1306
+ * @description: Facilitates Google login specifically for Android users. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithGoogleAndroid/).
1307
1307
  */
1308
1308
  async loginWithGoogleAndroid(
1309
1309
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1383,8 +1383,8 @@ class User {
1383
1383
  * @param {import("../ApplicationAPIClient").Options} - Options
1384
1384
  * @returns {Promise<UserApplicationModel.AuthSuccess>} - Success response
1385
1385
  * @name loginWithGoogleIOS
1386
- * @summary: Login or Register using Google on iOS
1387
- * @description: Use this API to login or register in iOS app using Google Account credentials. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithGoogleIOS/).
1386
+ * @summary: iOS Google login.
1387
+ * @description: Facilitates Google login specifically for iOS users. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithGoogleIOS/).
1388
1388
  */
1389
1389
  async loginWithGoogleIOS(
1390
1390
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1462,8 +1462,8 @@ class User {
1462
1462
  * @param {import("../ApplicationAPIClient").Options} - Options
1463
1463
  * @returns {Promise<UserApplicationModel.SendOtpResponse>} - Success response
1464
1464
  * @name loginWithOTP
1465
- * @summary: Login or Register with OTP
1466
- * @description: Use this API to login or register with a One-time Password (OTP) sent via Email or SMS. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithOTP/).
1465
+ * @summary: OTP login.
1466
+ * @description: Allows users to log in using a one-time password. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/loginWithOTP/).
1467
1467
  */
1468
1468
  async loginWithOTP(
1469
1469
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1695,8 +1695,8 @@ class User {
1695
1695
  * @param {import("../ApplicationAPIClient").Options} - Options
1696
1696
  * @returns {Promise<UserApplicationModel.RegisterFormSuccess>} - Success response
1697
1697
  * @name registerWithForm
1698
- * @summary: Registration using a form
1699
- * @description: Use this API to perform user registration by sending form data in the request body. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/registerWithForm/).
1698
+ * @summary: User registration.
1699
+ * @description: Enables new users to register using a form. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/registerWithForm/).
1700
1700
  */
1701
1701
  async registerWithForm(
1702
1702
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1775,8 +1775,8 @@ class User {
1775
1775
  * @returns {Promise<UserApplicationModel.ResetForgotPasswordSuccess>} -
1776
1776
  * Success response
1777
1777
  * @name resetForgotPassword
1778
- * @summary: Reset forgot Password
1779
- * @description: Use this API to reset a password using the code sent on email or SMS. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/resetForgotPassword/).
1778
+ * @summary: Forgot password.
1779
+ * @description: Initiates the password recovery process for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/resetForgotPassword/).
1780
1780
  */
1781
1781
  async resetForgotPassword(
1782
1782
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1853,8 +1853,8 @@ class User {
1853
1853
  * @param {import("../ApplicationAPIClient").Options} - Options
1854
1854
  * @returns {Promise<UserApplicationModel.EmailOtpSuccess>} - Success response
1855
1855
  * @name sendForgotOTPOnEmail
1856
- * @summary: Send Forgot OTP on email
1857
- * @description: Use this API to send an Forgot OTP to an email ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendForgotOTPOnEmail/).
1856
+ * @summary: Send Forgot OTP Email
1857
+ * @description: Sends a one-time password to the user's forgot email for verification request. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendForgotOTPOnEmail/).
1858
1858
  */
1859
1859
  async sendForgotOTPOnEmail(
1860
1860
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -1932,8 +1932,8 @@ class User {
1932
1932
  * @param {import("../ApplicationAPIClient").Options} - Options
1933
1933
  * @returns {Promise<UserApplicationModel.OtpSuccess>} - Success response
1934
1934
  * @name sendForgotOTPOnMobile
1935
- * @summary: Send Forgot OTP on mobile
1936
- * @description: Use this API to send an Forgot OTP to a mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendForgotOTPOnMobile/).
1935
+ * @summary: Send forgot OTP on mobile
1936
+ * @description: Sends a one-time password to the user's forgot mobile for verification request. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendForgotOTPOnMobile/).
1937
1937
  */
1938
1938
  async sendForgotOTPOnMobile(
1939
1939
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2011,8 +2011,8 @@ class User {
2011
2011
  * @param {import("../ApplicationAPIClient").Options} - Options
2012
2012
  * @returns {Promise<UserApplicationModel.EmailOtpSuccess>} - Success response
2013
2013
  * @name sendOTPOnEmail
2014
- * @summary: Send OTP on email
2015
- * @description: Use this API to send an OTP to an email ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendOTPOnEmail/).
2014
+ * @summary: Send email OTP.
2015
+ * @description: Sends a one-time password to the user's email for verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendOTPOnEmail/).
2016
2016
  */
2017
2017
  async sendOTPOnEmail(
2018
2018
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2090,8 +2090,8 @@ class User {
2090
2090
  * @param {import("../ApplicationAPIClient").Options} - Options
2091
2091
  * @returns {Promise<UserApplicationModel.OtpSuccess>} - Success response
2092
2092
  * @name sendOTPOnMobile
2093
- * @summary: Send OTP on mobile
2094
- * @description: Use this API to send an OTP to a mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendOTPOnMobile/).
2093
+ * @summary: Send mobile OTP.
2094
+ * @description: Sends a one-time password to the user's mobile for verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendOTPOnMobile/).
2095
2095
  */
2096
2096
  async sendOTPOnMobile(
2097
2097
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2169,8 +2169,8 @@ class User {
2169
2169
  * @param {import("../ApplicationAPIClient").Options} - Options
2170
2170
  * @returns {Promise<UserApplicationModel.ResetPasswordSuccess>} - Success response
2171
2171
  * @name sendResetPasswordEmail
2172
- * @summary: Reset Password
2173
- * @description: Use this API to reset a password using the link sent on email. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendResetPasswordEmail/).
2172
+ * @summary: Reset password (Email).
2173
+ * @description: Sends a password reset link to the user's email. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendResetPasswordEmail/).
2174
2174
  */
2175
2175
  async sendResetPasswordEmail(
2176
2176
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2250,8 +2250,8 @@ class User {
2250
2250
  * @param {import("../ApplicationAPIClient").Options} - Options
2251
2251
  * @returns {Promise<any>} - Success response
2252
2252
  * @name sendResetPasswordMobile
2253
- * @summary: Reset Password
2254
- * @description: Use this API to reset a password using the link sent on mobile. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendResetPasswordMobile/).
2253
+ * @summary: Reset password (Mobile).
2254
+ * @description: Sends a password reset OTP to the user's mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendResetPasswordMobile/).
2255
2255
  */
2256
2256
  async sendResetPasswordMobile(
2257
2257
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2408,8 +2408,8 @@ class User {
2408
2408
  * @returns {Promise<UserApplicationModel.SendEmailVerifyLinkSuccess>} -
2409
2409
  * Success response
2410
2410
  * @name sendVerificationLinkToEmail
2411
- * @summary: Send verification link to email
2412
- * @description: Use this API to send verification link to an email address. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendVerificationLinkToEmail/).
2411
+ * @summary: Verify new email.
2412
+ * @description: Sends a verification link to a newly added email address. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendVerificationLinkToEmail/).
2413
2413
  */
2414
2414
  async sendVerificationLinkToEmail(
2415
2415
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2492,8 +2492,8 @@ class User {
2492
2492
  * @returns {Promise<UserApplicationModel.SendMobileVerifyLinkSuccess>} -
2493
2493
  * Success response
2494
2494
  * @name sendVerificationLinkToMobile
2495
- * @summary: Send verification link to mobile
2496
- * @description: Use this API to send a verification link to a mobile number - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendVerificationLinkToMobile/).
2495
+ * @summary: Verify new mobile.
2496
+ * @description: Sends a verification link to a newly added mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/sendVerificationLinkToMobile/).
2497
2497
  */
2498
2498
  async sendVerificationLinkToMobile(
2499
2499
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -2573,8 +2573,8 @@ class User {
2573
2573
  * @param {import("../ApplicationAPIClient").Options} - Options
2574
2574
  * @returns {Promise<UserApplicationModel.LoginSuccess>} - Success response
2575
2575
  * @name setEmailAsPrimary
2576
- * @summary: Set email as primary
2577
- * @description: Use this API to set an email address as primary. Primary email ID is a email address used for all future communications. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/setEmailAsPrimary/).
2576
+ * @summary: Set primary email.
2577
+ * @description: Sets an email address as the primary contact for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/setEmailAsPrimary/).
2578
2578
  */
2579
2579
  async setEmailAsPrimary(
2580
2580
  { body, requestHeaders } = { requestHeaders: {} },
@@ -2651,8 +2651,8 @@ class User {
2651
2651
  * @param {import("../ApplicationAPIClient").Options} - Options
2652
2652
  * @returns {Promise<UserApplicationModel.LoginSuccess>} - Success response
2653
2653
  * @name setMobileNumberAsPrimary
2654
- * @summary: Set mobile as primary
2655
- * @description: Use this API to set a mobile number as primary. Primary number is a verified number used for all future communications. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/setMobileNumberAsPrimary/).
2654
+ * @summary: Set primary mobile.
2655
+ * @description: Sets a mobile number as the primary contact for the user. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/setMobileNumberAsPrimary/).
2656
2656
  */
2657
2657
  async setMobileNumberAsPrimary(
2658
2658
  { body, requestHeaders } = { requestHeaders: {} },
@@ -2731,8 +2731,8 @@ class User {
2731
2731
  * @param {import("../ApplicationAPIClient").Options} - Options
2732
2732
  * @returns {Promise<UserApplicationModel.VerifyEmailSuccess>} - Success response
2733
2733
  * @name updatePassword
2734
- * @summary: Update user password
2735
- * @description: Use this API to update the password. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/updatePassword/).
2734
+ * @summary: Update password.
2735
+ * @description: Allows users to update their existing password. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/updatePassword/).
2736
2736
  */
2737
2737
  async updatePassword(
2738
2738
  { body, requestHeaders } = { requestHeaders: {} },
@@ -3043,8 +3043,8 @@ class User {
3043
3043
  * @param {import("../ApplicationAPIClient").Options} - Options
3044
3044
  * @returns {Promise<UserApplicationModel.VerifyEmailSuccess>} - Success response
3045
3045
  * @name verifyEmail
3046
- * @summary: Verify email
3047
- * @description: Use this API to send a verification code to verify an email. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyEmail/).
3046
+ * @summary: Verify email.
3047
+ * @description: Verifies the user's email address. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyEmail/).
3048
3048
  */
3049
3049
  async verifyEmail(
3050
3050
  { body, requestHeaders } = { requestHeaders: {} },
@@ -3119,8 +3119,8 @@ class User {
3119
3119
  * @param {import("../ApplicationAPIClient").Options} - Options
3120
3120
  * @returns {Promise<UserApplicationModel.VerifyForgotOtpSuccess>} - Success response
3121
3121
  * @name verifyEmailForgotOTP
3122
- * @summary: Verify Forgot OTP on email
3123
- * @description: Use this API to verify the Forgot OTP received on an email ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyEmailForgotOTP/).
3122
+ * @summary: Verify Email Forgot OTP
3123
+ * @description: Validates the OTP sent to the user's forgot email address request. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyEmailForgotOTP/).
3124
3124
  */
3125
3125
  async verifyEmailForgotOTP(
3126
3126
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -3198,8 +3198,8 @@ class User {
3198
3198
  * @param {import("../ApplicationAPIClient").Options} - Options
3199
3199
  * @returns {Promise<UserApplicationModel.VerifyOtpSuccess>} - Success response
3200
3200
  * @name verifyEmailOTP
3201
- * @summary: Verify OTP on email
3202
- * @description: Use this API to verify the OTP received on an email ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyEmailOTP/).
3201
+ * @summary: Verify Email OTP
3202
+ * @description: Validates the OTP sent to the user's email address request. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyEmailOTP/).
3203
3203
  */
3204
3204
  async verifyEmailOTP(
3205
3205
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -3277,8 +3277,8 @@ class User {
3277
3277
  * @param {import("../ApplicationAPIClient").Options} - Options
3278
3278
  * @returns {Promise<UserApplicationModel.VerifyEmailSuccess>} - Success response
3279
3279
  * @name verifyMobile
3280
- * @summary: Verify mobile
3281
- * @description: Use this API to send a verification code to verify a mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyMobile/).
3280
+ * @summary: Verify mobile.
3281
+ * @description: Verifies the user's mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyMobile/).
3282
3282
  */
3283
3283
  async verifyMobile(
3284
3284
  { body, requestHeaders } = { requestHeaders: {} },
@@ -3434,8 +3434,8 @@ class User {
3434
3434
  * @param {import("../ApplicationAPIClient").Options} - Options
3435
3435
  * @returns {Promise<UserApplicationModel.VerifyOtpSuccess>} - Success response
3436
3436
  * @name verifyMobileOTP
3437
- * @summary: Verify OTP on mobile
3438
- * @description: Use this API to verify the OTP received on a mobile number. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyMobileOTP/).
3437
+ * @summary: Verify mobile OTP.
3438
+ * @description: Validates the OTP sent to the user's mobile. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/application/user/verifyMobileOTP/).
3439
3439
  */
3440
3440
  async verifyMobileOTP(
3441
3441
  { body, platform, requestHeaders } = { requestHeaders: {} },
@@ -8,8 +8,8 @@ declare class Theme {
8
8
  * @param {import("../PartnerAPIClient").Options} - Options
9
9
  * @returns {Promise<ThemePartnerModel.AllAvailablePageSchema>} - Success response
10
10
  * @name getAllPages
11
- * @summary: Get all pages of a theme
12
- * @description: Use this API to retrieve all the available pages of a theme by its ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getAllPages/).
11
+ * @summary: Get all pages.
12
+ * @description: Retrieve a list of all pages available in the partner server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getAllPages/).
13
13
  */
14
14
  getAllPages({ companyId, applicationId, themeId, requestHeaders }?: ThemePartnerValidator.GetAllPagesParam, { responseHeaders }?: object): Promise<ThemePartnerModel.AllAvailablePageSchema>;
15
15
  /**
@@ -18,8 +18,8 @@ declare class Theme {
18
18
  * @param {import("../PartnerAPIClient").Options} - Options
19
19
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
20
20
  * @name createPage
21
- * @summary: Create a page
22
- * @description: Use this API to create a page for a theme by its ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createPage/).
21
+ * @summary: Create page.
22
+ * @description: Add a new page to the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createPage/).
23
23
  */
24
24
  createPage({ companyId, applicationId, themeId, body, requestHeaders }?: ThemePartnerValidator.CreatePageParam, { responseHeaders }?: object): Promise<ThemePartnerModel.AvailablePageSchema>;
25
25
  /**
@@ -28,8 +28,8 @@ declare class Theme {
28
28
  * @param {import("../PartnerAPIClient").Options} - Options
29
29
  * @returns {Promise<ThemePartnerModel.AllAvailablePageSchema>} - Success response
30
30
  * @name updateMultiplePages
31
- * @summary: Update multiple pages of a theme
32
- * @description: Use this API to update multiple pages of a theme by its ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateMultiplePages/).
31
+ * @summary: Update multiple pages.
32
+ * @description: Modify and update multiple pages in the partner server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateMultiplePages/).
33
33
  */
34
34
  updateMultiplePages({ companyId, applicationId, themeId, body, requestHeaders }?: ThemePartnerValidator.UpdateMultiplePagesParam, { responseHeaders }?: object): Promise<ThemePartnerModel.AllAvailablePageSchema>;
35
35
  /**
@@ -38,8 +38,8 @@ declare class Theme {
38
38
  * @param {import("../PartnerAPIClient").Options} - Options
39
39
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
40
40
  * @name getPage
41
- * @summary: Get page of a theme
42
- * @description: Use this API to retrieve a page of a theme. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getPage/).
41
+ * @summary: Get page.
42
+ * @description: Obtain detailed information about a specific page in the partner server. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getPage/).
43
43
  */
44
44
  getPage({ companyId, applicationId, themeId, pageValue, requestHeaders }?: ThemePartnerValidator.GetPageParam, { responseHeaders }?: object): Promise<ThemePartnerModel.AvailablePageSchema>;
45
45
  /**
@@ -48,8 +48,8 @@ declare class Theme {
48
48
  * @param {import("../PartnerAPIClient").Options} - Options
49
49
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
50
50
  * @name updatePage
51
- * @summary: Updates a page
52
- * @description: Use this API to update a page for a theme by its ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updatePage/).
51
+ * @summary: Update page.
52
+ * @description: Modify and update information related to a specific page in the partner server. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updatePage/).
53
53
  */
54
54
  updatePage({ companyId, applicationId, themeId, pageValue, body, requestHeaders }?: ThemePartnerValidator.UpdatePageParam, { responseHeaders }?: object): Promise<ThemePartnerModel.AvailablePageSchema>;
55
55
  /**
@@ -58,8 +58,8 @@ declare class Theme {
58
58
  * @param {import("../PartnerAPIClient").Options} - Options
59
59
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
60
60
  * @name deletePage
61
- * @summary: Deletes a page
62
- * @description: Use this API to delete a page for a theme by its ID and page_value. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deletePage/).
61
+ * @summary: Delete page.
62
+ * @description: Remove a page from the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deletePage/).
63
63
  */
64
64
  deletePage({ companyId, applicationId, themeId, pageValue, requestHeaders }?: ThemePartnerValidator.DeletePageParam, { responseHeaders }?: object): Promise<ThemePartnerModel.AvailablePageSchema>;
65
65
  /**
@@ -68,8 +68,8 @@ declare class Theme {
68
68
  * @param {import("../PartnerAPIClient").Options} - Options
69
69
  * @returns {Promise<ThemePartnerModel.ThemesSchema[]>} - Success response
70
70
  * @name getApplicationThemes
71
- * @summary: Get all the themes for a specific application
72
- * @description: Use this API to get list of theme - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getApplicationThemes/).
71
+ * @summary: Get application themes.
72
+ * @description: Retrieve a list of themes available for the partner server application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getApplicationThemes/).
73
73
  */
74
74
  getApplicationThemes({ companyId, applicationId, requestHeaders }?: ThemePartnerValidator.GetApplicationThemesParam, { responseHeaders }?: object): Promise<ThemePartnerModel.ThemesSchema[]>;
75
75
  /**
@@ -78,8 +78,8 @@ declare class Theme {
78
78
  * @param {import("../PartnerAPIClient").Options} - Options
79
79
  * @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
80
80
  * @name getThemeById
81
- * @summary: Get Theme By Theme Id
82
- * @description: Use this API to get theme details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeById/).
81
+ * @summary: Get theme by ID.
82
+ * @description: Obtain detailed information about a theme using its unique ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeById/).
83
83
  */
84
84
  getThemeById({ companyId, applicationId, themeId, requestHeaders }?: ThemePartnerValidator.GetThemeByIdParam, { responseHeaders }?: object): Promise<ThemePartnerModel.ThemesSchema>;
85
85
  /**
@@ -88,8 +88,8 @@ declare class Theme {
88
88
  * @param {import("../PartnerAPIClient").Options} - Options
89
89
  * @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
90
90
  * @name updateTheme
91
- * @summary: Update theme for a specific company and application
92
- * @description: Update theme for a specific company and application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateTheme/).
91
+ * @summary: Update theme.
92
+ * @description: Modify and update information related to a theme in the partner server. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateTheme/).
93
93
  */
94
94
  updateTheme({ companyId, applicationId, themeId, body, requestHeaders }?: ThemePartnerValidator.UpdateThemeParam, { responseHeaders }?: object): Promise<ThemePartnerModel.ThemesSchema>;
95
95
  /**
@@ -98,8 +98,8 @@ declare class Theme {
98
98
  * @param {import("../PartnerAPIClient").Options} - Options
99
99
  * @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
100
100
  * @name deleteTheme
101
- * @summary: Delete a theme
102
- * @description: This endpoint is used to delete a theme from the specified company and application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteTheme/).
101
+ * @summary: Delete theme.
102
+ * @description: Remove a theme from the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteTheme/).
103
103
  */
104
104
  deleteTheme({ companyId, applicationId, themeId, requestHeaders }?: ThemePartnerValidator.DeleteThemeParam, { responseHeaders }?: object): Promise<ThemePartnerModel.ThemesSchema>;
105
105
  /**
@@ -108,8 +108,8 @@ declare class Theme {
108
108
  * @param {import("../PartnerAPIClient").Options} - Options
109
109
  * @returns {Promise<ThemePartnerModel.MarketplaceThemeSchema>} - Success response
110
110
  * @name getOrganizationThemes
111
- * @summary: Get organization's themes
112
- * @description: Get organization's themes - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemes/).
111
+ * @summary: Get organization themes.
112
+ * @description: Retrieve a list of themes associated with partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemes/).
113
113
  */
114
114
  getOrganizationThemes({ status, pageSize, pageNo, requestHeaders }?: ThemePartnerValidator.GetOrganizationThemesParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceThemeSchema>;
115
115
  /**
@@ -118,8 +118,8 @@ declare class Theme {
118
118
  * @param {import("../PartnerAPIClient").Options} - Options
119
119
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
120
120
  * @name getOrganizationThemeDetails
121
- * @summary: Get theme details for an organization
122
- * @description: Fetches the theme details for a specific organization and theme ID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemeDetails/).
121
+ * @summary: Get organization theme details.
122
+ * @description: Obtain detailed information about a theme within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemeDetails/).
123
123
  */
124
124
  getOrganizationThemeDetails({ themeId, requestHeaders }?: ThemePartnerValidator.GetOrganizationThemeDetailsParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceTheme>;
125
125
  /**
@@ -128,8 +128,8 @@ declare class Theme {
128
128
  * @param {import("../PartnerAPIClient").Options} - Options
129
129
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
130
130
  * @name updateDraftTheme
131
- * @summary: Update theme draft/submitted
132
- * @description: Update theme draft/submitted - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateDraftTheme/).
131
+ * @summary: Update draft theme.
132
+ * @description: Modify and update a draft theme in partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateDraftTheme/).
133
133
  */
134
134
  updateDraftTheme({ themeId, body, requestHeaders }?: ThemePartnerValidator.UpdateDraftThemeParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceTheme>;
135
135
  /**
@@ -138,8 +138,8 @@ declare class Theme {
138
138
  * @param {import("../PartnerAPIClient").Options} - Options
139
139
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
140
140
  * @name submitOrganizationTheme
141
- * @summary: Submit a theme
142
- * @description: Use this api to Submit a theme - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/submitOrganizationTheme/).
141
+ * @summary: Submit organization theme.
142
+ * @description: Initiate the process of submitting a theme within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/submitOrganizationTheme/).
143
143
  */
144
144
  submitOrganizationTheme({ themeId, body, requestHeaders }?: ThemePartnerValidator.SubmitOrganizationThemeParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceTheme>;
145
145
  /**
@@ -148,8 +148,8 @@ declare class Theme {
148
148
  * @param {import("../PartnerAPIClient").Options} - Options
149
149
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
150
150
  * @name deleteOrganizationTheme
151
- * @summary: Delete a theme
152
- * @description: This endpoint allows you to delete a theme by providing the organization and theme IDs. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteOrganizationTheme/).
151
+ * @summary: Delete organization theme.
152
+ * @description: Remove a theme from partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteOrganizationTheme/).
153
153
  */
154
154
  deleteOrganizationTheme({ themeId, requestHeaders }?: ThemePartnerValidator.DeleteOrganizationThemeParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceTheme>;
155
155
  /**
@@ -158,8 +158,8 @@ declare class Theme {
158
158
  * @param {import("../PartnerAPIClient").Options} - Options
159
159
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme[]>} - Success response
160
160
  * @name getLatestVersionOfThemeBySlug
161
- * @summary: Get latest version of specified theme
162
- * @description: Use this api to get latest version of specified theme - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getLatestVersionOfThemeBySlug/).
161
+ * @summary: Get latest version of theme by slug.
162
+ * @description: Retrieve the most recent version of a theme using its slug. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getLatestVersionOfThemeBySlug/).
163
163
  */
164
164
  getLatestVersionOfThemeBySlug({ slugName, requestHeaders }?: ThemePartnerValidator.GetLatestVersionOfThemeBySlugParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceTheme[]>;
165
165
  /**
@@ -168,8 +168,8 @@ declare class Theme {
168
168
  * @param {import("../PartnerAPIClient").Options} - Options
169
169
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
170
170
  * @name createNewThemeInOrganization
171
- * @summary: Create a new theme for the organization
172
- * @description: Use this api to create a new theme for the organization - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createNewThemeInOrganization/).
171
+ * @summary: Create new theme in organization.
172
+ * @description: Add a new theme to partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createNewThemeInOrganization/).
173
173
  */
174
174
  createNewThemeInOrganization({ body, slug, requestHeaders }?: ThemePartnerValidator.CreateNewThemeInOrganizationParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceTheme>;
175
175
  /**
@@ -178,8 +178,8 @@ declare class Theme {
178
178
  * @param {import("../PartnerAPIClient").Options} - Options
179
179
  * @returns {Promise<ThemePartnerModel.ThemeRejectionReasons>} - Success response
180
180
  * @name getThemeRejectionReasons
181
- * @summary: Get theme rejection reasons
182
- * @description: Use this api to get theme rejection reasons - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeRejectionReasons/).
181
+ * @summary: Get theme rejection reasons.
182
+ * @description: Retrieve reasons for the rejection of themes within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeRejectionReasons/).
183
183
  */
184
184
  getThemeRejectionReasons({ themeId, requestHeaders }?: ThemePartnerValidator.GetThemeRejectionReasonsParam, { responseHeaders }?: object): Promise<ThemePartnerModel.ThemeRejectionReasons>;
185
185
  /**
@@ -188,8 +188,8 @@ declare class Theme {
188
188
  * @param {import("../PartnerAPIClient").Options} - Options
189
189
  * @returns {Promise<ThemePartnerModel.MarketplaceThemeSchema>} - Success response
190
190
  * @name getThemeVersions
191
- * @summary: Get theme versions
192
- * @description: Retrieve a list of theme versions for a specific theme in an organization. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeVersions/).
191
+ * @summary: Get theme versions.
192
+ * @description: Retrieve a list of versions available for a theme within partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeVersions/).
193
193
  */
194
194
  getThemeVersions({ themeSlug, pageSize, pageNo, requestHeaders }?: ThemePartnerValidator.GetThemeVersionsParam, { responseHeaders }?: object): Promise<ThemePartnerModel.MarketplaceThemeSchema>;
195
195
  /**