@gofynd/fdk-client-javascript 1.4.6 → 1.4.8-beta.2

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 +2 -2
  3. package/sdk/application/ApplicationClient.d.ts +2 -0
  4. package/sdk/application/ApplicationClient.js +2 -0
  5. package/sdk/application/Cart/CartApplicationClient.d.ts +16 -3
  6. package/sdk/application/Cart/CartApplicationClient.js +118 -13
  7. package/sdk/application/Cart/CartApplicationModel.d.ts +121 -45
  8. package/sdk/application/Cart/CartApplicationModel.js +98 -26
  9. package/sdk/application/Cart/CartApplicationValidator.d.ts +45 -1
  10. package/sdk/application/Cart/CartApplicationValidator.js +26 -0
  11. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +10 -2
  12. package/sdk/application/Catalog/CatalogApplicationModel.js +10 -2
  13. package/sdk/application/Content/ContentApplicationClient.d.ts +1 -1
  14. package/sdk/application/Content/ContentApplicationClient.js +5 -3
  15. package/sdk/application/Content/ContentApplicationModel.d.ts +7 -18
  16. package/sdk/application/Content/ContentApplicationModel.js +6 -20
  17. package/sdk/application/Content/ContentApplicationValidator.d.ts +10 -0
  18. package/sdk/application/Content/ContentApplicationValidator.js +4 -0
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +0 -27
  20. package/sdk/application/Lead/LeadApplicationClient.js +0 -167
  21. package/sdk/application/Lead/LeadApplicationModel.d.ts +1 -146
  22. package/sdk/application/Lead/LeadApplicationModel.js +0 -126
  23. package/sdk/application/Lead/LeadApplicationValidator.d.ts +1 -25
  24. package/sdk/application/Lead/LeadApplicationValidator.js +0 -24
  25. package/sdk/application/Logistic/LogisticApplicationClient.js +1 -1
  26. package/sdk/application/Logistic/LogisticApplicationModel.d.ts +2 -0
  27. package/sdk/application/Logistic/LogisticApplicationModel.js +2 -0
  28. package/sdk/application/Order/OrderApplicationModel.d.ts +72 -9
  29. package/sdk/application/Order/OrderApplicationModel.js +45 -7
  30. package/sdk/application/Payment/PaymentApplicationModel.d.ts +27 -20
  31. package/sdk/application/Payment/PaymentApplicationModel.js +23 -20
  32. package/sdk/application/Theme/ThemeApplicationModel.d.ts +2 -0
  33. package/sdk/application/Theme/ThemeApplicationModel.js +2 -0
  34. package/sdk/application/Webhook/WebhookApplicationClient.d.ts +22 -0
  35. package/sdk/application/Webhook/WebhookApplicationClient.js +115 -0
  36. package/sdk/application/Webhook/WebhookApplicationModel.d.ts +37 -0
  37. package/sdk/application/Webhook/WebhookApplicationModel.js +46 -0
  38. package/sdk/application/Webhook/WebhookApplicationValidator.d.ts +16 -0
  39. package/sdk/application/Webhook/WebhookApplicationValidator.js +19 -0
  40. package/sdk/application/index.d.ts +1 -0
  41. package/sdk/application/index.js +2 -0
  42. package/sdk/partner/Lead/LeadPartnerClient.d.ts +0 -23
  43. package/sdk/partner/Lead/LeadPartnerClient.js +0 -157
  44. package/sdk/partner/Lead/LeadPartnerModel.d.ts +12 -581
  45. package/sdk/partner/Lead/LeadPartnerModel.js +14 -403
  46. package/sdk/partner/Lead/LeadPartnerValidator.d.ts +0 -2
  47. package/sdk/partner/Lead/LeadPartnerValidator.js +0 -12
  48. package/sdk/partner/Logistics/LogisticsPartnerClient.js +1 -1
  49. package/sdk/partner/Logistics/LogisticsPartnerModel.js +4 -4
  50. package/sdk/partner/Theme/ThemePartnerClient.d.ts +22 -0
  51. package/sdk/partner/Theme/ThemePartnerClient.js +162 -0
  52. package/sdk/partner/Theme/ThemePartnerModel.d.ts +119 -1
  53. package/sdk/partner/Theme/ThemePartnerModel.js +142 -0
  54. package/sdk/partner/Theme/ThemePartnerValidator.d.ts +2 -0
  55. package/sdk/partner/Theme/ThemePartnerValidator.js +14 -0
  56. package/sdk/partner/Webhook/WebhookPartnerClient.d.ts +2 -2
  57. package/sdk/partner/Webhook/WebhookPartnerClient.js +2 -2
  58. package/sdk/partner/Webhook/WebhookPartnerModel.d.ts +23 -19
  59. package/sdk/partner/Webhook/WebhookPartnerModel.js +19 -22
  60. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.d.ts +43 -0
  61. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +257 -0
  62. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.d.ts +39 -0
  63. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +45 -0
  64. package/sdk/platform/Analytics/AnalyticsPlatformModel.d.ts +60 -0
  65. package/sdk/platform/Analytics/AnalyticsPlatformModel.js +57 -0
  66. package/sdk/platform/Billing/BillingPlatformClient.d.ts +304 -43
  67. package/sdk/platform/Billing/BillingPlatformClient.js +2218 -118
  68. package/sdk/platform/Billing/BillingPlatformModel.d.ts +1330 -282
  69. package/sdk/platform/Billing/BillingPlatformModel.js +1808 -590
  70. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +324 -16
  71. package/sdk/platform/Billing/BillingPlatformValidator.js +340 -12
  72. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +36 -3
  73. package/sdk/platform/Cart/CartPlatformApplicationClient.js +276 -3
  74. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +93 -1
  75. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +60 -0
  76. package/sdk/platform/Cart/CartPlatformModel.d.ts +216 -40
  77. package/sdk/platform/Cart/CartPlatformModel.js +166 -24
  78. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +11 -7
  79. package/sdk/platform/Catalog/CatalogPlatformClient.js +37 -14
  80. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +122 -17
  81. package/sdk/platform/Catalog/CatalogPlatformModel.js +141 -15
  82. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +40 -7
  83. package/sdk/platform/Catalog/CatalogPlatformValidator.js +19 -5
  84. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +1 -1
  85. package/sdk/platform/Content/ContentPlatformApplicationClient.js +18 -1
  86. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +25 -0
  87. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +10 -0
  88. package/sdk/platform/Content/ContentPlatformModel.d.ts +8 -4
  89. package/sdk/platform/Content/ContentPlatformModel.js +8 -4
  90. package/sdk/platform/Finance/FinancePlatformClient.d.ts +49 -28
  91. package/sdk/platform/Finance/FinancePlatformClient.js +181 -28
  92. package/sdk/platform/Finance/FinancePlatformModel.d.ts +350 -127
  93. package/sdk/platform/Finance/FinancePlatformModel.js +378 -108
  94. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +56 -43
  95. package/sdk/platform/Finance/FinancePlatformValidator.js +61 -42
  96. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +0 -47
  97. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +0 -321
  98. package/sdk/platform/Lead/LeadPlatformApplicationValidator.d.ts +1 -46
  99. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +0 -48
  100. package/sdk/platform/Lead/LeadPlatformClient.d.ts +2 -25
  101. package/sdk/platform/Lead/LeadPlatformClient.js +2 -167
  102. package/sdk/platform/Lead/LeadPlatformModel.d.ts +82 -204
  103. package/sdk/platform/Lead/LeadPlatformModel.js +98 -178
  104. package/sdk/platform/Lead/LeadPlatformValidator.d.ts +1 -25
  105. package/sdk/platform/Lead/LeadPlatformValidator.js +0 -24
  106. package/sdk/platform/Order/OrderPlatformClient.d.ts +11 -1
  107. package/sdk/platform/Order/OrderPlatformClient.js +82 -5
  108. package/sdk/platform/Order/OrderPlatformModel.d.ts +270 -29
  109. package/sdk/platform/Order/OrderPlatformModel.js +139 -28
  110. package/sdk/platform/Order/OrderPlatformValidator.d.ts +58 -17
  111. package/sdk/platform/Order/OrderPlatformValidator.js +28 -16
  112. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +14 -2
  113. package/sdk/platform/Payment/PaymentPlatformModel.js +7 -2
  114. package/sdk/platform/PlatformApplicationClient.d.ts +2 -0
  115. package/sdk/platform/PlatformApplicationClient.js +4 -0
  116. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +4 -4
  117. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +12 -0
  118. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +82 -0
  119. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +18 -1
  120. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +14 -0
  121. package/sdk/platform/Theme/ThemePlatformModel.d.ts +67 -1
  122. package/sdk/platform/Theme/ThemePlatformModel.js +78 -0
  123. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +24 -40
  124. package/sdk/platform/Webhook/WebhookPlatformClient.js +78 -221
  125. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +168 -167
  126. package/sdk/platform/Webhook/WebhookPlatformModel.js +180 -178
  127. package/sdk/platform/Webhook/WebhookPlatformValidator.d.ts +23 -31
  128. package/sdk/platform/Webhook/WebhookPlatformValidator.js +28 -42
  129. package/sdk/platform/index.d.ts +1 -0
  130. package/sdk/platform/index.js +2 -0
  131. package/sdk/public/Billing/BillingPublicClient.d.ts +24 -2
  132. package/sdk/public/Billing/BillingPublicClient.js +156 -3
  133. package/sdk/public/Billing/BillingPublicModel.d.ts +368 -26
  134. package/sdk/public/Billing/BillingPublicModel.js +317 -18
  135. package/sdk/public/Billing/BillingPublicValidator.d.ts +19 -3
  136. package/sdk/public/Billing/BillingPublicValidator.js +22 -3
  137. package/sdk/public/Webhook/WebhookPublicClient.d.ts +2 -2
  138. package/sdk/public/Webhook/WebhookPublicClient.js +2 -2
  139. package/sdk/public/Webhook/WebhookPublicModel.d.ts +24 -22
  140. package/sdk/public/Webhook/WebhookPublicModel.js +24 -22
