@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 Billing {
20
20
  * @param {import("../PlatformAPIClient").Options} - Options
21
21
  * @returns {Promise<BillingPlatformModel.SubscriptionActivateRes>} - Success response
22
22
  * @name activateSubscriptionPlan
23
- * @summary: Activate subscription
24
- * @description: It will activate subscription plan for customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/activateSubscriptionPlan/).
23
+ * @summary: Activate a subscription plan.
24
+ * @description: Activate a specific subscription plan for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/activateSubscriptionPlan/).
25
25
  */
26
26
  async activateSubscriptionPlan(
27
27
  { body, requestHeaders } = { requestHeaders: {} },
@@ -101,8 +101,8 @@ class Billing {
101
101
  * @param {import("../PlatformAPIClient").Options} - Options
102
102
  * @returns {Promise<BillingPlatformModel.EntitySubscription>} - Success response
103
103
  * @name cancelSubscriptionCharge
104
- * @summary: Cancel subscription charge
105
- * @description: Cancel subscription and attached charges. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionCharge/).
104
+ * @summary: Cancel a subscription charge.
105
+ * @description: Cancel an ongoing subscription charge for a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionCharge/).
106
106
  */
107
107
  async cancelSubscriptionCharge(
108
108
  { extensionId, subscriptionId, requestHeaders } = { requestHeaders: {} },
@@ -184,8 +184,8 @@ class Billing {
184
184
  * @param {import("../PlatformAPIClient").Options} - Options
185
185
  * @returns {Promise<BillingPlatformModel.CancelSubscriptionRes>} - Success response
186
186
  * @name cancelSubscriptionPlan
187
- * @summary: Cancel subscription
188
- * @description: It will cancel current active subscription. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionPlan/).
187
+ * @summary: Cancel a subscription plan.
188
+ * @description: Cancel an active subscription plan for a customer - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/cancelSubscriptionPlan/).
189
189
  */
190
190
  async cancelSubscriptionPlan(
191
191
  { body, requestHeaders } = { requestHeaders: {} },
@@ -265,8 +265,8 @@ class Billing {
265
265
  * @param {import("../PlatformAPIClient").Options} - Options
266
266
  * @returns {Promise<BillingPlatformModel.CheckValidityResponse>} - Success response
267
267
  * @name checkCouponValidity
268
- * @summary: Check coupon validity
269
- * @description: Check coupon validity. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/checkCouponValidity/).
268
+ * @summary: Verify coupon validity.
269
+ * @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/).
270
270
  */
271
271
  async checkCouponValidity(
272
272
  { plan, couponCode, requestHeaders } = { requestHeaders: {} },
@@ -349,8 +349,8 @@ class Billing {
349
349
  * @returns {Promise<BillingPlatformModel.CreateOneTimeChargeResponse>} -
350
350
  * Success response
351
351
  * @name createOneTimeCharge
352
- * @summary: Create one time subscription charge
353
- * @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/).
352
+ * @summary: Generate a one-time charge.
353
+ * @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/).
354
354
  */
355
355
  async createOneTimeCharge(
356
356
  { extensionId, body, requestHeaders } = { requestHeaders: {} },
@@ -431,8 +431,8 @@ class Billing {
431
431
  * @returns {Promise<BillingPlatformModel.CreateSubscriptionResponse>} -
432
432
  * Success response
433
433
  * @name createSubscriptionCharge
434
- * @summary: Create subscription charge
435
- * @description: Register subscription charge for a seller of your extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/createSubscriptionCharge/).
434
+ * @summary: Initiate subscription billing.
435
+ * @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/).
436
436
  */
437
437
  async createSubscriptionCharge(
438
438
  { extensionId, body, requestHeaders } = { requestHeaders: {} },
@@ -514,8 +514,8 @@ class Billing {
514
514
  * @param {import("../PlatformAPIClient").Options} - Options
515
515
  * @returns {Promise<BillingPlatformModel.OneTimeChargeEntity>} - Success response
516
516
  * @name getChargeDetails
517
- * @summary: Get subscription charge details
518
- * @description: Get created subscription charge details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getChargeDetails/).
517
+ * @summary: Obtain charge details.
518
+ * @description: Retrieve comprehensive details about a specific billing charge. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getChargeDetails/).
519
519
  */
520
520
  async getChargeDetails(
521
521
  { extensionId, chargeId, requestHeaders } = { requestHeaders: {} },
@@ -595,8 +595,8 @@ class Billing {
595
595
  * @param {import("../PlatformAPIClient").Options} - Options
596
596
  * @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
597
597
  * @name getCustomerDetail
598
- * @summary: Get subscription customer detail
599
- * @description: Get subscription customer detail. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getCustomerDetail/).
598
+ * @summary: Fetch customer details.
599
+ * @description: Obtain customer-related billing information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getCustomerDetail/).
600
600
  */
