@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
@@ -98,8 +98,8 @@ class User {
98
98
  * @param {import("../PlatformAPIClient").Options} - Options
99
99
  * @returns {Promise<UserPlatformModel.BlockUserSuccess>} - Success response
100
100
  * @name blockOrUnblockUsers
101
- * @summary: Block/Unblock user
102
- * @description: Block/Unblock user - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/blockOrUnblockUsers/).
101
+ * @summary: Block/unblock users.
102
+ * @description: Control user access by blocking or unblocking their accounts. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/blockOrUnblockUsers/).
103
103
  */
104
104
  async blockOrUnblockUsers(
105
105
  { body, requestHeaders } = { requestHeaders: {} },
@@ -177,8 +177,8 @@ class User {
177
177
  * @param {import("../PlatformAPIClient").Options} - Options
178
178
  * @returns {Promise<UserPlatformModel.CreateUserResponseSchema>} - Success response
179
179
  * @name createUser
180
- * @summary: Create user
181
- * @description: Create user - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/createUser/).
180
+ * @summary: Create user.
181
+ * @description: Register and add a new user to the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/createUser/).
182
182
  */
183
183
  async createUser(
184
184
  { body, requestHeaders } = { requestHeaders: {} },
@@ -336,8 +336,8 @@ class User {
336
336
  * @param {import("../PlatformAPIClient").Options} - Options
337
337
  * @returns {Promise<UserPlatformModel.UserGroupResponseSchema>} - Success response
338
338
  * @name createUserGroup
339
- * @summary: Create an User Group
340
- * @description: Use this API to create new user Group - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/createUserGroup/).
339
+ * @summary: Create user group.
340
+ * @description: Form and add a new user group. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/createUserGroup/).
341
341
  */
342
342
  async createUserGroup(
343
343
  { body, requestHeaders } = { requestHeaders: {} },
@@ -416,8 +416,8 @@ class User {
416
416
  * @returns {Promise<UserPlatformModel.CreateUserSessionResponseSchema>} -
417
417
  * Success response
418
418
  * @name createUserSession
419
- * @summary: Create user session
420
- * @description: Create user session - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/createUserSession/).
419
+ * @summary: Create user session.
420
+ * @description: Establish a session for user interactions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/createUserSession/).
421
421
  */
422
422
  async createUserSession(
423
423
  { body, requestHeaders } = { requestHeaders: {} },
@@ -498,8 +498,8 @@ class User {
498
498
  * @returns {Promise<UserPlatformModel.SessionsDeleteResponseSchema>} -
499
499
  * Success response
500
500
  * @name deleteActiveSessions
501
- * @summary: Delete a list of all session for a user
502
- * @description: Use this API to Delete a list of session of customers who have registered in the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/deleteActiveSessions/).
501
+ * @summary: Delete active sessions.
502
+ * @description: End multiple active user sessions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/deleteActiveSessions/).
503
503
  */
504
504
  async deleteActiveSessions(
505
505
  { id, reason, requestHeaders } = { requestHeaders: {} },
@@ -582,8 +582,8 @@ class User {
582
582
  * @returns {Promise<UserPlatformModel.SessionDeleteResponseSchema>} -
583
583
  * Success response
584
584
  * @name deleteSession
585
- * @summary: Delete a session for a user
586
- * @description: Use this API to Delete a session of customers who have registered in the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/deleteSession/).
585
+ * @summary: Delete session.
586
+ * @description: Terminate an active user session. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/deleteSession/).
587
587
  */
588
588
  async deleteSession(
589
589
  { id, sessionId, reason, requestHeaders } = { requestHeaders: {} },
@@ -818,8 +818,8 @@ class User {
818
818
  * @param {import("../PlatformAPIClient").Options} - Options
819
819
  * @returns {Promise<UserPlatformModel.SessionListResponseSchema>} - Success response
820
820
  * @name getActiveSessions
821
- * @summary: Get a list of all session with info for a user
822
- * @description: Use this API to retrieve a list of session with info of customers who have registered in the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getActiveSessions/).
821
+ * @summary: Get active sessions.
822
+ * @description: Retrieve a list of currently active user sessions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getActiveSessions/).
823
823
  */