@@ -223,6 +223,7 @@ export = OrderPlatformModel;
223
223
  * @property {boolean} [lock_after_transition] - Lock Shipment After Transition
224
224
  * @property {boolean} [unlock_before_transition] - Unlock Shipment After Transition
225
225
  * @property {boolean} [task] - To Run Status Update as a background Task
226
+ * @property {boolean} [resume_tasks_after_unlock] - Resume Tasks After Unlock
226
227
  */
227
228
  /**
228
229
  * @typedef ShipmentsResponse
@@ -445,7 +446,7 @@ export = OrderPlatformModel;
445
446
  */
446
447
  /**
447
448
  * @typedef DispatchManifest
448
- * @property {string} manifest_id
449
+ * @property {string} manifest_id - Id of the manifest.
449
450
  */
450
451
  /**
451
452
  * @typedef SuccessResponse
@@ -646,20 +647,23 @@ export = OrderPlatformModel;
646
647
  */
647
648
  /**
648
649
  * @typedef Charge
649
- * @property {string} name
650
- * @property {Object} amount
650
+ * @property {string} name - The name of the charge.
651
+ * @property {Object} amount - The monetary value of the charge, including value
652
+ * and currency details.
651
653
  * @property {Tax} [tax]
652
- * @property {string} [code]
653
- * @property {string} type
654
+ * @property {string} [code] - An optional code associated with the charge for
655
+ * internal tracking.
656
+ * @property {string} type - The category or type of the charge.
654
657
  */
