@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
@@ -20,8 +20,8 @@ class Theme {
20
20
  * @param {import("../PartnerAPIClient").Options} - Options
21
21
  * @returns {Promise<ThemePartnerModel.AllAvailablePageSchema>} - Success response
22
22
  * @name getAllPages
23
- * @summary: Get all pages of a theme
24
- * @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/).
23
+ * @summary: Get all pages.
24
+ * @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/).
25
25
  */
26
26
  async getAllPages(
27
27
  { companyId, applicationId, themeId, requestHeaders } = {
@@ -97,8 +97,8 @@ class Theme {
97
97
  * @param {import("../PartnerAPIClient").Options} - Options
98
98
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
99
99
  * @name createPage
100
- * @summary: Create a page
101
- * @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/).
100
+ * @summary: Create page.
101
+ * @description: Add a new page to the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createPage/).
102
102
  */
103
103
  async createPage(
104
104
  { companyId, applicationId, themeId, body, requestHeaders } = {
@@ -181,8 +181,8 @@ class Theme {
181
181
  * @param {import("../PartnerAPIClient").Options} - Options
182
182
  * @returns {Promise<ThemePartnerModel.AllAvailablePageSchema>} - Success response
183
183
  * @name updateMultiplePages
184
- * @summary: Update multiple pages of a theme
185
- * @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/).
184
+ * @summary: Update multiple pages.
185
+ * @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/).
186
186
  */
187
187
  async updateMultiplePages(
188
188
  { companyId, applicationId, themeId, body, requestHeaders } = {
@@ -267,8 +267,8 @@ class Theme {
267
267
  * @param {import("../PartnerAPIClient").Options} - Options
268
268
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
269
269
  * @name getPage
270
- * @summary: Get page of a theme
271
- * @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/).
270
+ * @summary: Get page.
271
+ * @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/).
272
272
  */
273
273
  async getPage(
274
274
  { companyId, applicationId, themeId, pageValue, requestHeaders } = {
@@ -345,8 +345,8 @@ class Theme {
345
345
  * @param {import("../PartnerAPIClient").Options} - Options
346
346
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
347
347
  * @name updatePage
348
- * @summary: Updates a page
349
- * @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/).
348
+ * @summary: Update page.
349
+ * @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/).
350
350
  */
351
351
  async updatePage(
352
352
  { companyId, applicationId, themeId, pageValue, body, requestHeaders } = {
@@ -431,8 +431,8 @@ class Theme {
431
431
  * @param {import("../PartnerAPIClient").Options} - Options
432
432
  * @returns {Promise<ThemePartnerModel.AvailablePageSchema>} - Success response
433
433
  * @name deletePage
434
- * @summary: Deletes a page
435
- * @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/).
434
+ * @summary: Delete page.
435
+ * @description: Remove a page from the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deletePage/).
436
436
  */
437
437
  async deletePage(
438
438
  { companyId, applicationId, themeId, pageValue, requestHeaders } = {
@@ -509,8 +509,8 @@ class Theme {
509
509
  * @param {import("../PartnerAPIClient").Options} - Options
510
510
  * @returns {Promise<ThemePartnerModel.ThemesSchema[]>} - Success response
511
511
  * @name getApplicationThemes
512
- * @summary: Get all the themes for a specific application
513
- * @description: Use this API to get list of theme - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getApplicationThemes/).
512
+ * @summary: Get application themes.
513
+ * @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/).
514
514
  */
515
515
  async getApplicationThemes(
516
516
  { companyId, applicationId, requestHeaders } = { requestHeaders: {} },
@@ -582,8 +582,8 @@ class Theme {
582
582
  * @param {import("../PartnerAPIClient").Options} - Options
583
583
  * @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
584
584
  * @name getThemeById
585
- * @summary: Get Theme By Theme Id
586
- * @description: Use this API to get theme details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeById/).
585
+ * @summary: Get theme by ID.
586
+ * @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/).
587
587
  */
588
588
  async getThemeById(
589
589
  { companyId, applicationId, themeId, requestHeaders } = {
@@ -659,8 +659,8 @@ class Theme {
659
659
  * @param {import("../PartnerAPIClient").Options} - Options
660
660
  * @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
661
661
  * @name updateTheme
662
- * @summary: Update theme for a specific company and application
663
- * @description: Update theme for a specific company and application - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateTheme/).
662
+ * @summary: Update theme.
663
+ * @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/).
664
664
  */
665
665
  async updateTheme(
666
666
  { companyId, applicationId, themeId, body, requestHeaders } = {
@@ -743,8 +743,8 @@ class Theme {
743
743
  * @param {import("../PartnerAPIClient").Options} - Options
744
744
  * @returns {Promise<ThemePartnerModel.ThemesSchema>} - Success response
745
745
  * @name deleteTheme
746
- * @summary: Delete a theme
747
- * @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/).
746
+ * @summary: Delete theme.
747
+ * @description: Remove a theme from the partner server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteTheme/).
748
748
  */
749
749
  async deleteTheme(
750
750
  { companyId, applicationId, themeId, requestHeaders } = {
@@ -820,8 +820,8 @@ class Theme {
820
820
  * @param {import("../PartnerAPIClient").Options} - Options
821
821
  * @returns {Promise<ThemePartnerModel.MarketplaceThemeSchema>} - Success response
822
822
  * @name getOrganizationThemes
823
- * @summary: Get organization's themes
824
- * @description: Get organization's themes - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getOrganizationThemes/).
823
+ * @summary: Get organization themes.
824
+ * @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/).
825
825
  */
826
826
  async getOrganizationThemes(
827
827
  { status, pageSize, pageNo, requestHeaders } = { requestHeaders: {} },
@@ -904,8 +904,8 @@ class Theme {
904
904
  * @param {import("../PartnerAPIClient").Options} - Options
905
905
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
906
906
  * @name getOrganizationThemeDetails
907
- * @summary: Get theme details for an organization
908
- * @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/).
907
+ * @summary: Get organization theme details.
908
+ * @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/).
909
909
  */
910
910
  async getOrganizationThemeDetails(
911
911
  { themeId, requestHeaders } = { requestHeaders: {} },
@@ -983,8 +983,8 @@ class Theme {
983
983
  * @param {import("../PartnerAPIClient").Options} - Options
984
984
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
985
985
  * @name updateDraftTheme
986
- * @summary: Update theme draft/submitted
987
- * @description: Update theme draft/submitted - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/updateDraftTheme/).
986
+ * @summary: Update draft theme.
987
+ * @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/).
988
988
  */
989
989
  async updateDraftTheme(
990
990
  { themeId, body, requestHeaders } = { requestHeaders: {} },
@@ -1062,8 +1062,8 @@ class Theme {
1062
1062
  * @param {import("../PartnerAPIClient").Options} - Options
1063
1063
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
1064
1064
  * @name submitOrganizationTheme
1065
- * @summary: Submit a theme
1066
- * @description: Use this api to Submit a theme - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/submitOrganizationTheme/).
1065
+ * @summary: Submit organization theme.
1066
+ * @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/).
1067
1067
  */
1068
1068
  async submitOrganizationTheme(
1069
1069
  { themeId, body, requestHeaders } = { requestHeaders: {} },
@@ -1141,8 +1141,8 @@ class Theme {
1141
1141
  * @param {import("../PartnerAPIClient").Options} - Options
1142
1142
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
1143
1143
  * @name deleteOrganizationTheme
1144
- * @summary: Delete a theme
1145
- * @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/).
1144
+ * @summary: Delete organization theme.
1145
+ * @description: Remove a theme from partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/deleteOrganizationTheme/).
1146
1146
  */
1147
1147
  async deleteOrganizationTheme(
1148
1148
  { themeId, requestHeaders } = { requestHeaders: {} },
@@ -1218,8 +1218,8 @@ class Theme {
1218
1218
  * @param {import("../PartnerAPIClient").Options} - Options
1219
1219
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme[]>} - Success response
1220
1220
  * @name getLatestVersionOfThemeBySlug
1221
- * @summary: Get latest version of specified theme
1222
- * @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/).
1221
+ * @summary: Get latest version of theme by slug.
1222
+ * @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/).
1223
1223
  */
1224
1224
  async getLatestVersionOfThemeBySlug(
1225
1225
  { slugName, requestHeaders } = { requestHeaders: {} },
@@ -1294,8 +1294,8 @@ class Theme {
1294
1294
  * @param {import("../PartnerAPIClient").Options} - Options
1295
1295
  * @returns {Promise<ThemePartnerModel.MarketplaceTheme>} - Success response
1296
1296
  * @name createNewThemeInOrganization
1297
- * @summary: Create a new theme for the organization
1298
- * @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/).
1297
+ * @summary: Create new theme in organization.
1298
+ * @description: Add a new theme to partner server organizations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/createNewThemeInOrganization/).
1299
1299
  */
1300
1300
  async createNewThemeInOrganization(
1301
1301
  { body, slug, requestHeaders } = { requestHeaders: {} },
@@ -1376,8 +1376,8 @@ class Theme {
1376
1376
  * @param {import("../PartnerAPIClient").Options} - Options
1377
1377
  * @returns {Promise<ThemePartnerModel.ThemeRejectionReasons>} - Success response
1378
1378
  * @name getThemeRejectionReasons
1379
- * @summary: Get theme rejection reasons
1380
- * @description: Use this api to get theme rejection reasons - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/partner/theme/getThemeRejectionReasons/).
1379
+ * @summary: Get theme rejection reasons.
1380
+ * @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/).
1381
1381
  */
1382
1382
  async getThemeRejectionReasons(
1383
1383
  { themeId, requestHeaders } = { requestHeaders: {} },
@@ -1453,8 +1453,8 @@ class Theme {
1453
1453
  * @param {import("../PartnerAPIClient").Options} - Options
1454
1454
  * @returns {Promise<ThemePartnerModel.MarketplaceThemeSchema>} - Success response
1455
1455
  * @name getThemeVersions
1456
- * @summary: Get theme versions
1457
- * @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/).
1456
+ * @summary: Get theme versions.
1457
+ * @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/).
1458
1458
  */
1459
1459
  async getThemeVersions(
1460
1460
  { themeSlug, pageSize, pageNo, requestHeaders } = { requestHeaders: {} },
@@ -8,8 +8,8 @@ declare class AuditTrail {
8
8
  * @param {import("../PlatformAPIClient").Options} - Options
9
9
  * @returns {Promise<AuditTrailPlatformModel.CreateLogResponse>} - Success response
10
10
  * @name createAuditLog
11
- * @summary: Create logs for auditing later on
12
- * @description: Create a log instance that stores all the relevant info to be logged - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/createAuditLog/).
11
+ * @summary: Create an audit log.
12
+ * @description: Generate and record an audit log entry for a specific event or action. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/createAuditLog/).
13
13
  */
14
14
  createAuditLog({ body, requestHeaders }?: AuditTrailPlatformValidator.CreateAuditLogParam, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.CreateLogResponse>;
15
15
  /**
@@ -18,8 +18,8 @@ declare class AuditTrail {
18
18
  * @param {import("../PlatformAPIClient").Options} - Options
19
19
  * @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
20
20
  * @name getAuditLog
21
- * @summary: Get audit log
22
- * @description: Get detailed log information by their id - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLog/).
21
+ * @summary: Get an audit log entry.
22
+ * @description: Retrieve a specific audit log entry - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLog/).
23
23
  */
24
24
  getAuditLog({ id, requestHeaders }?: AuditTrailPlatformValidator.GetAuditLogParam, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.LogSchemaResponse>;
25
25
  /**
@@ -28,8 +28,8 @@ declare class AuditTrail {
28
28
  * @param {import("../PlatformAPIClient").Options} - Options
29
29
  * @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
30
30
  * @name getAuditLogs
31
- * @summary: Get paginated audit logs
32
- * @description: Get a paginated set of logs that can be filtered using the available set of parameters and get the relevant group of logs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLogs/).
31
+ * @summary: Retrieve audit logs.
32
+ * @description: Retrieve audit logs for system events and actions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLogs/).
33
33
  */
34
34
  getAuditLogs({ qs, limit, sort, requestHeaders }?: AuditTrailPlatformValidator.GetAuditLogsParam, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.LogSchemaResponse>;
35
35
  /**
@@ -38,8 +38,8 @@ declare class AuditTrail {
38
38
  * @param {import("../PlatformAPIClient").Options} - Options
39
39
  * @returns {Promise<AuditTrailPlatformModel.EntityTypesResponse>} - Success response
40
40
  * @name getEntityTypes
41
- * @summary: Get entity types
42
- * @description: Get a consolidated list of entity types from all the logs stored on the db, which further helps to filter the logs better - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getEntityTypes/).
41
+ * @summary: Obtain entity types for auditing.
42
+ * @description: List of entity types that can be audited within the platform's - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getEntityTypes/).
43
43
  */
44
44
  getEntityTypes({ requestHeaders }?: any, { responseHeaders }?: object): Promise<AuditTrailPlatformModel.EntityTypesResponse>;
45
45
  }
@@ -20,8 +20,8 @@ class AuditTrail {
20
20
  * @param {import("../PlatformAPIClient").Options} - Options
21
21
  * @returns {Promise<AuditTrailPlatformModel.CreateLogResponse>} - Success response
22
22
  * @name createAuditLog
23
- * @summary: Create logs for auditing later on
24
- * @description: Create a log instance that stores all the relevant info to be logged - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/createAuditLog/).
23
+ * @summary: Create an audit log.
24
+ * @description: Generate and record an audit log entry for a specific event or action. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/createAuditLog/).
25
25
  */
26
26
  async createAuditLog(
27
27
  { body, requestHeaders } = { requestHeaders: {} },
@@ -99,8 +99,8 @@ class AuditTrail {
99
99
  * @param {import("../PlatformAPIClient").Options} - Options
100
100
  * @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
101
101
  * @name getAuditLog
102
- * @summary: Get audit log
103
- * @description: Get detailed log information by their id - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLog/).
102
+ * @summary: Get an audit log entry.
103
+ * @description: Retrieve a specific audit log entry - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLog/).
104
104
  */
105
105
  async getAuditLog(
106
106
  { id, requestHeaders } = { requestHeaders: {} },
@@ -178,8 +178,8 @@ class AuditTrail {
178
178
  * @param {import("../PlatformAPIClient").Options} - Options
179
179
  * @returns {Promise<AuditTrailPlatformModel.LogSchemaResponse>} - Success response
180
180
  * @name getAuditLogs
181
- * @summary: Get paginated audit logs
182
- * @description: Get a paginated set of logs that can be filtered using the available set of parameters and get the relevant group of logs - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLogs/).
181
+ * @summary: Retrieve audit logs.
182
+ * @description: Retrieve audit logs for system events and actions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getAuditLogs/).
183
183
  */
184
184
  async getAuditLogs(
185
185
  { qs, limit, sort, requestHeaders } = { requestHeaders: {} },
@@ -264,8 +264,8 @@ class AuditTrail {
264
264
  * @param {import("../PlatformAPIClient").Options} - Options
265
265
  * @returns {Promise<AuditTrailPlatformModel.EntityTypesResponse>} - Success response
266
266
  * @name getEntityTypes
267
- * @summary: Get entity types
268
- * @description: Get a consolidated list of entity types from all the logs stored on the db, which further helps to filter the logs better - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getEntityTypes/).
267
+ * @summary: Obtain entity types for auditing.
268
+ * @description: List of entity types that can be audited within the platform's - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/audittrail/getEntityTypes/).
269
269
  */
270
270
  async getEntityTypes(
271
271
  { requestHeaders } = { requestHeaders: {} },
@@ -8,8 +8,8 @@ declare class Billing {
8
8
  * @param {import("../PlatformAPIClient").Options} - Options
9
9
  * @returns {Promise<BillingPlatformModel.SubscriptionActivateRes>} - Success response
10
10
  * @name activateSubscriptionPlan
11
- * @summary: Activate subscription
12
- * @description: It will activate subscription plan for customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/activateSubscriptionPlan/).
11
+ * @summary: Activate a subscription plan.
12
+ * @description: Activate a specific subscription plan for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/activateSubscriptionPlan/).
13
13
  */
14
14
  activateSubscriptionPlan({ body, requestHeaders }?: BillingPlatformValidator.ActivateSubscriptionPlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionActivateRes>;
15
15
  /**
@@ -18,8 +18,8 @@ declare class Billing {
18
18
  * @param {import("../PlatformAPIClient").Options} - Options
19
19
  * @returns {Promise<BillingPlatformModel.EntitySubscription>} - Success response
20
20
  * @name cancelSubscriptionCharge
21
- * @summary: Cancel subscription charge
22
- * @description: Cancel subscription and attached charges. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionCharge/).
21
+ * @summary: Cancel a subscription charge.
22
+ * @description: Cancel an ongoing subscription charge for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionCharge/).
23
23
  */
24
24
  cancelSubscriptionCharge({ extensionId, subscriptionId, requestHeaders }?: BillingPlatformValidator.CancelSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.EntitySubscription>;
25
25
  /**
@@ -28,8 +28,8 @@ declare class Billing {
28
28
  * @param {import("../PlatformAPIClient").Options} - Options
29
29
  * @returns {Promise<BillingPlatformModel.CancelSubscriptionRes>} - Success response
30
30
  * @name cancelSubscriptionPlan
31
- * @summary: Cancel subscription
32
- * @description: It will cancel current active subscription. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionPlan/).
31
+ * @summary: Cancel a subscription plan.
32
+ * @description: Cancel an active subscription plan for a customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionPlan/).
33
33
  */
34
34
  cancelSubscriptionPlan({ body, requestHeaders }?: BillingPlatformValidator.CancelSubscriptionPlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CancelSubscriptionRes>;
35
35
  /**
@@ -38,8 +38,8 @@ declare class Billing {
38
38
  * @param {import("../PlatformAPIClient").Options} - Options
39
39
  * @returns {Promise<BillingPlatformModel.CheckValidityResponse>} - Success response
40
40
  * @name checkCouponValidity
41
- * @summary: Check coupon validity
42
- * @description: Check coupon validity. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/checkCouponValidity/).
41
+ * @summary: Verify coupon validity.
42
+ * @description: Checks whether a coupon code is valid for discounts while billing. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/checkCouponValidity/).
43
43
  */
44
44
  checkCouponValidity({ plan, couponCode, requestHeaders }?: BillingPlatformValidator.CheckCouponValidityParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CheckValidityResponse>;
45
45
  /**
@@ -49,8 +49,8 @@ declare class Billing {
49
49
  * @returns {Promise<BillingPlatformModel.CreateOneTimeChargeResponse>} -
50
50
  * Success response
51
51
  * @name createOneTimeCharge
52
- * @summary: Create one time subscription charge
53
- * @description: Register one time subscription charge for a seller of your extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createOneTimeCharge/).
52
+ * @summary: Generate a one-time charge.
53
+ * @description: Generate a one-time charge for specific services or products. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createOneTimeCharge/).
54
54
  */
55
55
  createOneTimeCharge({ extensionId, body, requestHeaders }?: BillingPlatformValidator.CreateOneTimeChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CreateOneTimeChargeResponse>;
56
56
  /**
@@ -60,8 +60,8 @@ declare class Billing {
60
60
  * @returns {Promise<BillingPlatformModel.CreateSubscriptionResponse>} -
61
61
  * Success response
62
62
  * @name createSubscriptionCharge
63
- * @summary: Create subscription charge
64
- * @description: Register subscription charge for a seller of your extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createSubscriptionCharge/).
63
+ * @summary: Initiate subscription billing.
64
+ * @description: Register a subscription charge for a seller using your extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createSubscriptionCharge/).
65
65
  */
66
66
  createSubscriptionCharge({ extensionId, body, requestHeaders }?: BillingPlatformValidator.CreateSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.CreateSubscriptionResponse>;
67
67
  /**
@@ -70,8 +70,8 @@ declare class Billing {
70
70
  * @param {import("../PlatformAPIClient").Options} - Options
71
71
  * @returns {Promise<BillingPlatformModel.OneTimeChargeEntity>} - Success response
72
72
  * @name getChargeDetails
73
- * @summary: Get subscription charge details
74
- * @description: Get created subscription charge details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getChargeDetails/).
73
+ * @summary: Obtain charge details.
74
+ * @description: Retrieve comprehensive details about a specific billing charge. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getChargeDetails/).
75
75
  */
76
76
  getChargeDetails({ extensionId, chargeId, requestHeaders }?: BillingPlatformValidator.GetChargeDetailsParam, { responseHeaders }?: object): Promise<BillingPlatformModel.OneTimeChargeEntity>;
77
77
  /**
@@ -80,8 +80,8 @@ declare class Billing {
80
80
  * @param {import("../PlatformAPIClient").Options} - Options
81
81
  * @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
82
82
  * @name getCustomerDetail
83
- * @summary: Get subscription customer detail
84
- * @description: Get subscription customer detail. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getCustomerDetail/).
83
+ * @summary: Fetch customer details.
84
+ * @description: Obtain customer-related billing information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getCustomerDetail/).
85
85
  */
86
86
  getCustomerDetail({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionCustomer>;
87
87
  /**
@@ -90,9 +90,8 @@ declare class Billing {
90
90
  * @param {import("../PlatformAPIClient").Options} - Options
91
91
  * @returns {Promise<BillingPlatformModel.Plan[]>} - Success response
92
92
  * @name getEnterprisePlans
93
- * @summary: Get Enterprise Plans
94
- * @description: Get Enterprise Plans.
95
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
93
+ * @summary: Retrieve enterprise-level plans.
94
+ * @description: Retrieve available enterprise-level subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
96
95
  */
97
96
  getEnterprisePlans({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.Plan[]>;
98
97
  /**
@@ -101,8 +100,8 @@ declare class Billing {
101
100
  * @param {import("../PlatformAPIClient").Options} - Options
102
101
  * @returns {Promise<BillingPlatformModel.SubscriptionLimit>} - Success response
103
102
  * @name getFeatureLimitConfig
104
- * @summary: Get subscription subscription limits
105
- * @description: Get subscription subscription limits. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getFeatureLimitConfig/).
103
+ * @summary: Obtain feature limit configurations.
104
+ * @description: Retrieve configuration settings for feature limits in subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getFeatureLimitConfig/).
106
105
  */
107
106
  getFeatureLimitConfig({ productSuite, type, requestHeaders }?: BillingPlatformValidator.GetFeatureLimitConfigParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionLimit>;
108
107
  /**
@@ -111,8 +110,8 @@ declare class Billing {
111
110
  * @param {import("../PlatformAPIClient").Options} - Options
112
111
  * @returns {Promise<BillingPlatformModel.Invoice>} - Success response
113
112
  * @name getInvoiceById
114
- * @summary: Get invoice by id
115
- * @description: Get invoice by id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoiceById/).
113
+ * @summary: Get a specific invoice.
114
+ * @description: Retrieve a particular invoice's details by providing its unique ID. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoiceById/).
116
115
  */
117
116
  getInvoiceById({ invoiceId, requestHeaders }?: BillingPlatformValidator.GetInvoiceByIdParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Invoice>;
118
117
  /**
@@ -121,8 +120,8 @@ declare class Billing {
121
120
  * @param {import("../PlatformAPIClient").Options} - Options
122
121
  * @returns {Promise<BillingPlatformModel.Invoices>} - Success response
123
122
  * @name getInvoices
124
- * @summary: Get invoices
125
- * @description: Get invoices. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoices/).
123
+ * @summary: Retrieve invoices.
124
+ * @description: Retrieve invoices for billing and payment tracking. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoices/).
126
125
  */
127
126
  getInvoices({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.Invoices>;
128
127
  /**
@@ -131,9 +130,8 @@ declare class Billing {
131
130
  * @param {import("../PlatformAPIClient").Options} - Options
132
131
  * @returns {Promise<BillingPlatformModel.SubscriptionStatus>} - Success response
133
132
  * @name getSubscription
134
- * @summary: Get current subscription detail
135
- * @description: If subscription is active then it will return is_enabled true and return subscription object. If subscription is not active then is_enabled false and message.
136
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
133
+ * @summary: Retrieve subscription details.
134
+ * @description: Retrieve details of a customer's subscription information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
137
135
  */
138
136
  getSubscription({ requestHeaders }?: any, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionStatus>;
139
137
  /**
@@ -142,8 +140,8 @@ declare class Billing {
142
140
  * @param {import("../PlatformAPIClient").Options} - Options
143
141
  * @returns {Promise<BillingPlatformModel.EntitySubscription>} - Success response
144
142
  * @name getSubscriptionCharge
145
- * @summary: Get subscription charge details
146
- * @description: Get created subscription charge details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscriptionCharge/).
143
+ * @summary: Retrieve subscription charge details.
144
+ * @description: Retrieve detailed information about subscription charges using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscriptionCharge/).
147
145
  */
148
146
  getSubscriptionCharge({ extensionId, subscriptionId, requestHeaders }?: BillingPlatformValidator.GetSubscriptionChargeParam, { responseHeaders }?: object): Promise<BillingPlatformModel.EntitySubscription>;
149
147
  /**
@@ -162,8 +160,8 @@ declare class Billing {
162
160
  * @param {import("../PlatformAPIClient").Options} - Options
163
161
  * @returns {Promise<BillingPlatformModel.Plan>} - Success response
164
162
  * @name planStatusUpdate
165
- * @summary: Update Status of The plan
166
- * @description: It will update the status of the plan - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planStatusUpdate/).
163
+ * @summary: Update subscription plan status.
164
+ * @description: Modify the status of a subscription plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planStatusUpdate/).
167
165
  */
168
166
  planStatusUpdate({ body, requestHeaders }?: BillingPlatformValidator.PlanStatusUpdateParam, { responseHeaders }?: object): Promise<BillingPlatformModel.Plan>;
169
167
  /**
@@ -172,8 +170,8 @@ declare class Billing {
172
170
  * @param {import("../PlatformAPIClient").Options} - Options
173
171
  * @returns {Promise<BillingPlatformModel.SubscribePlanRes>} - Success response
174
172
  * @name subscripePlan
175
- * @summary: Subscribe plan.
176
- * @description: It will subscribe a plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscripePlan/).
173
+ * @summary: Subscribe to a plan.
174
+ * @description: Subscribe to a specific billing plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscripePlan/).
177
175
  */
178
176
  subscripePlan({ body, requestHeaders }?: BillingPlatformValidator.SubscripePlanParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscribePlanRes>;
179
177
  /**
@@ -182,8 +180,8 @@ declare class Billing {
182
180
  * @param {import("../PlatformAPIClient").Options} - Options
183
181
  * @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
184
182
  * @name upsertCustomerDetail
185
- * @summary: Upsert subscription customer detail
186
- * @description: Upsert subscription customer detail. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/upsertCustomerDetail/).
183
+ * @summary: Update or insert customer details.
184
+ * @description: Allows you to modify or insert customer information in the billing system. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/upsertCustomerDetail/).
187
185
  */
188
186
  upsertCustomerDetail({ body, requestHeaders }?: BillingPlatformValidator.UpsertCustomerDetailParam, { responseHeaders }?: object): Promise<BillingPlatformModel.SubscriptionCustomer>;
189
187
  }