824
824
  async getActiveSessions(
825
825
  { id, requestHeaders } = { requestHeaders: {} },
@@ -898,8 +898,8 @@ class User {
898
898
  * @param {import("../PlatformAPIClient").Options} - Options
899
899
  * @returns {Promise<UserPlatformModel.CustomerListResponseSchema>} - Success response
900
900
  * @name getCustomers
901
- * @summary: Get a list of customers
902
- * @description: Use this API to retrieve a list of customers who have registered in the application. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getCustomers/).
901
+ * @summary: Get customers.
902
+ * @description: Retrieve a list of customer profiles. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getCustomers/).
903
903
  */
904
904
  async getCustomers(
905
905
  { q, pageSize, pageNo, requestHeaders } = { requestHeaders: {} },
@@ -982,8 +982,8 @@ class User {
982
982
  * @param {import("../PlatformAPIClient").Options} - Options
983
983
  * @returns {Promise<UserPlatformModel.PlatformSchema>} - Success response
984
984
  * @name getPlatformConfig
985
- * @summary: Get platform configurations
986
- * @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/platform/user/getPlatformConfig/).
985
+ * @summary: Get platform config.
986
+ * @description: Retrieve configuration settings for the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getPlatformConfig/).
987
987
  */
988
988
  async getPlatformConfig(
989
989
  { requestHeaders } = { requestHeaders: {} },
@@ -1496,8 +1496,8 @@ class User {
1496
1496
  * @param {import("../PlatformAPIClient").Options} - Options
1497
1497
  * @returns {Promise<UserPlatformModel.UserGroupResponseSchema>} - Success response
1498
1498
  * @name getUserGroupById
1499
- * @summary: Get an User Group by Id
1500
- * @description: Use this API to get details of an existing user Group - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getUserGroupById/).
1499
+ * @summary: Get user group by ID.
1500
+ * @description: Retrieve a user group by its unique identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getUserGroupById/).
1501
1501
  */
1502
1502
  async getUserGroupById(
1503
1503
  { groupId, requestHeaders } = { requestHeaders: {} },
@@ -1576,8 +1576,8 @@ class User {
1576
1576
  * @returns {Promise<UserPlatformModel.UserGroupListResponseSchema>} -
1577
1577
  * Success response
1578
1578
  * @name getUserGroups
1579
- * @summary: Get User Groups mathcing criteria
1580
- * @description: Use this API to get User Groups mathing criteria passed in query - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getUserGroups/).
1579
+ * @summary: Get user groups.
1580
+ * @description: Retrieve a list of user groups. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/getUserGroups/).
1581
1581
  */
