@gofynd/fdk-client-javascript 3.0.0-beta.1 → 3.1.0-beta.1

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 (83) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +14 -14
  4. package/sdk/application/Cart/CartApplicationClient.js +14 -14
  5. package/sdk/application/Content/ContentApplicationClient.d.ts +10 -0
  6. package/sdk/application/Content/ContentApplicationClient.js +53 -0
  7. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
  8. package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
  9. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +34 -0
  10. package/sdk/application/Logistic/LogisticApplicationClient.js +136 -0
  11. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -12
  12. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -12
  13. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +46 -33
  14. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +41 -25
  15. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -4
  16. package/sdk/platform/Billing/BillingPlatformClient.d.ts +6 -397
  17. package/sdk/platform/Billing/BillingPlatformClient.js +77 -3215
  18. package/sdk/platform/Billing/BillingPlatformModel.d.ts +417 -3811
  19. package/sdk/platform/Billing/BillingPlatformModel.js +292 -2544
  20. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +12 -451
  21. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -483
  22. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -34
  23. package/sdk/platform/Cart/CartPlatformApplicationClient.js +34 -34
  24. package/sdk/platform/Cart/CartPlatformModel.d.ts +363 -29
  25. package/sdk/platform/Cart/CartPlatformModel.js +203 -31
  26. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +57 -57
  27. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +220 -200
  28. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +121 -91
  29. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +58 -46
  30. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +10 -51
  31. package/sdk/platform/Catalog/CatalogPlatformClient.js +79 -400
  32. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +22 -228
  33. package/sdk/platform/Catalog/CatalogPlatformModel.js +12 -163
  34. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +15 -61
  35. package/sdk/platform/Catalog/CatalogPlatformValidator.js +13 -65
  36. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +4 -8
  37. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +10 -14
  38. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +94 -30
  39. package/sdk/platform/Communication/CommunicationPlatformModel.js +110 -32
  40. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +33 -1
  41. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +62 -0
  42. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +11 -0
  43. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +5 -0
  44. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +12 -2
  45. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +5 -1
  46. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +6 -4
  47. package/sdk/platform/Content/ContentPlatformApplicationClient.js +12 -10
  48. package/sdk/platform/Content/ContentPlatformModel.d.ts +42 -12
  49. package/sdk/platform/Content/ContentPlatformModel.js +43 -13
  50. package/sdk/platform/Finance/FinancePlatformClient.d.ts +28 -28
  51. package/sdk/platform/Finance/FinancePlatformClient.js +28 -28
  52. package/sdk/platform/Order/OrderPlatformClient.d.ts +21 -21
  53. package/sdk/platform/Order/OrderPlatformClient.js +21 -21
  54. package/sdk/platform/Order/OrderPlatformModel.d.ts +1010 -80
  55. package/sdk/platform/Order/OrderPlatformModel.js +665 -70
  56. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +31 -4
  57. package/sdk/platform/Payment/PaymentPlatformModel.js +11 -4
  58. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +1 -1
  59. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -0
  60. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +14 -0
  61. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +6 -0
  62. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +24 -0
  63. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +119 -0
  64. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +194 -23
  65. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +116 -22
  66. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +23 -1
  67. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +16 -0
  68. package/sdk/platform/Share/SharePlatformModel.d.ts +5 -0
  69. package/sdk/platform/Share/SharePlatformModel.js +2 -0
  70. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +10 -12
  71. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +45 -49
  72. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +10 -10
  73. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +12 -12
  74. package/sdk/public/PublicClient.d.ts +0 -2
  75. package/sdk/public/PublicClient.js +0 -4
  76. package/sdk/public/index.d.ts +0 -1
  77. package/sdk/public/index.js +0 -2
  78. package/sdk/public/Billing/BillingPublicClient.d.ts +0 -56
  79. package/sdk/public/Billing/BillingPublicClient.js +0 -397
  80. package/sdk/public/Billing/BillingPublicModel.d.ts +0 -919
  81. package/sdk/public/Billing/BillingPublicModel.js +0 -560
  82. package/sdk/public/Billing/BillingPublicValidator.d.ts +0 -43
  83. package/sdk/public/Billing/BillingPublicValidator.js +0 -50
@@ -21,7 +21,7 @@ class Finance {
21
21
  * @returns {Promise<FinancePlatformModel.ChannelDisplayNameResponse>} -
22
22
  * Success response
23
23
  * @name channelDisplayName
24
- * @summary: Get channel display name.
24
+ * @summary: Get channel display name
25
25
  * @description: Retrieve the display name for a channel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/channelDisplayName/).
26
26
  */