655
658
  /**
656
659
  * @typedef LineItem
657
660
  * @property {Charge[]} [charges]
658
- * @property {Object} [meta]
659
- * @property {string} [custom_message]
660
- * @property {number} [quantity]
661
- * @property {string} seller_identifier
662
- * @property {string} [external_line_id]
661
+ * @property {Object} [meta] - Meta data of the articles or line items.
662
+ * @property {string} [custom_message] - Meta data of the articles or line items.
663
+ * @property {number} [quantity] - Quantity of the articles or line items.
664
+ * @property {string} seller_identifier - Seller identifier of the articles or line items.
665
+ * @property {string} [external_line_id] - External unique identifier of the
666
+ * articles or line items.
663
667
  */
664
668
  /**
665
669
  * @typedef ProcessingDates
@@ -673,12 +677,16 @@ export = OrderPlatformModel;
673
677
  /**
674
678
  * @typedef Shipment
675
679
  * @property {LineItem[]} line_items
676
- * @property {string} [external_shipment_id]
680
+ * @property {string} [external_shipment_id] - External shipment identifier or
681
+ * marketplace's unique shipment identifier.
677
682
  * @property {ProcessingDates} [processing_dates]
678
- * @property {Object} [meta]
679
- * @property {number} [priority]
680
- * @property {number} location_id
681
- * @property {string} [order_type]
683
+ * @property {Object} [meta] - Meta data of the shipment.
684
+ * @property {number} [priority] - Integer value indicating high and low priority.
685
+ * @property {number} location_id - Location Identifier or Store/Fulfillment
686
+ * Identifier of the shipment.
687
+ * @property {string} [order_type] - The order type of shipment HomeDelivery -
688
+ * If the customer wants the order home-delivered PickAtStore - If the
689
+ * customer wants the handover of an order at the store itself.
682
690
  * @property {string} [parent_type]
683
691
  * @property {string} [store_invoice_id]
684
692
  * @property {string} [lock_status]
@@ -707,6 +715,16 @@ export = OrderPlatformModel;
707
715
  * @property {Prices} [price]
708
716
  * @property {ShipmentGstDetails} [gst]
709
717
  */
718
+ /**
719
+ * @typedef ShipmentRequestData
720
+ * @property {LineItem[]} line_items
721
+ * @property {ProcessingDates} [processing_dates]
722
+ * @property {Object} [meta] - Meta data of the shipment.
723
+ * @property {number} [priority] - Integer value indicating high and low priority.
724
+ * @property {string} [order_type] - The order type of shipment HomeDelivery -
725
+ * If the customer wants the order home-delivered PickAtStore - If the
726
+ * customer wants the handover of an order at the store itself.
727
+ */
710
728
  /**
711
729
  * @typedef ShippingInfo
712
730
  * @property {string} [alternate_mobile_number]
@@ -801,6 +819,7 @@ export = OrderPlatformModel;
801
819
  /**
802
820
  * @typedef CreateOrderAPI
803
821
  * @property {Shipment[]} shipments
822
+ * @property {ShipmentRequestData} [shipment_request_data]
804
823
  * @property {ShippingInfo} shipping_info
805
824
  * @property {BillingInfo} billing_info
806
825
  * @property {Object} [currency_info]
@@ -1163,15 +1182,18 @@ export = OrderPlatformModel;
1163
1182
  /**
1164
1183
  * @typedef Filters
1165
1184
  * @property {DateRange} [date_range]
1166
- * @property {string} [logo]
1167
- * @property {string} [from_date]
1168
- * @property {number} [stores]
1169
- * @property {string} [to_date]
1170
- * @property {string} [dp_name]
1171
- * @property {number} [dp_ids]
1172
- * @property {string} [lane]
1173
- * @property {string} [selected_shipments]
1174
- * @property {string} [store_name]
1185
+ * @property {string} [logo] - CDN link of the logo displayed on the manifest page.
1186
+ * @property {string} [from_date] - UTC start date in ISO format.
1187
+ * @property {number} [stores] - Filter with the specific store.
1188
+ * @property {string} [to_date] - UTC end date in ISO format.
1189
+ * @property {string} [dp_name] - Filter with the specific courier partner name.
1190
+ * @property {string} [dp_ids] - Combination of courier partner ids separated by
1191
+ * byte operator.
1192
+ * @property {string} [lane] - Criteria for lane on which shipments must be fetched.
1193
+ * @property {string} [selected_shipments] - Selected shipments mapped to the manifest.
1194
+ * @property {string} [store_name] - Filter with the specific store name.
1195
+ * @property {string} [deselected_shipments] - Deselected shipments unmapped
1196
+ * from the manifest.
1175
1197
  */
1176
1198
  /**
1177
1199
  * @typedef ManifestFile
@@ -1250,10 +1272,10 @@ export = OrderPlatformModel;
1250
1272
  */
