@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
@@ -203,6 +203,33 @@ export = WebhookPlatformModel;
203
203
  * @property {string} [type]
204
204
  * @property {string} [secret]
205
205
  */
206
+ /**
207
+ * @typedef SubscriberFailureResponse
208
+ * @property {string} [message]
209
+ * @property {string} [code]
210
+ * @property {string} [stack]
211
+ */
212
+ /**
213
+ * @typedef EventConfigs
214
+ * @property {number} [id]
215
+ * @property {string} [event_name]
216
+ * @property {string} [event_type]
217
+ * @property {string} [event_category]
218
+ * @property {Object} [event_schema]
219
+ * @property {string} [version]
220
+ * @property {string} [display_name]
221
+ * @property {string} [description]
222
+ * @property {string} [created_on]
223
+ * @property {string} [updated_on]
224
+ * @property {SubscriberEventMapping} [subscriber_event_mapping]
225
+ */
226
+ /**
227
+ * @typedef SubscriberEventMapping
228
+ * @property {number} [id]
229
+ * @property {number} [event_id]
230
+ * @property {number} [subscriber_id]
231
+ * @property {string} [created_on]
232
+ */
206
233
  /**
207
234
  * @typedef SubscriberResponse
208
235
  * @property {number} [id]
@@ -256,7 +283,7 @@ export = WebhookPlatformModel;
256
283
  declare class WebhookPlatformModel {
257
284
  }
258
285
  declare namespace WebhookPlatformModel {
259
- export { Error, Event, RetryEventRequest, Item, RetryCountResponse, RetrySuccessResponse, Err, RetryFailureResponse, RetryStatusResponse, EventProcessRequest, DownloadReportResponse, EventProcessReports, EventProcessReportObject, Page, PingWebhook, PingWebhookResponse, EventConfig, EventConfigResponse, ReportFiltersPayload, ReportFilterResponse, HistoryPayload, HistoryFilters, Url, CdnObject, UploadServiceObject, HistoryAssociation, HistoryItems, HistoryResponse, CancelResponse, Association, AuthMeta, SubscriberResponse, SubscriberConfig, SubscriberConfigResponse, SubscriberConfigList, SubscriberStatus };
286
+ export { Error, Event, RetryEventRequest, Item, RetryCountResponse, RetrySuccessResponse, Err, RetryFailureResponse, RetryStatusResponse, EventProcessRequest, DownloadReportResponse, EventProcessReports, EventProcessReportObject, Page, PingWebhook, PingWebhookResponse, EventConfig, EventConfigResponse, ReportFiltersPayload, ReportFilterResponse, HistoryPayload, HistoryFilters, Url, CdnObject, UploadServiceObject, HistoryAssociation, HistoryItems, HistoryResponse, CancelResponse, Association, AuthMeta, SubscriberFailureResponse, EventConfigs, SubscriberEventMapping, SubscriberResponse, SubscriberConfig, SubscriberConfigResponse, SubscriberConfigList, SubscriberStatus };
260
287
  }
261
288
  /** @returns {Error} */
262
289
  declare function Error(): Error;
@@ -610,6 +637,36 @@ type AuthMeta = {
610
637
  type?: string;
611
638
  secret?: string;
612
639
  };
640
+ /** @returns {SubscriberFailureResponse} */
641
+ declare function SubscriberFailureResponse(): SubscriberFailureResponse;
642
+ type SubscriberFailureResponse = {
643
+ message?: string;
644
+ code?: string;
645
+ stack?: string;
646
+ };
647
+ /** @returns {EventConfigs} */
648
+ declare function EventConfigs(): EventConfigs;
649
+ type EventConfigs = {
650
+ id?: number;
651
+ event_name?: string;
652
+ event_type?: string;
653
+ event_category?: string;
654
+ event_schema?: any;
655
+ version?: string;
656
+ display_name?: string;
657
+ description?: string;
658
+ created_on?: string;
659
+ updated_on?: string;
660
+ subscriber_event_mapping?: SubscriberEventMapping;
661
+ };
662
+ /** @returns {SubscriberEventMapping} */
663
+ declare function SubscriberEventMapping(): SubscriberEventMapping;
664
+ type SubscriberEventMapping = {
665
+ id?: number;
666
+ event_id?: number;
667
+ subscriber_id?: number;
668
+ created_on?: string;
669
+ };
613
670
  /** @returns {SubscriberResponse} */
614
671
  declare function SubscriberResponse(): SubscriberResponse;