27
27
  async channelDisplayName(
@@ -105,7 +105,7 @@ class Finance {
105
105
  * - Success response
106
106
  *
107
107
  * @name createSellerCreditNoteConfig
108
- * @summary: Create seller credit note config.
108
+ * @summary: Create seller credit note config
109
109
  * @description: Set up configuration for seller credit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/createSellerCreditNoteConfig/).
110
110
  */
111
111
  async createSellerCreditNoteConfig(
@@ -187,7 +187,7 @@ class Finance {
187
187
  * @returns {Promise<FinancePlatformModel.CreditNoteDetailsResponse>} -
188
188
  * Success response
189
189
  * @name creditNoteDetails
190
- * @summary: Get credit note details.
190
+ * @summary: Get credit note details
191
191
  * @description: Retrieve detailed information about a credit note. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/creditNoteDetails/).
192
192
  */
193
193
  async creditNoteDetails(
@@ -268,7 +268,7 @@ class Finance {
268
268
  * - Success response
269
269
  *
270
270
  * @name creditlineDataplatform
271
- * @summary: Access credit line data platform.
271
+ * @summary: Access credit line data platform
272
272
  * @description: Connect to the credit line data platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/creditlineDataplatform/).
273
273
  */
274
274
  async creditlineDataplatform(
@@ -349,7 +349,7 @@ class Finance {
349
349
  * @param {import("../PlatformAPIClient").Options} - Options
350
350
  * @returns {Promise<FinancePlatformModel.DeleteConfigResponse>} - Success response
351
351
  * @name deleteConfig
352
- * @summary: Deletes credit note config.
352
+ * @summary: Deletes credit note config
353
353
  * @description: Deletes credit note config. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/deleteConfig/).
354
354
  */
355
355
  async deleteConfig(
@@ -430,7 +430,7 @@ class Finance {
430
430
  * - Success response
431
431
  *
432
432
  * @name downloadCreditDebitNote
433
- * @summary: Download credit/debit note.
433
+ * @summary: Download credit/debit note
434
434
  * @description: Retrieve and save credit/debit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/downloadCreditDebitNote/).
435
435
  */
436
436
  async downloadCreditDebitNote(
@@ -511,7 +511,7 @@ class Finance {
511
511
  * @param {import("../PlatformAPIClient").Options} - Options
512
512
  * @returns {Promise<FinancePlatformModel.DownloadReportList>} - Success response
513
513
  * @name downloadReport
514
- * @summary: Download financial report.
514
+ * @summary: Download financial report
515
515
  * @description: Retrieve and save a financial report. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/downloadReport/).
516
516
  */
517
517
  async downloadReport(
@@ -592,7 +592,7 @@ class Finance {
592
592
  * - Success response
593
593
  *
594
594
  * @name downloadReportCustomerCn
595
- * @summary: Download customer credit note report.
595
+ * @summary: Download customer credit note report
596
596
  * @description: Retrieve and save a report for customer credit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/downloadReportCustomerCn/).
597
597
  */
598
598
  async downloadReportCustomerCn(
@@ -673,7 +673,7 @@ class Finance {
673
673
  * @param {import("../PlatformAPIClient").Options} - Options
674
674
  * @returns {Promise<FinancePlatformModel.GenerateReportJson>} - Success response
675
675
  * @name generateReport
676
- * @summary: Generate financial report.
676
+ * @summary: Generate financial report
677
677
  * @description: Create a financial report with relevant data. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/generateReport/).
678
678
  */
679
679
  async generateReport(
@@ -754,7 +754,7 @@ class Finance {
754
754
  * - Success response
755
755
  *
756
756
  * @name generateReportCustomerCn
757
- * @summary: Generate customer credit note report.
757
+ * @summary: Generate customer credit note report
758
758
  * @description: Create a report specifically for customer credit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/generateReportCustomerCn/).
759
759
  */
760
760
  async generateReportCustomerCn(
@@ -835,7 +835,7 @@ class Finance {
835
835
  * @param {import("../PlatformAPIClient").Options} - Options
836
836
  * @returns {Promise<FinancePlatformModel.GetAffiliateResponse>} - Success response
837
837
  * @name getAffiliate
838
- * @summary: Get affiliate details.
838
+ * @summary: Get affiliate details
839
839
  * @description: Retrieve information about an affiliate. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getAffiliate/).
840
840
  */
841
841
  async getAffiliate(
@@ -914,7 +914,7 @@ class Finance {
914
914
  * @param {import("../PlatformAPIClient").Options} - Options
915
915
  * @returns {Promise<FinancePlatformModel.GetCnConfigResponse>} - Success response
916
916
  * @name getCnConfig
917
- * @summary: Get credit note configuration.
917
+ * @summary: Get credit note configuration
918
918
  * @description: Retrieve configuration settings for credit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getCnConfig/).
919
919
  */
920
920
  async getCnConfig(
@@ -993,7 +993,7 @@ class Finance {
993
993
  * - Success response
994
994
  *
995
995
  * @name getCustomerCreditBalance
996
- * @summary: Get customer credit balance.
996
+ * @summary: Get customer credit balance
997
997
  * @description: Retrieve the credit balance of a customer. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getCustomerCreditBalance/).
998
998
  */
999
999
  async getCustomerCreditBalance(
@@ -1074,7 +1074,7 @@ class Finance {
1074
1074
  * @param {import("../PlatformAPIClient").Options} - Options
1075
1075
  * @returns {Promise<FinancePlatformModel.GetEngineResponse>} - Success response
1076
1076
  * @name getData
1077
- * @summary: Get financial data.
1077
+ * @summary: Get financial data
1078
1078
  * @description: Retrieve financial data for analysis. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getData/).
1079
1079
  */
1080
1080
  async getData(
@@ -1151,7 +1151,7 @@ class Finance {
1151
1151
  * @param {import("../PlatformAPIClient").Options} - Options
1152
1152
  * @returns {Promise<FinancePlatformModel.GetPdfUrlViewResponse>} - Success response
1153
1153
  * @name getPdfUrlView
1154
- * @summary: Get PDF URL view.
1154
+ * @summary: Get PDF URL view
1155
1155
  * @description: Retrieve a URL to view a PDF document. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getPdfUrlView/).
1156
1156
  */
1157
1157
  async getPdfUrlView(
@@ -1230,7 +1230,7 @@ class Finance {
1230
1230
  * @param {import("../PlatformAPIClient").Options} - Options
1231
1231
  * @returns {Promise<FinancePlatformModel.GetReasonResponse>} - Success response
1232
1232
  * @name getReason
1233
- * @summary: Get transaction reason.
1233
+ * @summary: Get transaction reason
1234
1234
  * @description: Retrieve the reason behind a transaction. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getReason/).
1235
1235
  */
1236
1236
  async getReason(
@@ -1307,7 +1307,7 @@ class Finance {
1307
1307
  * @param {import("../PlatformAPIClient").Options} - Options
1308
1308
  * @returns {Promise<FinancePlatformModel.GetReportListResponse>} - Success response
1309
1309
  * @name getReportList
1310
- * @summary: Get report list.
1310
+ * @summary: Get report list
1311
1311
  * @description: Retrieve a list of available financial reports. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getReportList/).
1312
1312
  */
1313
1313
  async getReportList(
@@ -1387,7 +1387,7 @@ class Finance {
1387
1387
  * @returns {Promise<FinancePlatformModel.GetReportingFiltersResponse>} -
1388
1388
  * Success response
1389
1389
  * @name getReportingFilters
1390
- * @summary: Get reporting filters.
1390
+ * @summary: Get reporting filters
1391
1391
  * @description: Retrieve available filters for financial reporting. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/getReportingFilters/).
1392
1392
  */
1393
1393
  async getReportingFilters(
@@ -1471,7 +1471,7 @@ class Finance {
1471
1471
  * @returns {Promise<FinancePlatformModel.InvoiceActivityLogsResponse>} -
1472
1472
  * Success response
1473
1473
  * @name invoiceActivityLogs
1474
- * @summary: Display activity log details of an invoice.
1474
+ * @summary: Display activity log details of an invoice
1475
1475
  * @description: Display activity log details of invoice. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/invoiceActivityLogs/).
1476
1476
  */
1477
1477
  async invoiceActivityLogs(
@@ -1550,8 +1550,8 @@ class Finance {
1550
1550
  * @param {import("../PlatformAPIClient").Options} - Options
1551
1551
  * @returns {Promise<FinancePlatformModel.InvoiceListingResponse>} - Success response
1552
1552
  * @name invoiceListing
1553
- * @summary: Gives list of invoices.
1554
- * @description: Gives list of invoices. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/invoiceListing/).
1553
+ * @summary: List invoices
1554
+ * @description: Provides list of invoices generated for a company. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/invoiceListing/).
1555
1555
  */
1556
1556
  async invoiceListing(
1557
1557
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1629,7 +1629,7 @@ class Finance {
1629
1629
  * @param {import("../PlatformAPIClient").Options} - Options
1630
1630
  * @returns {Promise<FinancePlatformModel.InvoicePdfResponse>} - Success response
1631
1631
  * @name invoicePDF
1632
- * @summary: Get invoice PDF.
1632
+ * @summary: Get invoice PDF
1633
1633
  * @description: Retrieve the PDF version of an invoice. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/invoicePDF/).
1634
1634
  */
1635
1635
  async invoicePDF(
@@ -1707,7 +1707,7 @@ class Finance {
1707
1707
  * @returns {Promise<FinancePlatformModel.InvoicePaymentDetailsResponse>} -
1708
1708
  * Success response
1709
1709
  * @name invoicePaymentDetails
1710
- * @summary: Display payment details of an invoice.
1710
+ * @summary: Display payment details of an invoice
1711
1711
  * @description: Display payment details of invoice. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/invoicePaymentDetails/).
1712
1712
  */
1713
1713
  async invoicePaymentDetails(
@@ -1866,7 +1866,7 @@ class Finance {
1866
1866
  * @param {import("../PlatformAPIClient").Options} - Options
1867
1867
  * @returns {Promise<FinancePlatformModel.InvoiceTypeResponse>} - Success response
1868
1868
  * @name invoiceType
1869
- * @summary: Get invoice types.
1869
+ * @summary: Get invoice types
1870
1870
  * @description: Retrieve a list of available invoice types. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/invoiceType/).
1871
1871
  */
1872
1872
  async invoiceType(
@@ -1944,7 +1944,7 @@ class Finance {
1944
1944
  * @returns {Promise<FinancePlatformModel.IsCnRefundMethodResponse>} -
1945
1945
  * Success response
1946
1946
  * @name isCnRefundMethod
1947
- * @summary: Check CN refund method.
1947
+ * @summary: Check refund method
1948
1948
  * @description: Verify the refund method for credit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/isCnRefundMethod/).
1949
1949
  */
1950
1950
  async isCnRefundMethod(
@@ -2024,7 +2024,7 @@ class Finance {
2024
2024
  * @returns {Promise<FinancePlatformModel.IsCreditlinePlatformResponse>} -
2025
2025
  * Success response
2026
2026
  * @name isCreditlinePlatform
2027
- * @summary: Check credit line platform status.
2027
+ * @summary: Check credit line platform status
2028
2028
  * @description: Determine if the credit line platform is operational. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/isCreditlinePlatform/).
2029
2029
  */
2030
2030
  async isCreditlinePlatform(
@@ -2176,7 +2176,7 @@ class Finance {
2176
2176
  * @param {import("../PlatformAPIClient").Options} - Options
2177
2177
  * @returns {Promise<FinancePlatformModel.PaymentProcessResponse>} - Success response
2178
2178
  * @name paymentProcess
2179
- * @summary: Process payments.
2179
+ * @summary: Process payments
2180
2180
  * @description: Initiate and manage payment processes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/paymentProcess/).
2181
2181
  */
2182
2182
  async paymentProcess(
@@ -2256,7 +2256,7 @@ class Finance {
2256
2256
  * @returns {Promise<FinancePlatformModel.UnlockCreditNoteResponse>} -
2257
2257
  * Success response
2258
2258
  * @name unlockCreditNote
2259
- * @summary: Unlocks credit notes.
2259
+ * @summary: Unlock credit notes
2260
2260
  * @description: Used to unlock all request credit notes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/finance/unlockCreditNote/).
2261
2261
  */
2262
2262
  async unlockCreditNote(
@@ -93,7 +93,7 @@ declare class Order {
93
93
  * @returns {Promise<OrderPlatformModel.TemplateDownloadResponse>} - Success response
94
94
  * @name downloadBulkActionTemplate
95
95
  * @summary: Download bulk action template.
96
- * @description: Download bulk actions seller templates. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadBulkActionTemplate/).
96
+ * @description: Download bulk seller templates which can be used to perform operations in bulk - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadBulkActionTemplate/).
97
97
  */
98
98
  downloadBulkActionTemplate({ templateSlug, requestHeaders }?: OrderPlatformValidator.DownloadBulkActionTemplateParam, { responseHeaders }?: object): Promise<OrderPlatformModel.TemplateDownloadResponse>;
99
99
  /**
@@ -104,7 +104,7 @@ declare class Order {
104
104
  * Success response
105
105
  * @name downloadLanesReport
106
106
  * @summary: Downloads lanes shipment/orders.
107
- * @description: Downloads lanes shipment/orders. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadLanesReport/).
107
+ * @description: Downloads shipments/orders present in the provided lane - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadLanesReport/).
108
108
  */
109
109
  downloadLanesReport({ body, requestHeaders }?: OrderPlatformValidator.DownloadLanesReportParam, { responseHeaders }?: object): Promise<OrderPlatformModel.BulkReportsDownloadResponse>;
110
110
  /**
@@ -136,7 +136,7 @@ declare class Order {
136
136
  *
137
137
  * @name fetchCreditBalanceDetail
138
138
  * @summary: Fetch credit balance detail.
139
- * @description: Retrieve details about credit balance. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchCreditBalanceDetail/).
139
+ * @description: Retrieve details about credit balance on the basis of customer mobile number - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchCreditBalanceDetail/).
140
140
  */
141
141
  fetchCreditBalanceDetail({ body, requestHeaders }?: OrderPlatformValidator.FetchCreditBalanceDetailParam, { responseHeaders }?: object): Promise<OrderPlatformModel.FetchCreditBalanceResponsePayload>;
142
142
  /**
@@ -147,7 +147,7 @@ declare class Order {
147
147
  * Success response
148
148
  * @name fetchRefundModeConfig
149
149
  * @summary: Fetch refund mode config.
150
- * @description: Retrieve configuration for refund modes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchRefundModeConfig/).
150
+ * @description: Get list of refund modes to trigger refunds - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchRefundModeConfig/).
151
151
  */
152
152
  fetchRefundModeConfig({ body, requestHeaders }?: OrderPlatformValidator.FetchRefundModeConfigParam, { responseHeaders }?: object): Promise<OrderPlatformModel.RefundModeConfigResponsePayload>;
153
153
  /**
@@ -158,7 +158,7 @@ declare class Order {
158
158
  * Success response
159
159
  * @name generatePOSReceiptByOrderId
160
160
  * @summary: Generate POS receipt by order ID.
161
- * @description: Generate POS recipt by order id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/generatePOSReceiptByOrderId/).
161
+ * @description: Create a point-of-sale (POS) receipt for a specific order by order Id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/generatePOSReceiptByOrderId/).
162
162
  */
163
163
  generatePOSReceiptByOrderId({ orderId, shipmentId, documentType, requestHeaders }?: OrderPlatformValidator.GeneratePOSReceiptByOrderIdParam, { responseHeaders }?: object): Promise<OrderPlatformModel.GeneratePosOrderReceiptResponse>;
164
164
  /**
@@ -189,7 +189,7 @@ declare class Order {
189
189
  * @returns {Promise<OrderPlatformModel.AnnouncementsResponse>} - Success response
190
190
  * @name getAnnouncements
191
191
  * @summary: Get announcements.
192
- * @description: Retrieve announcements related to orders or shipments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getAnnouncements/).
192
+ * @description: Retrieve announcements related to orders fulfilment configured by platform or company admin - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getAnnouncements/).
193
193
  */
194
194
  getAnnouncements({ date, requestHeaders }?: OrderPlatformValidator.GetAnnouncementsParam, { responseHeaders }?: object): Promise<OrderPlatformModel.AnnouncementsResponse>;
195
195
  /**
@@ -221,7 +221,7 @@ declare class Order {
221
221
  * Success response
222
222
  * @name getBulkActionTemplate
223
223
  * @summary: Get bulk action template.
224
- * @description: Get Bulk Action seller templates. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkActionTemplate/).
224
+ * @description: Get list of templates so that users can download the required template - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkActionTemplate/).
225
225
  */
226
226
  getBulkActionTemplate({ requestHeaders }?: any, { responseHeaders }?: object): Promise<OrderPlatformModel.BulkActionTemplateResponse>;
227
227
  /**
@@ -231,7 +231,7 @@ declare class Order {
231
231
  * @returns {Promise<OrderPlatformModel.TemplateDownloadResponse>} - Success response
232
232
  * @name getBulkShipmentExcelFile
233
233
  * @summary: Get bulk shipment Excel file.
234
- * @description: Generate Bulk Shipment Excel Report. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkShipmentExcelFile/).
234
+ * @description: Generates the report which can be filled and uploaded to perform the bulk operation based on the filters provided - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkShipmentExcelFile/).
235
235
  */
236
236
  getBulkShipmentExcelFile({ salesChannels, dpIds, startDate, endDate, stores, tags, bagStatus, paymentMethods, fileType, timeToDispatch, pageNo, pageSize, requestHeaders, }?: OrderPlatformValidator.GetBulkShipmentExcelFileParam, { responseHeaders }?: object): Promise<OrderPlatformModel.TemplateDownloadResponse>;
237
237
  /**
@@ -250,8 +250,8 @@ declare class Order {
250
250
  * @param {import("../PlatformAPIClient").Options} - Options
251
251
  * @returns {Promise<OrderPlatformModel.JobFailedResponse>} - Success response
252
252
  * @name getFileByStatus
253
- * @summary: Get the file URL consisting Records of the provided status.
254
- * @description: Get the file URL consisting Records of the provided status. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getFileByStatus/).
253
+ * @summary: Get the file download URL used for performing bulk operation
254
+ * @description: Get the file download URL used for performing bulk operation - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getFileByStatus/).
255
255
  */
256
256
  getFileByStatus({ batchId, status, fileType, reportType, requestHeaders }?: OrderPlatformValidator.GetFileByStatusParam, { responseHeaders }?: object): Promise<OrderPlatformModel.JobFailedResponse>;
257
257
  /**
@@ -404,7 +404,7 @@ declare class Order {
404
404
  * @param {import("../PlatformAPIClient").Options} - Options
405
405
  * @returns {Promise<OrderPlatformModel.GetRefundStates>} - Success response
406
406
  * @name getRefundEnableStateList
407
- * @summary: Refund State Configuration
407
+ * @summary: Refund State Configurationb
408
408
  * @description: refund configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getRefundEnableStateList/).
409
409
  */
410
410
  getRefundEnableStateList({ requestHeaders }?: any, { responseHeaders }?: object): Promise<OrderPlatformModel.GetRefundStates>;
@@ -438,7 +438,7 @@ declare class Order {
438
438
  * @returns {Promise<OrderPlatformModel.GetActionsResponse>} - Success response
439
439
  * @name getRoleBasedActions
440
440
  * @summary: Get role-based actions.
441
- * @description: Retrieve role based actions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getRoleBasedActions/).
441
+ * @description: Retrieve permissible actions based on user roles such as company_admin, company_operation, customer_care, and read_only. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getRoleBasedActions/).
442
442
  */
443
443
  getRoleBasedActions({ requestHeaders }?: any, { responseHeaders }?: object): Promise<OrderPlatformModel.GetActionsResponse>;
444
444
  /**
@@ -588,7 +588,7 @@ declare class Order {
588
588
  * @returns {Promise<OrderPlatformModel.BagStateTransitionMap>} - Success response
589
589
  * @name getStateTransitionMap
590
590
  * @summary: Get state transition map.
591
- * @description: Retrieve a map of state transitions for orders. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getStateTransitionMap/).
591
+ * @description: Retrieve a map of state transitions for orders - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getStateTransitionMap/).
592
592
  */
593
593
  getStateTransitionMap({ requestHeaders }?: any, { responseHeaders }?: object): Promise<OrderPlatformModel.BagStateTransitionMap>;
594
594
  /**
@@ -597,8 +597,8 @@ declare class Order {
597
597
  * @param {import("../PlatformAPIClient").Options} - Options
598
598
  * @returns {Promise<OrderPlatformModel.TemplateDownloadResponse>} - Success response
599
599
  * @name getTemplate
600
- * @summary: Get the Excel file URL for the Template.
601
- * @description: Get the Excel file URL for the Template. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getTemplate/).
600
+ * @summary: Get the Excel or CSV file URL for the Template.
601
+ * @description: Get the Excel or CSV file URL for the Template. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getTemplate/).
602
602
  */
603
603
  getTemplate({ templateName, requestHeaders }?: OrderPlatformValidator.GetTemplateParam, { responseHeaders }?: object): Promise<OrderPlatformModel.TemplateDownloadResponse>;
604
604
  /**
@@ -618,7 +618,7 @@ declare class Order {
618
618
  * @returns {Promise<OrderPlatformModel.FiltersResponse>} - Success response
619
619
  * @name getfilters
620
620
  * @summary: Get filters.
621
- * @description: Retrieve listing filters. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getfilters/).
621
+ * @description: Get supported filters for various listing operations - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getfilters/).
622
622
  */
623
623
  getfilters({ view, groupEntity, requestHeaders }?: OrderPlatformValidator.GetfiltersParam, { responseHeaders }?: object): Promise<OrderPlatformModel.FiltersResponse>;
624
624
  /**
@@ -628,8 +628,8 @@ declare class Order {
628
628
  * @returns {Promise<OrderPlatformModel.InvalidateShipmentCacheResponse>} -
629
629
  * Success response
630
630
  * @name invalidateShipmentCache
631
- * @summary: Invalidate shipment cache.
632
- * @description: Invalidate shipment Cache. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/invalidateShipmentCache/).
631
+ * @summary: Invalidate shipment cache
632
+ * @description: Clear the existing shipment cache data stored in Redis and serialize the updated data for subsequent use. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/invalidateShipmentCache/).
633
633
  */
634
634
  invalidateShipmentCache({ body, requestHeaders }?: OrderPlatformValidator.InvalidateShipmentCacheParam, { responseHeaders }?: object): Promise<OrderPlatformModel.InvalidateShipmentCacheResponse>;
635
635
  /**
@@ -648,8 +648,8 @@ declare class Order {
648
648
  * @param {import("../PlatformAPIClient").Options} - Options
649
649
  * @returns {Promise<OrderPlatformModel.ResponseDetail>} - Success response
650
650
  * @name orderUpdate
651
- * @summary: Order update.
652
- * @description: Modify the details and status of an order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/orderUpdate/).
651
+ * @summary: Update an order
652
+ * @description: Used to update an order's meta information. These meta information can be accessed via order or shipment details API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/orderUpdate/).
653
653
  */
654
654
  orderUpdate({ body, requestHeaders }?: OrderPlatformValidator.OrderUpdateParam, { responseHeaders }?: object): Promise<OrderPlatformModel.ResponseDetail>;
655
655
  /**
@@ -703,7 +703,7 @@ declare class Order {
703
703
  * @returns {Promise<OrderPlatformModel.SendSmsResponse>} - Success response
704
704
  * @name sendSmsNinja
705
705
  * @summary: Send SMS via Ninja.
706
- * @description: Send SMS Ninja Panel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/sendSmsNinja/).
706
+ * @description: Send SMS to customer based on the template that is selected - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/sendSmsNinja/).
707
707
  */
708
708
  sendSmsNinja({ body, requestHeaders }?: OrderPlatformValidator.SendSmsNinjaParam, { responseHeaders }?: object): Promise<OrderPlatformModel.SendSmsResponse>;
709
709
  /**
@@ -695,7 +695,7 @@ class Order {
695
695
  * @returns {Promise<OrderPlatformModel.TemplateDownloadResponse>} - Success response
696
696
  * @name downloadBulkActionTemplate
697
697
  * @summary: Download bulk action template.
698
- * @description: Download bulk actions seller templates. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadBulkActionTemplate/).
698
+ * @description: Download bulk seller templates which can be used to perform operations in bulk - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadBulkActionTemplate/).
699
699
  */
700
700
  async downloadBulkActionTemplate(
701
701
  { templateSlug, requestHeaders } = { requestHeaders: {} },
@@ -778,7 +778,7 @@ class Order {
778
778
  * Success response
779
779
  * @name downloadLanesReport
780
780
  * @summary: Downloads lanes shipment/orders.
781
- * @description: Downloads lanes shipment/orders. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadLanesReport/).
781
+ * @description: Downloads shipments/orders present in the provided lane - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/downloadLanesReport/).
782
782
  */
783
783
  async downloadLanesReport(
784
784
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1015,7 +1015,7 @@ class Order {
1015
1015
  *
1016
1016
  * @name fetchCreditBalanceDetail
1017
1017
  * @summary: Fetch credit balance detail.
1018
- * @description: Retrieve details about credit balance. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchCreditBalanceDetail/).
1018
+ * @description: Retrieve details about credit balance on the basis of customer mobile number - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchCreditBalanceDetail/).
1019
1019
  */
1020
1020
  async fetchCreditBalanceDetail(
1021
1021
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1097,7 +1097,7 @@ class Order {
1097
1097
  * Success response
1098
1098
  * @name fetchRefundModeConfig
1099
1099
  * @summary: Fetch refund mode config.
1100
- * @description: Retrieve configuration for refund modes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchRefundModeConfig/).
1100
+ * @description: Get list of refund modes to trigger refunds - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/fetchRefundModeConfig/).
1101
1101
  */
1102
1102
  async fetchRefundModeConfig(
1103
1103
  { body, requestHeaders } = { requestHeaders: {} },
@@ -1177,7 +1177,7 @@ class Order {
1177
1177
  * Success response
1178
1178
  * @name generatePOSReceiptByOrderId
1179
1179
  * @summary: Generate POS receipt by order ID.
1180
- * @description: Generate POS recipt by order id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/generatePOSReceiptByOrderId/).
1180
+ * @description: Create a point-of-sale (POS) receipt for a specific order by order Id. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/generatePOSReceiptByOrderId/).
1181
1181
  */
1182
1182
  async generatePOSReceiptByOrderId(
1183
1183
  { orderId, shipmentId, documentType, requestHeaders } = {
@@ -1429,7 +1429,7 @@ class Order {
1429
1429
  * @returns {Promise<OrderPlatformModel.AnnouncementsResponse>} - Success response
1430
1430
  * @name getAnnouncements
1431
1431
  * @summary: Get announcements.
1432
- * @description: Retrieve announcements related to orders or shipments. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getAnnouncements/).
1432
+ * @description: Retrieve announcements related to orders fulfilment configured by platform or company admin - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getAnnouncements/).
1433
1433
  */
1434
1434
  async getAnnouncements(
1435
1435
  { date, requestHeaders } = { requestHeaders: {} },
@@ -1708,7 +1708,7 @@ class Order {
1708
1708
  * Success response
1709
1709
  * @name getBulkActionTemplate
1710
1710
  * @summary: Get bulk action template.
1711
- * @description: Get Bulk Action seller templates. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkActionTemplate/).
1711
+ * @description: Get list of templates so that users can download the required template - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkActionTemplate/).
1712
1712
  */
1713
1713
  async getBulkActionTemplate(
1714
1714
  { requestHeaders } = { requestHeaders: {} },
@@ -1783,7 +1783,7 @@ class Order {
1783
1783
  * @returns {Promise<OrderPlatformModel.TemplateDownloadResponse>} - Success response
1784
1784
  * @name getBulkShipmentExcelFile
1785
1785
  * @summary: Get bulk shipment Excel file.
1786
- * @description: Generate Bulk Shipment Excel Report. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkShipmentExcelFile/).
1786
+ * @description: Generates the report which can be filled and uploaded to perform the bulk operation based on the filters provided - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getBulkShipmentExcelFile/).
1787
1787
  */
1788
1788
  async getBulkShipmentExcelFile(
1789
1789
  {
@@ -2002,8 +2002,8 @@ class Order {
2002
2002
  * @param {import("../PlatformAPIClient").Options} - Options
2003
2003
  * @returns {Promise<OrderPlatformModel.JobFailedResponse>} - Success response
2004
2004
  * @name getFileByStatus
2005
- * @summary: Get the file URL consisting Records of the provided status.
2006
- * @description: Get the file URL consisting Records of the provided status. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getFileByStatus/).
2005
+ * @summary: Get the file download URL used for performing bulk operation
2006
+ * @description: Get the file download URL used for performing bulk operation - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getFileByStatus/).
2007
2007
  */
2008
2008
  async getFileByStatus(
2009
2009
  { batchId, status, fileType, reportType, requestHeaders } = {
@@ -2889,7 +2889,7 @@ class Order {
2889
2889
  * @param {import("../PlatformAPIClient").Options} - Options
2890
2890
  * @returns {Promise<OrderPlatformModel.GetRefundStates>} - Success response
2891
2891
  * @name getRefundEnableStateList
2892
- * @summary: Refund State Configuration
2892
+ * @summary: Refund State Configurationb
2893
2893
  * @description: refund configuration. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getRefundEnableStateList/).
2894
2894
  */
2895
2895
  async getRefundEnableStateList(
@@ -3156,7 +3156,7 @@ class Order {
3156
3156
  * @returns {Promise<OrderPlatformModel.GetActionsResponse>} - Success response
3157
3157
  * @name getRoleBasedActions
3158
3158
  * @summary: Get role-based actions.
3159
- * @description: Retrieve role based actions. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getRoleBasedActions/).
3159
+ * @description: Retrieve permissible actions based on user roles such as company_admin, company_operation, customer_care, and read_only. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getRoleBasedActions/).
3160
3160
  */
3161
3161
  async getRoleBasedActions(
3162
3162
  { requestHeaders } = { requestHeaders: {} },
@@ -3869,7 +3869,7 @@ class Order {
3869
3869
  * @returns {Promise<OrderPlatformModel.BagStateTransitionMap>} - Success response
3870
3870
  * @name getStateTransitionMap
3871
3871
  * @summary: Get state transition map.
3872
- * @description: Retrieve a map of state transitions for orders. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getStateTransitionMap/).
3872
+ * @description: Retrieve a map of state transitions for orders - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getStateTransitionMap/).
3873
3873
  */
3874
3874
  async getStateTransitionMap(
3875
3875
  { requestHeaders } = { requestHeaders: {} },
@@ -3943,8 +3943,8 @@ class Order {
3943
3943
  * @param {import("../PlatformAPIClient").Options} - Options
3944
3944
  * @returns {Promise<OrderPlatformModel.TemplateDownloadResponse>} - Success response
3945
3945
  * @name getTemplate
3946
- * @summary: Get the Excel file URL for the Template.
3947
- * @description: Get the Excel file URL for the Template. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getTemplate/).
3946
+ * @summary: Get the Excel or CSV file URL for the Template.
3947
+ * @description: Get the Excel or CSV file URL for the Template. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getTemplate/).
3948
3948
  */
3949
3949
  async getTemplate(
3950
3950
  { templateName, requestHeaders } = { requestHeaders: {} },
@@ -4099,7 +4099,7 @@ class Order {
4099
4099
  * @returns {Promise<OrderPlatformModel.FiltersResponse>} - Success response
4100
4100
  * @name getfilters
4101
4101
  * @summary: Get filters.
4102
- * @description: Retrieve listing filters. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getfilters/).
4102
+ * @description: Get supported filters for various listing operations - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/getfilters/).
4103
4103
  */
4104
4104
  async getfilters(
4105
4105
  { view, groupEntity, requestHeaders } = { requestHeaders: {} },
@@ -4180,8 +4180,8 @@ class Order {
4180
4180
  * @returns {Promise<OrderPlatformModel.InvalidateShipmentCacheResponse>} -
4181
4181
  * Success response
4182
4182
  * @name invalidateShipmentCache
4183
- * @summary: Invalidate shipment cache.
4184
- * @description: Invalidate shipment Cache. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/invalidateShipmentCache/).
4183
+ * @summary: Invalidate shipment cache
4184
+ * @description: Clear the existing shipment cache data stored in Redis and serialize the updated data for subsequent use. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/invalidateShipmentCache/).
4185
4185
  */
4186
4186
  async invalidateShipmentCache(
4187
4187
  { body, requestHeaders } = { requestHeaders: {} },
@@ -4336,8 +4336,8 @@ class Order {
4336
4336
  * @param {import("../PlatformAPIClient").Options} - Options
4337
4337
  * @returns {Promise<OrderPlatformModel.ResponseDetail>} - Success response
4338
4338
  * @name orderUpdate
4339
- * @summary: Order update.
4340
- * @description: Modify the details and status of an order. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/orderUpdate/).
4339
+ * @summary: Update an order
4340
+ * @description: Used to update an order's meta information. These meta information can be accessed via order or shipment details API. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/orderUpdate/).
4341
4341
  */
4342
4342
  async orderUpdate(
4343
4343
  { body, requestHeaders } = { requestHeaders: {} },
@@ -4742,7 +4742,7 @@ class Order {
4742
4742
  * @returns {Promise<OrderPlatformModel.SendSmsResponse>} - Success response
4743
4743
  * @name sendSmsNinja
4744
4744
  * @summary: Send SMS via Ninja.
4745
- * @description: Send SMS Ninja Panel. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/sendSmsNinja/).
4745
+ * @description: Send SMS to customer based on the template that is selected - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/order/sendSmsNinja/).
4746
4746
  */
4747
4747
  async sendSmsNinja(
4748
4748
  { body, requestHeaders } = { requestHeaders: {} },