1251
1273
  /**
1252
1274
  * @typedef ProcessManifestResponse
1253
- * @property {number} [company_id]
1275
+ * @property {number} [company_id] - Id of the company.
1254
1276
  * @property {Filters} [filters]
1255
- * @property {string} [user_id]
1256
- * @property {string} [manifest_id]
1277
+ * @property {string} [user_id] - Id of the user.
1278
+ * @property {string} [manifest_id] - Id of the manifest.
1257
1279
  * @property {string} [action]
1258
1280
  * @property {string} [uid]
1259
1281
  * @property {string} [created_by]
@@ -1440,6 +1462,36 @@ export = OrderPlatformModel;
1440
1462
  * @typedef GenerateInvoiceIDErrorResponse
1441
1463
  * @property {GenerateInvoiceIDErrorResponseData[]} [items]
1442
1464
  */
1465
+ /**
1466
+ * @typedef ManifestResponse
1467
+ * @property {ManifestItems} [items]
1468
+ */
1469
+ /**
1470
+ * @typedef ProcessManifestRequest
1471
+ * @property {string} [action] - Expected Actions: [save, process,
1472
+ * pdf_generated,invalidate,pdf_failed,complete]
1473
+ * @property {string} [manifest_id] - Id of The Manifest.
1474
+ * @property {Filters} [filters]
1475
+ * @property {string} [unique_id] - Unique Id.
1476
+ */
1477
+ /**
1478
+ * @typedef ManifestItems
1479
+ * @property {Filters} [filters]
1480
+ * @property {string} [manifest_id] - Id of the manifest.
1481
+ * @property {string} [unique_id] - Unique Id.
1482
+ * @property {number} [company_id] - Id of the company.
1483
+ * @property {string} [dp_id] - Shipment with the specific courier partner Id.
1484
+ * @property {string} [courier_partner_slug]
1485
+ * @property {string} [action] - Expected Actions: [Save, Process, Pdf
1486
+ * Generated, Invalidate, Pdf Failed, Complete]
1487
+ * @property {string} [created_by] - Created date of the manifest.
1488
+ * @property {string} [user_id] - Id of user.
1489
+ */
1490
+ /**
1491
+ * @typedef ManifestErrorResponse
1492
+ * @property {boolean} [success] - Success State.
1493
+ * @property {string} [error] - Error String.
1494
+ */
1443
1495
  /**
1444
1496
  * @typedef Page
1445
1497
  * @property {number} [item_total]
@@ -2835,7 +2887,7 @@ export = OrderPlatformModel;
2835
2887
  declare class OrderPlatformModel {
2836
2888
  }
2837
2889
  declare namespace OrderPlatformModel {
2838
- export { InvalidateShipmentCachePayload, InvalidateShipmentCacheNestedResponse, InvalidateShipmentCacheResponse, ErrorResponse, StoreReassign, StoreReassignResponse, Entities, UpdateShipmentLockPayload, OriginalFilter, Bags, CheckResponse, UpdateShipmentLockResponse, AnnouncementResponse, AnnouncementsResponse, BaseResponse, Click2CallResponse, ErrorDetail, ProductsReasonsFilters, ProductsReasonsData, ProductsReasons, EntityReasonData, EntitiesReasons, ReasonsData, Products, OrderItemDataUpdates, ProductsDataUpdatesFilters, ProductsDataUpdates, EntitiesDataUpdates, DataUpdates, ShipmentsRequest, StatuesRequest, UpdateShipmentStatusRequest, ShipmentsResponse, StatuesResponse, UpdateShipmentStatusResponseBody, OrderUser, OrderPriority, ArticleDetails, LocationDetails, ShipmentDetails, ShipmentConfig, ShipmentData, MarketPlacePdf, AffiliateBag, UserData, OrderInfo, AffiliateAppConfigMeta, AffiliateAppConfig, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateInventoryOrderConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryConfig, AffiliateConfig, Affiliate, AffiliateStoreIdMapping, OrderConfig, CreateOrderPayload, CreateOrderResponse, DispatchManifest, SuccessResponse, ActionInfo, GetActionsResponse, HistoryReason, HistoryMeta, HistoryDict, ShipmentHistoryResponse, PostHistoryFilters, PostHistoryData, PostHistoryDict, PostShipmentHistory, SmsDataPayload, SendSmsPayload, OrderDetails, Meta, ShipmentDetail, OrderStatusData, OrderStatusResult, Dimension, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponse, Tax, Charge, LineItem, ProcessingDates, Shipment, ShippingInfo, BillingInfo, UserInfo, TaxInfo, PaymentMethod, PaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, DpConfiguration, PaymentMethods, CreateChannelPaymentInfo, CreateChannelConfig, CreateChannelConfigData, CreateChannelConifgErrorResponse, CreateChannelConfigResponse, UploadConsent, PlatformOrderUpdate, ResponseDetail, FyndOrderIdList, OrderStatus, BagStateTransitionMap, RoleBaseStateTransitionMapping, FetchCreditBalanceRequestPayload, CreditBalanceInfo, FetchCreditBalanceResponsePayload, RefundModeConfigRequestPayload, RefundOption, RefundModeInfo, RefundModeConfigResponsePayload, AttachUserOtpData, AttachUserInfo, AttachOrderUser, AttachOrderUserResponse, SendUserMobileOTP, PointBlankOtpData, SendUserMobileOtpResponse, VerifyOtpData, VerifyMobileOTP, VerifyOtpResponseData, VerifyOtpResponse, BulkReportsDownloadRequest, BulkReportsDownloadResponse, BulkFailedResponse, BulkStateTransistionRequest, BulkStateTransistionResponse, ShipmentActionInfo, BulkActionListingData, BulkListinPage, BulkListingResponse, JobDetailsData, JobDetailsResponse, JobFailedResponse, ManifestPageInfo, ManifestItemDetails, ManifestShipmentListing, DateRange, Filters, ManifestFile, ManifestMediaUpdate, PDFMeta, TotalShipmentPricesCount, ManifestMeta, Manifest, ManifestList, ManifestDetails, FiltersRequest, ProcessManifest, ProcessManifestResponse, ProcessManifestItemResponse, FilterInfoOption, FiltersInfo, ManifestFiltersResponse, PageDetails, EInvoiceIrnDetails, EInvoiceErrorDetails, EInvoiceDetails, EInvoiceResponseData, EInvoiceRetry, EInvoiceRetryResponse, EInvoiceErrorInfo, EInvoiceErrorResponseData, EInvoiceErrorResponse, EInvoiceErrorResponseDetails, EInvoiceRetryShipmentData, CourierPartnerTrackingDetails, CourierPartnerTrackingResponse, LogsChannelDetails, LogPaymentDetails, FailedOrdersItem, FailedOrderLogs, FailedOrderLogDetails, GenerateInvoiceIDResponseData, GenerateInvoiceIDErrorResponseData, GenerateInvoiceIDRequest, GenerateInvoiceIDResponse, GenerateInvoiceIDErrorResponse, Page, BagReasonMeta, QuestionSet, BagReasons, ShipmentBagReasons, ShipmentStatus, UserDataInfo, PlatformDeliveryAddress, ShipmentListingChannel, Prices, Identifier, FinancialBreakup, GSTDetailsData, BagStateMapper, BagStatusHistory, Dimensions, ReturnConfig, Weight, Article, ShipmentListingBrand, ReplacementDetails, AffiliateMeta, AffiliateBagDetails, PlatformArticleAttributes, PlatformItem, Dates, BagReturnableCancelableStatus, BagUnit, ShipmentItemFulFillingStore, Currency, OrderingCurrency, ConversionRate, CurrencyInfo, ShipmentItem, ShipmentInternalPlatformViewResponse, TrackingList, InvoiceInfo, OrderDetailsData, UserDetailsData, PhoneDetails, ContactDetails, CompanyDetails, OrderingStoreDetails, DPDetailsData, BuyerDetails, DebugInfo, EinvoiceInfo, Formatted, ShipmentTags, LockData, ShipmentTimeStamp, ShipmentMeta, PDFLinks, AffiliateDetails, BagConfigs, OrderBagArticle, OrderBrandName, AffiliateBagsDetails, BagPaymentMethods, DiscountRules, ItemCriterias, BuyRules, AppliedPromos, CurrentStatus, OrderBags, FulfillingStore, ShipmentPayments, ShipmentStatusData, ShipmentLockDetails, PlatformShipment, ShipmentInfoResponse, TaxDetails, PaymentInfoData, OrderData, OrderDetailsResponse, SubLane, SuperLane, LaneConfigResponse, PlatformBreakupValues, PlatformChannel, PlatformOrderItems, OrderListingResponse, PlatformTrack, PlatformShipmentTrack, AdvanceFilterInfo, FiltersResponse, URL, FileResponse, BulkActionTemplate, BulkActionTemplateResponse, Reason, PlatformShipmentReasonsResponse, ShipmentResponseReasons, ShipmentReasonsResponse, StoreAddress, EInvoicePortalDetails, StoreEinvoice, StoreEwaybill, StoreGstCredentials, Document, StoreDocuments, StoreMeta, Store, Brand, Attributes, Item, ArticleStatusDetails, Company, ShipmentGstDetails, DeliverySlotDetails, InvoiceDetails, UserDetails, WeightData, BagDetails, BagDetailsPlatformResponse, BagsPage, BagData, GetBagsPlatformResponse, GeneratePosOrderReceiptResponse, Templates, AllowedTemplatesResponse, TemplateDownloadResponse, Error };
2890
+ export { InvalidateShipmentCachePayload, InvalidateShipmentCacheNestedResponse, InvalidateShipmentCacheResponse, ErrorResponse, StoreReassign, StoreReassignResponse, Entities, UpdateShipmentLockPayload, OriginalFilter, Bags, CheckResponse, UpdateShipmentLockResponse, AnnouncementResponse, AnnouncementsResponse, BaseResponse, Click2CallResponse, ErrorDetail, ProductsReasonsFilters, ProductsReasonsData, ProductsReasons, EntityReasonData, EntitiesReasons, ReasonsData, Products, OrderItemDataUpdates, ProductsDataUpdatesFilters, ProductsDataUpdates, EntitiesDataUpdates, DataUpdates, ShipmentsRequest, StatuesRequest, UpdateShipmentStatusRequest, ShipmentsResponse, StatuesResponse, UpdateShipmentStatusResponseBody, OrderUser, OrderPriority, ArticleDetails, LocationDetails, ShipmentDetails, ShipmentConfig, ShipmentData, MarketPlacePdf, AffiliateBag, UserData, OrderInfo, AffiliateAppConfigMeta, AffiliateAppConfig, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateInventoryOrderConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryConfig, AffiliateConfig, Affiliate, AffiliateStoreIdMapping, OrderConfig, CreateOrderPayload, CreateOrderResponse, DispatchManifest, SuccessResponse, ActionInfo, GetActionsResponse, HistoryReason, HistoryMeta, HistoryDict, ShipmentHistoryResponse, PostHistoryFilters, PostHistoryData, PostHistoryDict, PostShipmentHistory, SmsDataPayload, SendSmsPayload, OrderDetails, Meta, ShipmentDetail, OrderStatusData, OrderStatusResult, Dimension, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponse, Tax, Charge, LineItem, ProcessingDates, Shipment, ShipmentRequestData, ShippingInfo, BillingInfo, UserInfo, TaxInfo, PaymentMethod, PaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, DpConfiguration, PaymentMethods, CreateChannelPaymentInfo, CreateChannelConfig, CreateChannelConfigData, CreateChannelConifgErrorResponse, CreateChannelConfigResponse, UploadConsent, PlatformOrderUpdate, ResponseDetail, FyndOrderIdList, OrderStatus, BagStateTransitionMap, RoleBaseStateTransitionMapping, FetchCreditBalanceRequestPayload, CreditBalanceInfo, FetchCreditBalanceResponsePayload, RefundModeConfigRequestPayload, RefundOption, RefundModeInfo, RefundModeConfigResponsePayload, AttachUserOtpData, AttachUserInfo, AttachOrderUser, AttachOrderUserResponse, SendUserMobileOTP, PointBlankOtpData, SendUserMobileOtpResponse, VerifyOtpData, VerifyMobileOTP, VerifyOtpResponseData, VerifyOtpResponse, BulkReportsDownloadRequest, BulkReportsDownloadResponse, BulkFailedResponse, BulkStateTransistionRequest, BulkStateTransistionResponse, ShipmentActionInfo, BulkActionListingData, BulkListinPage, BulkListingResponse, JobDetailsData, JobDetailsResponse, JobFailedResponse, ManifestPageInfo, ManifestItemDetails, ManifestShipmentListing, DateRange, Filters, ManifestFile, ManifestMediaUpdate, PDFMeta, TotalShipmentPricesCount, ManifestMeta, Manifest, ManifestList, ManifestDetails, FiltersRequest, ProcessManifest, ProcessManifestResponse, ProcessManifestItemResponse, FilterInfoOption, FiltersInfo, ManifestFiltersResponse, PageDetails, EInvoiceIrnDetails, EInvoiceErrorDetails, EInvoiceDetails, EInvoiceResponseData, EInvoiceRetry, EInvoiceRetryResponse, EInvoiceErrorInfo, EInvoiceErrorResponseData, EInvoiceErrorResponse, EInvoiceErrorResponseDetails, EInvoiceRetryShipmentData, CourierPartnerTrackingDetails, CourierPartnerTrackingResponse, LogsChannelDetails, LogPaymentDetails, FailedOrdersItem, FailedOrderLogs, FailedOrderLogDetails, GenerateInvoiceIDResponseData, GenerateInvoiceIDErrorResponseData, GenerateInvoiceIDRequest, GenerateInvoiceIDResponse, GenerateInvoiceIDErrorResponse, ManifestResponse, ProcessManifestRequest, ManifestItems, ManifestErrorResponse, Page, BagReasonMeta, QuestionSet, BagReasons, ShipmentBagReasons, ShipmentStatus, UserDataInfo, PlatformDeliveryAddress, ShipmentListingChannel, Prices, Identifier, FinancialBreakup, GSTDetailsData, BagStateMapper, BagStatusHistory, Dimensions, ReturnConfig, Weight, Article, ShipmentListingBrand, ReplacementDetails, AffiliateMeta, AffiliateBagDetails, PlatformArticleAttributes, PlatformItem, Dates, BagReturnableCancelableStatus, BagUnit, ShipmentItemFulFillingStore, Currency, OrderingCurrency, ConversionRate, CurrencyInfo, ShipmentItem, ShipmentInternalPlatformViewResponse, TrackingList, InvoiceInfo, OrderDetailsData, UserDetailsData, PhoneDetails, ContactDetails, CompanyDetails, OrderingStoreDetails, DPDetailsData, BuyerDetails, DebugInfo, EinvoiceInfo, Formatted, ShipmentTags, LockData, ShipmentTimeStamp, ShipmentMeta, PDFLinks, AffiliateDetails, BagConfigs, OrderBagArticle, OrderBrandName, AffiliateBagsDetails, BagPaymentMethods, DiscountRules, ItemCriterias, BuyRules, AppliedPromos, CurrentStatus, OrderBags, FulfillingStore, ShipmentPayments, ShipmentStatusData, ShipmentLockDetails, PlatformShipment, ShipmentInfoResponse, TaxDetails, PaymentInfoData, OrderData, OrderDetailsResponse, SubLane, SuperLane, LaneConfigResponse, PlatformBreakupValues, PlatformChannel, PlatformOrderItems, OrderListingResponse, PlatformTrack, PlatformShipmentTrack, AdvanceFilterInfo, FiltersResponse, URL, FileResponse, BulkActionTemplate, BulkActionTemplateResponse, Reason, PlatformShipmentReasonsResponse, ShipmentResponseReasons, ShipmentReasonsResponse, StoreAddress, EInvoicePortalDetails, StoreEinvoice, StoreEwaybill, StoreGstCredentials, Document, StoreDocuments, StoreMeta, Store, Brand, Attributes, Item, ArticleStatusDetails, Company, ShipmentGstDetails, DeliverySlotDetails, InvoiceDetails, UserDetails, WeightData, BagDetails, BagDetailsPlatformResponse, BagsPage, BagData, GetBagsPlatformResponse, GeneratePosOrderReceiptResponse, Templates, AllowedTemplatesResponse, TemplateDownloadResponse, Error };
2839
2891
  }
2840
2892
  /** @returns {InvalidateShipmentCachePayload} */