1582
1582
  async getUserGroups(
1583
1583
  { pageNo, pageSize, name, type, status, groupUid, requestHeaders } = {
@@ -1671,8 +1671,8 @@ class User {
1671
1671
  * @param {import("../PlatformAPIClient").Options} - Options
1672
1672
  * @returns {Promise<UserPlatformModel.UserSearchResponseSchema>} - Success response
1673
1673
  * @name searchUsers
1674
- * @summary: Search an existing user.
1675
- * @description: Use this API to retrieve an existing user from a list. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/searchUsers/).
1674
+ * @summary: Search users.
1675
+ * @description: Search and filter user profiles. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/searchUsers/).
1676
1676
  */
1677
1677
  async searchUsers(
1678
1678
  { q, query, requestHeaders } = { requestHeaders: {} },
@@ -1752,8 +1752,8 @@ class User {
1752
1752
  * @param {import("../PlatformAPIClient").Options} - Options
1753
1753
  * @returns {Promise<UserPlatformModel.UnDeleteUserSuccess>} - Success response
1754
1754
  * @name unDeleteUser
1755
- * @summary: undelete user who deleted from application and have not elapsed the platform configured delete days
1756
- * @description: undelete user who deleted from application and have not elapsed the platform configured delete days - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/unDeleteUser/).
1755
+ * @summary: Undelete user.
1756
+ * @description: Restore a previously deleted user account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/unDeleteUser/).
1757
1757
  */
1758
1758
  async unDeleteUser(
1759
1759
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1831,8 +1831,8 @@ class User {
1831
1831
  * @param {import("../PlatformAPIClient").Options} - Options
1832
1832
  * @returns {Promise<UserPlatformModel.PlatformSchema>} - Success response
1833
1833
  * @name updatePlatformConfig
1834
- * @summary: Update platform configurations
1835
- * @description: Use this API to edit the existing 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/platform/user/updatePlatformConfig/).
1834
+ * @summary: Update platform config.
1835
+ * @description: Modify and update platform configuration settings. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updatePlatformConfig/).
1836
1836
  */
1837
1837
  async updatePlatformConfig(
1838
1838
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1910,8 +1910,8 @@ class User {
1910
1910
  * @param {import("../PlatformAPIClient").Options} - Options
1911
1911
  * @returns {Promise<UserPlatformModel.CreateUserResponseSchema>} - Success response
1912
1912
  * @name updateUser
1913
- * @summary: Update user
1914
- * @description: Use this API to update user details, Note: Existing emails and phone numbers of user will be replaced directly if phone_numbers or emails field sent in request data. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updateUser/).
1913
+ * @summary: Update user.
1914
+ * @description: Modify and update user profile information. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updateUser/).
1915
1915
  */
1916
1916
  async updateUser(
1917
1917
  { userId, body, requestHeaders } = { requestHeaders: {} },
@@ -2159,8 +2159,8 @@ class User {
2159
2159
  * @param {import("../PlatformAPIClient").Options} - Options
2160
2160
  * @returns {Promise<UserPlatformModel.UserGroupResponseSchema>} - Success response
2161
2161
  * @name updateUserGroup
2162
- * @summary: Update an User Group
2163
- * @description: Use this API to update an existing user Group - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updateUserGroup/).
2162
+ * @summary: Update user group.
2163
+ * @description: Modify and update user group details. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updateUserGroup/).
2164
2164
  */
2165
2165
  async updateUserGroup(
2166
2166
  { groupId, body, requestHeaders } = { requestHeaders: {} },
@@ -2243,7 +2243,7 @@ class User {
2243
2243
  * @returns {Promise<UserPlatformModel.UserGroupResponseSchema>} - Success response
2244
2244
  * @name updateUserGroupPartially
2245
2245
  * @summary: Add or Remove an user from particular user group and update user group details
2246
- * @description: Use this API to update user group details and add or remove an user to the user group. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updateUserGroupPartially/).
2246
+ * @description: Update user group partially on the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/user/updateUserGroupPartially/).
2247
2247
  */
2248
2248
  async updateUserGroupPartially(
2249
2249
  { groupId, body, requestHeaders } = { requestHeaders: {} },
@@ -322,7 +322,7 @@ export = UserPlatformModel;
322
322
  /**
323
323
  * @typedef SocialTokens
324
324
  * @property {Facebook} [facebook]
325
- * @property {Accountkit} [accountkit]
325
+ * @property {Accountkit} [account_kit]
326
326
  * @property {Google} [google]
327
327
  */
328
328
  /**
@@ -959,7 +959,7 @@ type FlashCard = {
959
959
  declare function SocialTokens(): SocialTokens;
960
960
  type SocialTokens = {
961
961
  facebook?: Facebook;
962
- accountkit?: Accountkit;
962
+ account_kit?: Accountkit;
963
963
  google?: Google;
964
964
  };
965
965
  /** @returns {DeleteAccountReasons} */
@@ -366,7 +366,7 @@ const Joi = require("joi");
366
366
  /**
367
367
  * @typedef SocialTokens
368
368
  * @property {Facebook} [facebook]
369
- * @property {Accountkit} [accountkit]
369
+ * @property {Accountkit} [account_kit]
370
370
  * @property {Google} [google]
371
371
  */
372
372
 
@@ -985,7 +985,7 @@ class UserPlatformModel {
985
985
  static SocialTokens() {
986
986
  return Joi.object({
987
987
  facebook: UserPlatformModel.Facebook(),
988
- accountkit: UserPlatformModel.Accountkit(),
988
+ account_kit: UserPlatformModel.Accountkit(),
989
989
  google: UserPlatformModel.Google(),
990
990
  });
991
991
  }
@@ -8,9 +8,8 @@ declare class Webhook {
8
8
  * @param {import("../PlatformAPIClient").Options} - Options
9
9
  * @returns {Promise<WebhookPlatformModel.CancelResponse>} - Success response
10
10
  * @name cancelJobByName
11
- * @summary: Cancel a report export.
12
- * @description: Cancel the export of a specific report for a company.
13
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/cancelJobByName/).
11
+ * @summary: Cancel job by name.
12
+ * @description: Cancel a specific job by its name. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/cancelJobByName/).
14
13
  */
15
14
  cancelJobByName({ filename, requestHeaders }?: WebhookPlatformValidator.CancelJobByNameParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.CancelResponse>;
16
15
  /**
@@ -19,9 +18,8 @@ declare class Webhook {
19
18
  * @param {import("../PlatformAPIClient").Options} - Options
20
19
  * @returns {Promise<WebhookPlatformModel.DownloadReportResponse>} - Success response
21
20
  * @name downloadDeliveryReport
22
- * @summary: Download processed events report for a company.
23
- * @description: Download reports for a specific company based on the provided filters.
24
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/downloadDeliveryReport/).
21
+ * @summary: Download delivery report.
22
+ * @description: Download detailed delivery reports for events. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/downloadDeliveryReport/).
25
23
  */
26
24
  downloadDeliveryReport({ body, requestHeaders }?: WebhookPlatformValidator.DownloadDeliveryReportParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.DownloadReportResponse>;
27
25
  /**
@@ -30,9 +28,8 @@ declare class Webhook {
30
28
  * @param {import("../PlatformAPIClient").Options} - Options
31
29
  * @returns {Promise<WebhookPlatformModel.EventConfigResponse>} - Success response
32
30
  * @name fetchAllEventConfigurations
33
- * @summary: Get All Webhook Events.
34
- * @description: To fetch all webhook events.
35
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/fetchAllEventConfigurations/).
31
+ * @summary: Fetch all event configurations.
32
+ * @description: Retrieve all configurations for event handling. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/fetchAllEventConfigurations/).
36
33
  */
37
34
  fetchAllEventConfigurations({ requestHeaders }?: any, { responseHeaders }?: object): Promise<WebhookPlatformModel.EventConfigResponse>;
38
35
  /**
@@ -41,9 +38,8 @@ declare class Webhook {
41
38
  * @param {import("../PlatformAPIClient").Options} - Options
42
39
  * @returns {Promise<WebhookPlatformModel.EventProcessReports>} - Success response
43
40
  * @name getDeliveryReports
44
- * @summary: Get processed events report for a company.
45
- * @description: Retrieve a list of processed events for a specific company based on the provided filters.
46
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getDeliveryReports/).
41
+ * @summary: Get delivery reports.
42
+ * @description: Retrieve reports on the delivery status of events. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getDeliveryReports/).
47
43
  */
48
44
  getDeliveryReports({ body, requestHeaders }?: WebhookPlatformValidator.GetDeliveryReportsParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.EventProcessReports>;
49
45
  /**
@@ -52,9 +48,8 @@ declare class Webhook {
52
48
  * @param {import("../PlatformAPIClient").Options} - Options
53
49
  * @returns {Promise<WebhookPlatformModel.RetryCountResponse>} - Success response
54
50
  * @name getEventCounts
55
- * @summary: Get the count of failed events for a company within a specified date range.
56
- * @description: Retrieves the count of failed events for a specific company within the specified date range. The user can filter the count based on specific event types if provided.
57
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getEventCounts/).
51
+ * @summary: Get event counts.
52
+ * @description: Retrieve the counts of events based on their status. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getEventCounts/).
58
53
  */
59
54
  getEventCounts({ body, requestHeaders }?: WebhookPlatformValidator.GetEventCountsParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.RetryCountResponse>;
60
55
  /**
@@ -63,9 +58,8 @@ declare class Webhook {
63
58
  * @param {import("../PlatformAPIClient").Options} - Options
64
59
  * @returns {Promise<WebhookPlatformModel.HistoryResponse>} - Success response
65
60
  * @name getHistoricalReports
66
- * @summary: Get report download history.
67
- * @description: Retrieve history reports for a specific company based on the provided filters.
68
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getHistoricalReports/).
61
+ * @summary: Get historical reports.
62
+ * @description: Retrieve historical reports of webhook events. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getHistoricalReports/).
69
63
  */
70
64
  getHistoricalReports({ body, requestHeaders }?: WebhookPlatformValidator.GetHistoricalReportsParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.HistoryResponse>;
71
65
  /**
@@ -74,9 +68,8 @@ declare class Webhook {
74
68
  * @param {import("../PlatformAPIClient").Options} - Options
75
69
  * @returns {Promise<WebhookPlatformModel.RetryStatusResponse>} - Success response
76
70
  * @name getManualRetryStatus
77
- * @summary: Get the retry status for a company's failed events.
78
- * @description: Retrieves the status of retry for a specific company's failed events. This endpoint returns the total number of events, the count of successfully retried events, the count of failed retry attempts, and the overall status of the retry process.
79
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getManualRetryStatus/).
71
+ * @summary: Get manual retry status.
72
+ * @description: Check the status of a manual retry operation. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getManualRetryStatus/).
80
73
  */
81
74
  getManualRetryStatus({ requestHeaders }?: any, { responseHeaders }?: object): Promise<WebhookPlatformModel.RetryStatusResponse>;
82
75
  /**
@@ -85,9 +78,8 @@ declare class Webhook {
85
78
  * @param {import("../PlatformAPIClient").Options} - Options
86
79
  * @returns {Promise<WebhookPlatformModel.ReportFilterResponse[]>} - Success response
87
80
  * @name getReportFilters
88
- * @summary: Get filters for a company.
89
- * @description: Retrieve filters for a specific company based on the provided subscriber IDs.
90
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getReportFilters/).
81
+ * @summary: Get report filters.
82
+ * @description: Retrieve filters used for generating reports. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getReportFilters/).
91
83
  */
92
84
  getReportFilters({ body, requestHeaders }?: WebhookPlatformValidator.GetReportFiltersParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.ReportFilterResponse[]>;
93
85
  /**
@@ -96,8 +88,8 @@ declare class Webhook {
96
88
  * @param {import("../PlatformAPIClient").Options} - Options
97
89
  * @returns {Promise<WebhookPlatformModel.SubscriberResponse>} - Success response
98
90
  * @name getSubscriberById
99
- * @summary: Get Subscriber By Subscriber ID
100
- * @description: Get Subscriber By Subscriber ID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscriberById/).
91
+ * @summary: Get subscriber by ID.
92
+ * @description: Retrieve a subscriber's details by their unique identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscriberById/).
101
93
  */
102
94
  getSubscriberById({ subscriberId, requestHeaders }?: WebhookPlatformValidator.GetSubscriberByIdParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.SubscriberResponse>;
103
95
  /**
@@ -106,9 +98,8 @@ declare class Webhook {
106
98
  * @param {import("../PlatformAPIClient").Options} - Options
107
99
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigList>} - Success response
108
100
  * @name getSubscribersByCompany
109
- * @summary: Get Subscribers By CompanyId.
110
- * @description: Get Subscribers By Company ID.
111
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByCompany/).
101
+ * @summary: Get subscribers by company.
102
+ * @description: Retrieve subscribers associated with a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByCompany/).
112
103
  */
113
104
  getSubscribersByCompany({ pageNo, pageSize, extensionId, requestHeaders }?: WebhookPlatformValidator.GetSubscribersByCompanyParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.SubscriberConfigList>;
114
105
  /**
@@ -117,8 +108,8 @@ declare class Webhook {
117
108
  * @param {import("../PlatformAPIClient").Options} - Options
118
109
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigList>} - Success response
119
110
  * @name getSubscribersByExtensionId
120
- * @summary: Get Subscribers By Extension ID
121
- * @description: Get Subscribers By ExtensionID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByExtensionId/).
111
+ * @summary: Get subscribers by extension ID.
112
+ * @description: Retrieve subscribers associated with a specific extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByExtensionId/).
122
113
  */
123
114
  getSubscribersByExtensionId({ extensionId, pageNo, pageSize, requestHeaders }?: WebhookPlatformValidator.GetSubscribersByExtensionIdParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.SubscriberConfigList>;
124
115
  /**
@@ -127,9 +118,8 @@ declare class Webhook {
127
118
  * @param {import("../PlatformAPIClient").Options} - Options
128
119
  * @returns {Promise<string>} - Success response
129
120
  * @name manualRetryCancel
130
- * @summary: Cancel the active manual retry for a company's failed events.
131
- * @description: Cancels the active manual retry for a specific company's failed events. If a manual retry is currently in progress, it will be cancelled.
132
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryCancel/).
121
+ * @summary: Manual retry cancellation.
122
+ * @description: Cancel a manual retry operation for a failed event. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryCancel/).
133
123
  */
134
124
  manualRetryCancel({ requestHeaders }?: any, { responseHeaders }?: object): Promise<string>;
135
125
  /**
@@ -138,9 +128,8 @@ declare class Webhook {
138
128
  * @param {import("../PlatformAPIClient").Options} - Options
139
129
  * @returns {Promise<WebhookPlatformModel.RetrySuccessResponse>} - Success response
140
130
  * @name manualRetryOfFailedEvent
141
- * @summary: Initiate a manual retry for event processing.
142
- * @description: Initiates a manual retry for event processing for a specific company. This endpoint allows the user to specify the date range (start_date and end_date) within which the events should be retried.
143
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryOfFailedEvent/).
131
+ * @summary: Manual retry of failed event.
132
+ * @description: Trigger a manual retry for an event that failed to deliver. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryOfFailedEvent/).
144
133
  */
145
134
  manualRetryOfFailedEvent({ body, requestHeaders }?: WebhookPlatformValidator.ManualRetryOfFailedEventParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.RetrySuccessResponse>;
146
135
  /**
@@ -149,9 +138,8 @@ declare class Webhook {
149
138
  * @param {import("../PlatformAPIClient").Options} - Options
150
139
  * @returns {Promise<WebhookPlatformModel.PingWebhookResponse>} - Success response
151
140
  * @name pingWebhook
152
- * @summary: Ping and validate webhook url.
153
- * @description: Ping and validate webhook url.
154
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/pingWebhook/).
141
+ * @summary: Ping webhook.
142
+ * @description: Send a test ping to a webhook for verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/pingWebhook/).
155
143
  */
156
144
  pingWebhook({ body, requestHeaders }?: WebhookPlatformValidator.PingWebhookParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.PingWebhookResponse>;
157
145
  /**
@@ -161,9 +149,8 @@ declare class Webhook {
161
149
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigResponse>} -
162
150
  * Success response
163
151
  * @name registerSubscriberToEvent
164
- * @summary: Register Subscriber.
165
- * @description: Register Subscriber.
166
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/registerSubscriberToEvent/).
152
+ * @summary: Register subscriber to event.
153
+ * @description: Add a subscriber to receive events of a specific type. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/registerSubscriberToEvent/).
167
154
  */
168
155
  registerSubscriberToEvent({ body, requestHeaders }?: WebhookPlatformValidator.RegisterSubscriberToEventParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.SubscriberConfigResponse>;
169
156
  /**
@@ -173,8 +160,8 @@ declare class Webhook {
173
160
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigResponse>} -
174
161
  * Success response
175
162
  * @name updateSubscriberConfig
176
- * @summary: Update Subscriber
177
- * @description: Update Subscriber - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/updateSubscriberConfig/).
163
+ * @summary: Update subscriber config.
164
+ * @description: Modify and update subscriber configuration settings. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/updateSubscriberConfig/).
178
165
  */
179
166
  updateSubscriberConfig({ body, requestHeaders }?: WebhookPlatformValidator.UpdateSubscriberConfigParam, { responseHeaders }?: object): Promise<WebhookPlatformModel.SubscriberConfigResponse>;
180
167
  }
@@ -20,9 +20,8 @@ class Webhook {
20
20
  * @param {import("../PlatformAPIClient").Options} - Options
21
21
  * @returns {Promise<WebhookPlatformModel.CancelResponse>} - Success response
22
22
  * @name cancelJobByName
23
- * @summary: Cancel a report export.
24
- * @description: Cancel the export of a specific report for a company.
25
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/cancelJobByName/).
23
+ * @summary: Cancel job by name.
24
+ * @description: Cancel a specific job by its name. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/cancelJobByName/).
26
25
  */
27
26
  async cancelJobByName(
28
27
  { filename, requestHeaders } = { requestHeaders: {} },
@@ -100,9 +99,8 @@ class Webhook {
100
99
  * @param {import("../PlatformAPIClient").Options} - Options
101
100
  * @returns {Promise<WebhookPlatformModel.DownloadReportResponse>} - Success response
102
101
  * @name downloadDeliveryReport
103
- * @summary: Download processed events report for a company.
104
- * @description: Download reports for a specific company based on the provided filters.
105
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/downloadDeliveryReport/).
102
+ * @summary: Download delivery report.
103
+ * @description: Download detailed delivery reports for events. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/downloadDeliveryReport/).
106
104
  */
107
105
  async downloadDeliveryReport(
108
106
  { body, requestHeaders } = { requestHeaders: {} },
@@ -182,9 +180,8 @@ class Webhook {
182
180
  * @param {import("../PlatformAPIClient").Options} - Options
183
181
  * @returns {Promise<WebhookPlatformModel.EventConfigResponse>} - Success response
184
182
  * @name fetchAllEventConfigurations
185
- * @summary: Get All Webhook Events.
186
- * @description: To fetch all webhook events.
187
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/fetchAllEventConfigurations/).
183
+ * @summary: Fetch all event configurations.
184
+ * @description: Retrieve all configurations for event handling. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/fetchAllEventConfigurations/).
188
185
  */
189
186
  async fetchAllEventConfigurations(
190
187
  { requestHeaders } = { requestHeaders: {} },
@@ -260,9 +257,8 @@ class Webhook {
260
257
  * @param {import("../PlatformAPIClient").Options} - Options
261
258
  * @returns {Promise<WebhookPlatformModel.EventProcessReports>} - Success response
262
259
  * @name getDeliveryReports
263
- * @summary: Get processed events report for a company.
264
- * @description: Retrieve a list of processed events for a specific company based on the provided filters.
265
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getDeliveryReports/).
260
+ * @summary: Get delivery reports.
261
+ * @description: Retrieve reports on the delivery status of events. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getDeliveryReports/).
266
262
  */
267
263
  async getDeliveryReports(
268
264
  { body, requestHeaders } = { requestHeaders: {} },
@@ -340,9 +336,8 @@ class Webhook {
340
336
  * @param {import("../PlatformAPIClient").Options} - Options
341
337
  * @returns {Promise<WebhookPlatformModel.RetryCountResponse>} - Success response
342
338
  * @name getEventCounts
343
- * @summary: Get the count of failed events for a company within a specified date range.
344
- * @description: Retrieves the count of failed events for a specific company within the specified date range. The user can filter the count based on specific event types if provided.
345
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getEventCounts/).
339
+ * @summary: Get event counts.
340
+ * @description: Retrieve the counts of events based on their status. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getEventCounts/).
346
341
  */
347
342
  async getEventCounts(
348
343
  { body, requestHeaders } = { requestHeaders: {} },
@@ -420,9 +415,8 @@ class Webhook {
420
415
  * @param {import("../PlatformAPIClient").Options} - Options
421
416
  * @returns {Promise<WebhookPlatformModel.HistoryResponse>} - Success response
422
417
  * @name getHistoricalReports
423
- * @summary: Get report download history.
424
- * @description: Retrieve history reports for a specific company based on the provided filters.
425
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getHistoricalReports/).
418
+ * @summary: Get historical reports.
419
+ * @description: Retrieve historical reports of webhook events. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getHistoricalReports/).
426
420
  */
427
421
  async getHistoricalReports(
428
422
  { body, requestHeaders } = { requestHeaders: {} },
@@ -500,9 +494,8 @@ class Webhook {
500
494
  * @param {import("../PlatformAPIClient").Options} - Options
501
495
  * @returns {Promise<WebhookPlatformModel.RetryStatusResponse>} - Success response
502
496
  * @name getManualRetryStatus
503
- * @summary: Get the retry status for a company's failed events.
504
- * @description: Retrieves the status of retry for a specific company's failed events. This endpoint returns the total number of events, the count of successfully retried events, the count of failed retry attempts, and the overall status of the retry process.
505
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getManualRetryStatus/).
497
+ * @summary: Get manual retry status.
498
+ * @description: Check the status of a manual retry operation. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getManualRetryStatus/).
506
499
  */
507
500
  async getManualRetryStatus(
508
501
  { requestHeaders } = { requestHeaders: {} },
@@ -576,9 +569,8 @@ class Webhook {
576
569
  * @param {import("../PlatformAPIClient").Options} - Options
577
570
  * @returns {Promise<WebhookPlatformModel.ReportFilterResponse[]>} - Success response
578
571
  * @name getReportFilters
579
- * @summary: Get filters for a company.
580
- * @description: Retrieve filters for a specific company based on the provided subscriber IDs.
581
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getReportFilters/).
572
+ * @summary: Get report filters.
573
+ * @description: Retrieve filters used for generating reports. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getReportFilters/).
582
574
  */
583
575
  async getReportFilters(
584
576
  { body, requestHeaders } = { requestHeaders: {} },
@@ -653,8 +645,8 @@ class Webhook {
653
645
  * @param {import("../PlatformAPIClient").Options} - Options
654
646
  * @returns {Promise<WebhookPlatformModel.SubscriberResponse>} - Success response
655
647
  * @name getSubscriberById
656
- * @summary: Get Subscriber By Subscriber ID
657
- * @description: Get Subscriber By Subscriber ID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscriberById/).
648
+ * @summary: Get subscriber by ID.
649
+ * @description: Retrieve a subscriber's details by their unique identifier. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscriberById/).
658
650
  */
659
651
  async getSubscriberById(
660
652
  { subscriberId, requestHeaders } = { requestHeaders: {} },
@@ -732,9 +724,8 @@ class Webhook {
732
724
  * @param {import("../PlatformAPIClient").Options} - Options
733
725
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigList>} - Success response
734
726
  * @name getSubscribersByCompany
735
- * @summary: Get Subscribers By CompanyId.
736
- * @description: Get Subscribers By Company ID.
737
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByCompany/).
727
+ * @summary: Get subscribers by company.
728
+ * @description: Retrieve subscribers associated with a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByCompany/).
738
729
  */
739
730
  async getSubscribersByCompany(
740
731
  { pageNo, pageSize, extensionId, requestHeaders } = { requestHeaders: {} },
@@ -821,8 +812,8 @@ class Webhook {
821
812
  * @param {import("../PlatformAPIClient").Options} - Options
822
813
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigList>} - Success response
823
814
  * @name getSubscribersByExtensionId
824
- * @summary: Get Subscribers By Extension ID
825
- * @description: Get Subscribers By ExtensionID - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByExtensionId/).
815
+ * @summary: Get subscribers by extension ID.
816
+ * @description: Retrieve subscribers associated with a specific extension. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/getSubscribersByExtensionId/).
826
817
  */
827
818
  async getSubscribersByExtensionId(
828
819
  { extensionId, pageNo, pageSize, requestHeaders } = { requestHeaders: {} },
@@ -908,9 +899,8 @@ class Webhook {
908
899
  * @param {import("../PlatformAPIClient").Options} - Options
909
900
  * @returns {Promise<string>} - Success response
910
901
  * @name manualRetryCancel
911
- * @summary: Cancel the active manual retry for a company's failed events.
912
- * @description: Cancels the active manual retry for a specific company's failed events. If a manual retry is currently in progress, it will be cancelled.
913
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryCancel/).
902
+ * @summary: Manual retry cancellation.
903
+ * @description: Cancel a manual retry operation for a failed event. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryCancel/).
914
904
  */
915
905
  async manualRetryCancel(
916
906
  { requestHeaders } = { requestHeaders: {} },
@@ -981,9 +971,8 @@ class Webhook {
981
971
  * @param {import("../PlatformAPIClient").Options} - Options
982
972
  * @returns {Promise<WebhookPlatformModel.RetrySuccessResponse>} - Success response
983
973
  * @name manualRetryOfFailedEvent
984
- * @summary: Initiate a manual retry for event processing.
985
- * @description: Initiates a manual retry for event processing for a specific company. This endpoint allows the user to specify the date range (start_date and end_date) within which the events should be retried.
986
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryOfFailedEvent/).
974
+ * @summary: Manual retry of failed event.
975
+ * @description: Trigger a manual retry for an event that failed to deliver. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/manualRetryOfFailedEvent/).
987
976
  */
988
977
  async manualRetryOfFailedEvent(
989
978
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1063,9 +1052,8 @@ class Webhook {
1063
1052
  * @param {import("../PlatformAPIClient").Options} - Options
1064
1053
  * @returns {Promise<WebhookPlatformModel.PingWebhookResponse>} - Success response
1065
1054
  * @name pingWebhook
1066
- * @summary: Ping and validate webhook url.
1067
- * @description: Ping and validate webhook url.
1068
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/pingWebhook/).
1055
+ * @summary: Ping webhook.
1056
+ * @description: Send a test ping to a webhook for verification. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/pingWebhook/).
1069
1057
  */
1070
1058
  async pingWebhook(
1071
1059
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1142,9 +1130,8 @@ class Webhook {
1142
1130
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigResponse>} -
1143
1131
  * Success response
1144
1132
  * @name registerSubscriberToEvent
1145
- * @summary: Register Subscriber.
1146
- * @description: Register Subscriber.
1147
- * - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/registerSubscriberToEvent/).
1133
+ * @summary: Register subscriber to event.
1134
+ * @description: Add a subscriber to receive events of a specific type. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/registerSubscriberToEvent/).
1148
1135
  */
1149
1136
  async registerSubscriberToEvent(
1150
1137
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1225,8 +1212,8 @@ class Webhook {
1225
1212
  * @returns {Promise<WebhookPlatformModel.SubscriberConfigResponse>} -
1226
1213
  * Success response
1227
1214
  * @name updateSubscriberConfig
1228
- * @summary: Update Subscriber
1229
- * @description: Update Subscriber - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/updateSubscriberConfig/).
1215
+ * @summary: Update subscriber config.
1216
+ * @description: Modify and update subscriber configuration settings. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/webhook/updateSubscriberConfig/).
1230
1217
  */
1231
1218
  async updateSubscriberConfig(
1232
1219
  { body, requestHeaders } = { requestHeaders: {} },