601
601
  async getCustomerDetail(
602
602
  { requestHeaders } = { requestHeaders: {} },
@@ -670,9 +670,8 @@ class Billing {
670
670
  * @param {import("../PlatformAPIClient").Options} - Options
671
671
  * @returns {Promise<BillingPlatformModel.Plan[]>} - Success response
672
672
  * @name getEnterprisePlans
673
- * @summary: Get Enterprise Plans
674
- * @description: Get Enterprise Plans.
675
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
673
+ * @summary: Retrieve enterprise-level plans.
674
+ * @description: Retrieve available enterprise-level subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getEnterprisePlans/).
676
675
  */
677
676
  async getEnterprisePlans(
678
677
  { requestHeaders } = { requestHeaders: {} },
@@ -743,8 +742,8 @@ class Billing {
743
742
  * @param {import("../PlatformAPIClient").Options} - Options
744
743
  * @returns {Promise<BillingPlatformModel.SubscriptionLimit>} - Success response
745
744
  * @name getFeatureLimitConfig
746
- * @summary: Get subscription subscription limits
747
- * @description: Get subscription subscription limits. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getFeatureLimitConfig/).
745
+ * @summary: Obtain feature limit configurations.
746
+ * @description: Retrieve configuration settings for feature limits in subscription plans. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getFeatureLimitConfig/).
748
747
  */
749
748
  async getFeatureLimitConfig(
750
749
  { productSuite, type, requestHeaders } = { requestHeaders: {} },
@@ -826,8 +825,8 @@ class Billing {
826
825
  * @param {import("../PlatformAPIClient").Options} - Options
827
826
  * @returns {Promise<BillingPlatformModel.Invoice>} - Success response
828
827
  * @name getInvoiceById
829
- * @summary: Get invoice by id
830
- * @description: Get invoice by id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoiceById/).
828
+ * @summary: Get a specific invoice.
829
+ * @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/).
831
830
  */
832
831
  async getInvoiceById(
833
832
  { invoiceId, requestHeaders } = { requestHeaders: {} },
@@ -905,8 +904,8 @@ class Billing {
905
904
  * @param {import("../PlatformAPIClient").Options} - Options
906
905
  * @returns {Promise<BillingPlatformModel.Invoices>} - Success response
907
906
  * @name getInvoices
908
- * @summary: Get invoices
909
- * @description: Get invoices. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoices/).
907
+ * @summary: Retrieve invoices.
908
+ * @description: Retrieve invoices for billing and payment tracking. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getInvoices/).
910
909
  */
911
910
  async getInvoices(
912
911
  { requestHeaders } = { requestHeaders: {} },
@@ -978,9 +977,8 @@ class Billing {
978
977
  * @param {import("../PlatformAPIClient").Options} - Options
979
978
  * @returns {Promise<BillingPlatformModel.SubscriptionStatus>} - Success response
980
979
  * @name getSubscription
981
- * @summary: Get current subscription detail
982
- * @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.
983
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
980
+ * @summary: Retrieve subscription details.
981
+ * @description: Retrieve details of a customer's subscription information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscription/).
984
982
  */
985
983
  async getSubscription(
986
984
  { requestHeaders } = { requestHeaders: {} },
@@ -1054,8 +1052,8 @@ class Billing {
1054
1052
  * @param {import("../PlatformAPIClient").Options} - Options
1055
1053
  * @returns {Promise<BillingPlatformModel.EntitySubscription>} - Success response
1056
1054
  * @name getSubscriptionCharge
1057
- * @summary: Get subscription charge details
1058
- * @description: Get created subscription charge details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscriptionCharge/).
1055
+ * @summary: Retrieve subscription charge details.
1056
+ * @description: Retrieve detailed information about subscription charges using this API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/getSubscriptionCharge/).
1059
1057
  */
1060
1058
  async getSubscriptionCharge(
1061
1059
  { extensionId, subscriptionId, requestHeaders } = { requestHeaders: {} },
@@ -1234,8 +1232,8 @@ class Billing {
1234
1232
  * @param {import("../PlatformAPIClient").Options} - Options
1235
1233
  * @returns {Promise<BillingPlatformModel.Plan>} - Success response
1236
1234
  * @name planStatusUpdate
1237
- * @summary: Update Status of The plan
1238
- * @description: It will update the status of the plan - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planStatusUpdate/).
1235
+ * @summary: Update subscription plan status.
1236
+ * @description: Modify the status of a subscription plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/planStatusUpdate/).
1239
1237
  */
1240
1238
  async planStatusUpdate(
1241
1239
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1313,8 +1311,8 @@ class Billing {
1313
1311
  * @param {import("../PlatformAPIClient").Options} - Options
1314
1312
  * @returns {Promise<BillingPlatformModel.SubscribePlanRes>} - Success response
1315
1313
  * @name subscripePlan
1316
- * @summary: Subscribe plan.
1317
- * @description: It will subscribe a plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscripePlan/).
1314
+ * @summary: Subscribe to a plan.
1315
+ * @description: Subscribe to a specific billing plan. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/subscripePlan/).
1318
1316
  */
1319
1317
  async subscripePlan(
1320
1318
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1392,8 +1390,8 @@ class Billing {
1392
1390
  * @param {import("../PlatformAPIClient").Options} - Options
1393
1391
  * @returns {Promise<BillingPlatformModel.SubscriptionCustomer>} - Success response
1394
1392
  * @name upsertCustomerDetail
1395
- * @summary: Upsert subscription customer detail
1396
- * @description: Upsert subscription customer detail. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/billing/upsertCustomerDetail/).
1393
+ * @summary: Update or insert customer details.
1394
+ * @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/).
1397
1395
  */
1398
1396
  async upsertCustomerDetail(
1399
1397
  { body, requestHeaders } = { requestHeaders: {} },