2841
2893
  declare function InvalidateShipmentCachePayload(): InvalidateShipmentCachePayload;
@@ -3234,6 +3286,10 @@ type UpdateShipmentStatusRequest = {
3234
3286
  * - To Run Status Update as a background Task
3235
3287
  */
3236
3288
  task?: boolean;
3289
+ /**
3290
+ * - Resume Tasks After Unlock
3291
+ */
3292
+ resume_tasks_after_unlock?: boolean;
3237
3293
  };
3238
3294
  /** @returns {ShipmentsResponse} */
3239
3295
  declare function ShipmentsResponse(): ShipmentsResponse;
@@ -3485,6 +3541,9 @@ type CreateOrderResponse = {
3485
3541
  /** @returns {DispatchManifest} */
3486
3542
  declare function DispatchManifest(): DispatchManifest;
3487
3543
  type DispatchManifest = {
3544
+ /**
3545
+ * - Id of the manifest.
3546
+ */
3488
3547
  manifest_id: string;
3489
3548
  };
3490
3549
  /** @returns {SuccessResponse} */
@@ -3784,20 +3843,50 @@ type Tax = {
3784
3843
  /** @returns {Charge} */
3785
3844
  declare function Charge(): Charge;
3786
3845
  type Charge = {
3846
+ /**
3847
+ * - The name of the charge.
3848
+ */
3787
3849
  name: string;
3850
+ /**
3851
+ * - The monetary value of the charge, including value
3852
+ * and currency details.
3853
+ */
3788
3854
  amount: any;
3789
3855
  tax?: Tax;
3856
+ /**
3857
+ * - An optional code associated with the charge for
3858
+ * internal tracking.
3859
+ */
3790
3860
  code?: string;
3861
+ /**
3862
+ * - The category or type of the charge.
3863
+ */
3791
3864
  type: string;
3792
3865
  };
3793
3866
  /** @returns {LineItem} */
3794
3867
  declare function LineItem(): LineItem;
3795
3868
  type LineItem = {
3796
3869
  charges?: Charge[];
3870
+ /**
3871
+ * - Meta data of the articles or line items.
3872
+ */
3797
3873
  meta?: any;
3874
+ /**
3875
+ * - Meta data of the articles or line items.
3876
+ */
3798
3877
  custom_message?: string;
3878
+ /**
3879
+ * - Quantity of the articles or line items.
3880
+ */
3799
3881
  quantity?: number;
3882
+ /**
3883
+ * - Seller identifier of the articles or line items.
3884
+ */
3800
3885
  seller_identifier: string;
3886
+ /**
3887
+ * - External unique identifier of the
3888
+ * articles or line items.
3889
+ */
3801
3890
  external_line_id?: string;
3802
3891
  };
3803
3892
  /** @returns {ProcessingDates} */
@@ -3814,11 +3903,30 @@ type ProcessingDates = {
3814
3903
  declare function Shipment(): Shipment;
3815
3904
  type Shipment = {
3816
3905
  line_items: LineItem[];
3906
+ /**
3907
+ * - External shipment identifier or
3908
+ * marketplace's unique shipment identifier.
3909
+ */
3817
3910
  external_shipment_id?: string;
3818
3911
  processing_dates?: ProcessingDates;
3912
+ /**
3913
+ * - Meta data of the shipment.
3914
+ */
3819
3915
  meta?: any;
3916
+ /**
3917
+ * - Integer value indicating high and low priority.
3918
+ */
3820
3919
  priority?: number;
3920
+ /**
3921
+ * - Location Identifier or Store/Fulfillment
3922
+ * Identifier of the shipment.
3923
+ */
3821
3924
  location_id: number;
3925
+ /**
3926
+ * - The order type of shipment HomeDelivery -
3927
+ * If the customer wants the order home-delivered PickAtStore - If the
3928
+ * customer wants the handover of an order at the store itself.
3929
+ */
3822
3930
  order_type?: string;
3823
3931
  parent_type?: string;
3824
3932
  store_invoice_id?: string;
@@ -3848,6 +3956,26 @@ type Shipment = {
3848
3956
  price?: Prices;
3849
3957
  gst?: ShipmentGstDetails;
3850
3958
  };
3959
+ /** @returns {ShipmentRequestData} */
3960
+ declare function ShipmentRequestData(): ShipmentRequestData;
3961
+ type ShipmentRequestData = {
3962
+ line_items: LineItem[];
3963
+ processing_dates?: ProcessingDates;
3964
+ /**
3965
+ * - Meta data of the shipment.
3966
+ */
3967
+ meta?: any;
3968
+ /**
3969
+ * - Integer value indicating high and low priority.
3970
+ */
3971
+ priority?: number;
3972
+ /**
3973
+ * - The order type of shipment HomeDelivery -
3974
+ * If the customer wants the order home-delivered PickAtStore - If the
3975
+ * customer wants the handover of an order at the store itself.
3976
+ */
3977
+ order_type?: string;
3978
+ };
3851
3979
  /** @returns {ShippingInfo} */
3852
3980
  declare function ShippingInfo(): ShippingInfo;
3853
3981
  type ShippingInfo = {
@@ -3955,6 +4083,7 @@ type PaymentInfo = {
3955
4083
  declare function CreateOrderAPI(): CreateOrderAPI;
3956
4084
  type CreateOrderAPI = {
3957
4085
  shipments: Shipment[];
4086
+ shipment_request_data?: ShipmentRequestData;
3958
4087
  shipping_info: ShippingInfo;
3959
4088
  billing_info: BillingInfo;
3960
4089
  currency_info?: any;
@@ -4388,15 +4517,48 @@ type DateRange = {
4388
4517
  declare function Filters(): Filters;
4389
4518
  type Filters = {
4390
4519
  date_range?: DateRange;
4520
+ /**
4521
+ * - CDN link of the logo displayed on the manifest page.
4522
+ */
4391
4523
  logo?: string;
4524
+ /**
4525
+ * - UTC start date in ISO format.
4526
+ */
4392
4527
  from_date?: string;
4528
+ /**
4529
+ * - Filter with the specific store.
4530
+ */
4393
4531
  stores?: number;
4532
+ /**
4533
+ * - UTC end date in ISO format.
4534
+ */
4394
4535
  to_date?: string;
4536
+ /**
4537
+ * - Filter with the specific courier partner name.
4538
+ */
4395
4539
  dp_name?: string;
4396
- dp_ids?: number;
4540
+ /**
4541
+ * - Combination of courier partner ids separated by
4542
+ * byte operator.
4543
+ */
4544
+ dp_ids?: string;
4545
+ /**
4546
+ * - Criteria for lane on which shipments must be fetched.
4547
+ */
4397
4548
  lane?: string;
4549
+ /**
4550
+ * - Selected shipments mapped to the manifest.
4551
+ */
4398
4552
  selected_shipments?: string;
4553
+ /**
4554
+ * - Filter with the specific store name.
4555
+ */
4399
4556
  store_name?: string;
4557
+ /**
4558
+ * - Deselected shipments unmapped
4559
+ * from the manifest.
4560
+ */
4561
+ deselected_shipments?: string;
4400
4562
  };
4401
4563
  /** @returns {ManifestFile} */
4402
4564
  declare function ManifestFile(): ManifestFile;
@@ -4486,9 +4648,18 @@ type ProcessManifest = {
4486
4648
  /** @returns {ProcessManifestResponse} */
4487
4649
  declare function ProcessManifestResponse(): ProcessManifestResponse;
4488
4650
  type ProcessManifestResponse = {
4651
+ /**
4652
+ * - Id of the company.
4653
+ */
4489
4654
  company_id?: number;
4490
4655
  filters?: Filters;
4656
+ /**
4657
+ * - Id of the user.
4658
+ */
4491
4659
  user_id?: string;
4660
+ /**
4661
+ * - Id of the manifest.
4662
+ */
4492
4663
  manifest_id?: string;
4493
4664
  action?: string;
4494
4665
  uid?: string;
@@ -4761,6 +4932,76 @@ declare function GenerateInvoiceIDErrorResponse(): GenerateInvoiceIDErrorRespons
4761
4932
  type GenerateInvoiceIDErrorResponse = {
4762
4933
  items?: GenerateInvoiceIDErrorResponseData[];
4763
4934
  };
4935
+ /** @returns {ManifestResponse} */
4936
+ declare function ManifestResponse(): ManifestResponse;
4937
+ type ManifestResponse = {
4938
+ items?: ManifestItems;
4939
+ };
4940
+ /** @returns {ProcessManifestRequest} */
4941
+ declare function ProcessManifestRequest(): ProcessManifestRequest;
4942
+ type ProcessManifestRequest = {
4943
+ /**
4944
+ * - Expected Actions: [save, process,
4945
+ * pdf_generated,invalidate,pdf_failed,complete]
4946
+ */
4947
+ action?: string;
4948
+ /**
4949
+ * - Id of The Manifest.
4950
+ */
4951
+ manifest_id?: string;
4952
+ filters?: Filters;
4953
+ /**
4954
+ * - Unique Id.
4955
+ */
4956
+ unique_id?: string;
4957
+ };
4958
+ /** @returns {ManifestItems} */
4959
+ declare function ManifestItems(): ManifestItems;
4960
+ type ManifestItems = {
4961
+ filters?: Filters;
4962
+ /**
4963
+ * - Id of the manifest.
4964
+ */
4965
+ manifest_id?: string;
4966
+ /**
4967
+ * - Unique Id.
4968
+ */
4969
+ unique_id?: string;
4970
+ /**
4971
+ * - Id of the company.
4972
+ */
4973
+ company_id?: number;
4974
+ /**
4975
+ * - Shipment with the specific courier partner Id.
4976
+ */
4977
+ dp_id?: string;
4978
+ courier_partner_slug?: string;
4979
+ /**
4980
+ * - Expected Actions: [Save, Process, Pdf
4981
+ * Generated, Invalidate, Pdf Failed, Complete]
4982
+ */
4983
+ action?: string;
4984
+ /**
4985
+ * - Created date of the manifest.
4986
+ */
4987
+ created_by?: string;
4988
+ /**
4989
+ * - Id of user.
4990
+ */
4991
+ user_id?: string;
4992
+ };
4993
+ /** @returns {ManifestErrorResponse} */
4994
+ declare function ManifestErrorResponse(): ManifestErrorResponse;
4995
+ type ManifestErrorResponse = {
4996
+ /**
4997
+ * - Success State.
4998
+ */
4999
+ success?: boolean;
5000
+ /**
5001
+ * - Error String.
5002
+ */
5003
+ error?: string;
5004
+ };
4764
5005
  /** @returns {Page} */
4765
5006
  declare function Page(): Page;
4766
5007
  type Page = {