615
672
  type SubscriberResponse = {
@@ -235,6 +235,36 @@ const Joi = require("joi");
235
235
  * @property {string} [secret]
236
236
  */
237
237
 
238
+ /**
239
+ * @typedef SubscriberFailureResponse
240
+ * @property {string} [message]
241
+ * @property {string} [code]
242
+ * @property {string} [stack]
243
+ */
244
+
245
+ /**
246
+ * @typedef EventConfigs
247
+ * @property {number} [id]
248
+ * @property {string} [event_name]
249
+ * @property {string} [event_type]
250
+ * @property {string} [event_category]
251
+ * @property {Object} [event_schema]
252
+ * @property {string} [version]
253
+ * @property {string} [display_name]
254
+ * @property {string} [description]
255
+ * @property {string} [created_on]
256
+ * @property {string} [updated_on]
257
+ * @property {SubscriberEventMapping} [subscriber_event_mapping]
258
+ */
259
+
260
+ /**
261
+ * @typedef SubscriberEventMapping
262
+ * @property {number} [id]
263
+ * @property {number} [event_id]
264
+ * @property {number} [subscriber_id]
265
+ * @property {string} [created_on]
266
+ */
267
+
238
268
  /**
239
269
  * @typedef SubscriberResponse
240
270
  * @property {number} [id]
@@ -582,6 +612,42 @@ class WebhookPlatformModel {
582
612
  });
583
613
  }
584
614
 
615
+ /** @returns {SubscriberFailureResponse} */
616
+ static SubscriberFailureResponse() {
617
+ return Joi.object({
618
+ message: Joi.string().allow(""),
619
+ code: Joi.string().allow(""),
620
+ stack: Joi.string().allow(""),
621
+ });
622
+ }
623
+
624
+ /** @returns {EventConfigs} */
625
+ static EventConfigs() {
626
+ return Joi.object({
627
+ id: Joi.number(),
628
+ event_name: Joi.string().allow(""),
629
+ event_type: Joi.string().allow(""),
630
+ event_category: Joi.string().allow(""),
631
+ event_schema: Joi.object().pattern(/\S/, Joi.any()),
632
+ version: Joi.string().allow(""),
633
+ display_name: Joi.string().allow(""),
634
+ description: Joi.string().allow(""),
635
+ created_on: Joi.string().allow(""),
636
+ updated_on: Joi.string().allow(""),
637
+ subscriber_event_mapping: WebhookPlatformModel.SubscriberEventMapping(),
638
+ });
639
+ }
640
+
641
+ /** @returns {SubscriberEventMapping} */
642
+ static SubscriberEventMapping() {
643
+ return Joi.object({
644
+ id: Joi.number(),
645
+ event_id: Joi.number(),
646
+ subscriber_id: Joi.number(),
647
+ created_on: Joi.string().allow(""),
648
+ });
649
+ }
650
+
585
651
  /** @returns {SubscriberResponse} */
586
652
  static SubscriberResponse() {
587
653
  return Joi.object({
@@ -24,8 +24,8 @@ declare class Configuration {
24
24
  * @param {import("../PublicAPIClient").Options} - Options
25
25
  * @returns {Promise<ConfigurationPublicModel.ApplicationResponse>} - Success response
26
26
  * @name searchApplication
27
- * @summary: Search Application
28
- * @description: Provide application name or domain url - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/configuration/searchApplication/).
27
+ * @summary: Search application.
28
+ * @description: Provide application name or domain url. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/configuration/searchApplication/).
29
29
  */
30
30
  searchApplication({ authorization, query, requestHeaders }?: ConfigurationPublicValidator.SearchApplicationParam, { responseHeaders }?: object): Promise<ConfigurationPublicModel.ApplicationResponse>;
31
31
  }
@@ -120,8 +120,8 @@ class Configuration {
120
120
  * @param {import("../PublicAPIClient").Options} - Options
121
121
  * @returns {Promise<ConfigurationPublicModel.ApplicationResponse>} - Success response
122
122
  * @name searchApplication
123
- * @summary: Search Application
124
- * @description: Provide application name or domain url - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/configuration/searchApplication/).
123
+ * @summary: Search application.
124
+ * @description: Provide application name or domain url. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/configuration/searchApplication/).
125
125
  */
126
126
  async searchApplication(
127
127
  { authorization, query, requestHeaders } = { requestHeaders: {} },
@@ -13,8 +13,8 @@ declare class Partner {
13
13
  * @param {import("../PublicAPIClient").Options} - Options
14
14
  * @returns {Promise<PartnerPublicModel.ExtensionUsingSlug>} - Success response
15
15
  * @name getPanelExtensionDetails
16
- * @summary: Get extension details
17
- * @description: Use this API to get extension details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/partner/getPanelExtensionDetails/).
16
+ * @summary: Get panel extension details.
17
+ * @description: Retrieve detailed information about panel extensions in the public server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/partner/getPanelExtensionDetails/).
18
18
  */
19
19
  getPanelExtensionDetails({ slug, requestHeaders }?: PartnerPublicValidator.GetPanelExtensionDetailsParam, { responseHeaders }?: object): Promise<PartnerPublicModel.ExtensionUsingSlug>;
20
20
  }
@@ -39,8 +39,8 @@ class Partner {
39
39
  * @param {import("../PublicAPIClient").Options} - Options
40
40
  * @returns {Promise<PartnerPublicModel.ExtensionUsingSlug>} - Success response
41
41
  * @name getPanelExtensionDetails
42
- * @summary: Get extension details
43
- * @description: Use this API to get extension details - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/partner/getPanelExtensionDetails/).
42
+ * @summary: Get panel extension details.
43
+ * @description: Retrieve detailed information about panel extensions in the public server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/partner/getPanelExtensionDetails/).
44
44
  */
45
45
  async getPanelExtensionDetails(
46
46
  { slug, requestHeaders } = { requestHeaders: {} },
@@ -17,8 +17,8 @@ declare class Webhook {
17
17
  * @param {import("../PublicAPIClient").Options} - Options
18
18
  * @returns {Promise<WebhookPublicModel.EventConfigResponse>} - Success response
19
19
  * @name fetchAllWebhookEvents
20
- * @summary: Get All Webhook Events
21
- * @description: Get All Webhook Events - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/fetchAllWebhookEvents/).
20
+ * @summary: Fetch all webhook events.
21
+ * @description: Retrieve a list of all webhook events in the public server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/fetchAllWebhookEvents/).
22
22
  */
23
23
  fetchAllWebhookEvents({ requestHeaders }?: any, { responseHeaders }?: object): Promise<WebhookPublicModel.EventConfigResponse>;
24
24
  /**
@@ -37,8 +37,8 @@ declare class Webhook {
37
37
  * @param {import("../PublicAPIClient").Options} - Options
38
38
  * @returns {Promise<WebhookPublicModel.EventConfigResponse>} - Success response
39
39
  * @name queryWebhookEventDetails
40
- * @summary: Send webhook event name, type, version, category in request body to get complete details of event from server
41
- * @description: Get Webhook Event Details for provided events - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/queryWebhookEventDetails/).
40
+ * @summary: Query webhook event details.
41
+ * @description: Query and obtain detailed information about webhook events in the public server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/queryWebhookEventDetails/).
42
42
  */
43
43
  queryWebhookEventDetails({ body, requestHeaders }?: WebhookPublicValidator.QueryWebhookEventDetailsParam, { responseHeaders }?: object): Promise<WebhookPublicModel.EventConfigResponse>;
44
44
  /**
@@ -46,8 +46,8 @@ class Webhook {
46
46
  * @param {import("../PublicAPIClient").Options} - Options
47
47
  * @returns {Promise<WebhookPublicModel.EventConfigResponse>} - Success response
48
48
  * @name fetchAllWebhookEvents
49
- * @summary: Get All Webhook Events
50
- * @description: Get All Webhook Events - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/fetchAllWebhookEvents/).
49
+ * @summary: Fetch all webhook events.
50
+ * @description: Retrieve a list of all webhook events in the public server setup. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/fetchAllWebhookEvents/).
51
51
  */
52
52
  async fetchAllWebhookEvents(
53
53
  { requestHeaders } = { requestHeaders: {} },
@@ -202,8 +202,8 @@ class Webhook {
202
202
  * @param {import("../PublicAPIClient").Options} - Options
203
203
  * @returns {Promise<WebhookPublicModel.EventConfigResponse>} - Success response
204
204
  * @name queryWebhookEventDetails
205
- * @summary: Send webhook event name, type, version, category in request body to get complete details of event from server
206
- * @description: Get Webhook Event Details for provided events - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/queryWebhookEventDetails/).
205
+ * @summary: Query webhook event details.
206
+ * @description: Query and obtain detailed information about webhook events in the public server configurations. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/public/webhook/queryWebhookEventDetails/).
207
207
  */
208
208
  async queryWebhookEventDetails(
209
209
  { body, requestHeaders } = { requestHeaders: {} },