@gofynd/fdk-client-javascript 1.4.15-beta.3 → 1.5.0
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.
- package/README.md +1 -1
- package/package.json +1 -1
- package/sdk/application/Cart/CartApplicationClient.d.ts +11 -11
- package/sdk/application/Cart/CartApplicationClient.js +48 -50
- package/sdk/application/Content/ContentApplicationClient.d.ts +0 -20
- package/sdk/application/Content/ContentApplicationClient.js +0 -78
- package/sdk/application/Logistic/LogisticApplicationClient.d.ts +1 -1
- package/sdk/application/Logistic/LogisticApplicationClient.js +2 -0
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +10 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +39 -0
- package/sdk/partner/Logistics/LogisticsPartnerClient.d.ts +33 -12
- package/sdk/partner/Logistics/LogisticsPartnerClient.js +209 -38
- package/sdk/partner/Logistics/LogisticsPartnerModel.d.ts +399 -19
- package/sdk/partner/Logistics/LogisticsPartnerModel.js +212 -11
- package/sdk/partner/Logistics/LogisticsPartnerValidator.d.ts +3 -1
- package/sdk/partner/Logistics/LogisticsPartnerValidator.js +22 -7
- package/sdk/platform/Analytics/AnalyticsPlatformModel.js +1 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +1 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +3 -12
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +0 -7
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +0 -3
- package/sdk/platform/Cart/CartPlatformModel.d.ts +28 -14
- package/sdk/platform/Cart/CartPlatformModel.js +12 -6
- package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +24 -0
- package/sdk/platform/Catalog/CatalogPlatformClient.js +176 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +80 -29
- package/sdk/platform/Catalog/CatalogPlatformModel.js +72 -32
- package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +45 -1
- package/sdk/platform/Catalog/CatalogPlatformValidator.js +35 -0
- package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +0 -52
- package/sdk/platform/Content/ContentPlatformApplicationClient.js +0 -411
- package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +1 -85
- package/sdk/platform/Content/ContentPlatformApplicationValidator.js +0 -73
- package/sdk/platform/Content/ContentPlatformModel.d.ts +1 -90
- package/sdk/platform/Content/ContentPlatformModel.js +0 -104
- package/sdk/platform/Order/OrderPlatformClient.d.ts +2 -2
- package/sdk/platform/Order/OrderPlatformClient.js +8 -0
- package/sdk/platform/Order/OrderPlatformModel.d.ts +73 -1
- package/sdk/platform/Order/OrderPlatformModel.js +39 -0
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +22 -0
- package/sdk/platform/Order/OrderPlatformValidator.js +10 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +94 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +699 -76
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +598 -23
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +382 -20
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +134 -1
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +108 -0
|
@@ -1507,6 +1507,27 @@ export = OrderPlatformModel;
|
|
|
1507
1507
|
* information about the API response.
|
|
1508
1508
|
* @property {VerifyOtpResponseData} [data]
|
|
1509
1509
|
*/
|
|
1510
|
+
/**
|
|
1511
|
+
* @typedef BulkReportsFiltersSchema
|
|
1512
|
+
* @property {string} [bag_status] - Comma separated values of bag statuses(to
|
|
1513
|
+
* be deprecated).
|
|
1514
|
+
* @property {string} [operational_status] - Comma separated values of
|
|
1515
|
+
* shipment's operational statuses.
|
|
1516
|
+
* @property {string} [stores] - Comma separated values of store ids.
|
|
1517
|
+
* @property {string} [time_to_dispatch] - Specifies the type of shipments to
|
|
1518
|
+
* retrieve. Use "1" for non-breached shipments and "-1" for breached shipments.
|
|
1519
|
+
* @property {string} [payment_methods] - Filters shipments by payment method.
|
|
1520
|
+
* Use "PREPAID" for shipments paid in advance, and "COD" for cash-on-delivery
|
|
1521
|
+
* shipments.
|
|
1522
|
+
* @property {string} [dp_ids] - Comma separated values of delivery partners.
|
|
1523
|
+
* Either dp_id or slug(extension_id|scheme_id).
|
|
1524
|
+
* @property {string} [sales_channels] - Comma separated values of sales channels ids.
|
|
1525
|
+
* @property {string} [tags] - A comma-separated list of tags associated with
|
|
1526
|
+
* the entity. Each tag is a keyword or label that categorizes or describes the entity.
|
|
1527
|
+
* @property {string} [lock_status] - Indicates the lock status of the entity.
|
|
1528
|
+
* "true" means the shipment is in a complete or partial lock state, while
|
|
1529
|
+
* "false" means it is unlocked.
|
|
1530
|
+
*/
|
|
1510
1531
|
/**
|
|
1511
1532
|
* @typedef BulkReportsDownloadRequestSchema
|
|
1512
1533
|
* @property {string[]} [store_ids] - A list of specific store IDs for which the
|
|
@@ -1528,6 +1549,7 @@ export = OrderPlatformModel;
|
|
|
1528
1549
|
* should include data from cross-company operations.
|
|
1529
1550
|
* @property {Object} [custom_filters_for_lane] - A flexible object that allows
|
|
1530
1551
|
* users to define custom filters specific to the lanes being reported on.
|
|
1552
|
+
* @property {BulkReportsFiltersSchema} [filters]
|
|
1531
1553
|
*/
|
|
1532
1554
|
/**
|
|
1533
1555
|
* @typedef BulkReportsDownloadResponseSchema
|
|
@@ -4892,7 +4914,7 @@ export = OrderPlatformModel;
|
|
|
4892
4914
|
declare class OrderPlatformModel {
|
|
4893
4915
|
}
|
|
4894
4916
|
declare namespace OrderPlatformModel {
|
|
4895
|
-
export { InvalidateShipmentCachePayload, InvalidateShipmentCacheNestedResponseSchema, InvalidateShipmentCacheResponseSchema, UpdatePackingErrorResponseSchema, ErrorResponseSchema, StoreReassign, StoreReassignResponseSchema, LockManagerEntities, UpdateShipmentLockPayload, OriginalFilter, Bags, CheckResponseSchema, UpdateShipmentLockResponseSchema, AnnouncementResponseSchema, AnnouncementsResponseSchema, BaseResponseSchema, ErrorDetail, ProductsReasonsFilters, ProductsReasonsData, ProductsReasons, EntityReasonData, EntitiesReasons, ReasonsData, Products, OrderItemDataUpdates, ProductsDataUpdatesFilters, ProductsDataUpdates, EntitiesDataUpdates, OrderDataUpdates, DataUpdates, ShipmentsRequestSchema, UpdatedAddressSchema, UpdateAddressRequestBody, StatuesRequestSchema, UpdateShipmentStatusRequestSchema, ShipmentsResponseSchema, DPConfiguration, PaymentConfig, LockStateMessage, CreateOrderConfig, StatuesResponseSchema, UpdateShipmentStatusResponseBody, OrderUser, OrderPriority, ArticleDetails, LocationDetails, ShipmentDetails, ShipmentConfig, ShipmentData, MarketPlacePdf, AffiliateBag, UserData, OrderInfo, AffiliateAppConfigMeta, AffiliateAppConfig, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateInventoryOrderConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryConfig, AffiliateConfig, Affiliate, AffiliateStoreIdMapping, OrderConfig, CreateOrderResponseSchema, DispatchManifest, SuccessResponseSchema, ActionInfo, GetActionsResponseSchema, HistoryReason, RefundInformation, HistoryMeta, HistoryDict, ShipmentHistoryResponseSchema, PostHistoryFilters, PostHistoryData, PostHistoryDict, PostShipmentHistory, SmsDataPayload, SendSmsPayload, OrderDetails, Meta, ShipmentDetail, OrderStatusData, OrderStatusResult, SendSmsResponseSchema, Dimension, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponseSchema, Tax, AmountSchema, Charge, LineItem, ProcessingDates, Tag, ProcessAfterConfig, SystemMessages, Shipment, GeoLocationSchema, ShippingInfo, BillingInfo, UserInfo, TaxInfo, PaymentMethod, PaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, PaymentMethods, CreateChannelPaymentInfo, CreateChannelConfig, CreateChannelConfigData, CreateChannelConifgErrorResponseSchema, UploadManifestConsent, CreateChannelConfigResponseSchema, PlatformOrderUpdate, ResponseDetail, FyndOrderIdList, OrderStatus, BagStateTransitionMap, RoleBaseStateTransitionMapping, FetchCreditBalanceRequestPayload, CreditBalanceInfo, FetchCreditBalanceResponsePayload, RefundModeConfigRequestPayload, RefundOption, RefundModeFormat, RefundModeInfo, RefundModeConfigResponsePayload, AttachUserOtpData, AttachUserInfo, AttachOrderUser, AttachOrderUserResponseSchema, SendUserMobileOTP, PointBlankOtpData, SendUserMobileOtpResponseSchema, VerifyOtpData, VerifyMobileOTP, VerifyOtpResponseData, VerifyOtpResponseSchema, BulkReportsDownloadRequestSchema, BulkReportsDownloadResponseSchema, APIFailedResponseSchema, BulkStateTransistionRequestSchema, BulkStateTransistionResponseSchema, ShipmentActionInfo, BulkActionListingData, BulkListinPage, BulkListingResponseSchema, JobDetailsData, JobDetailsResponseSchema, JobFailedResponseSchema, ManifestPageInfo, ManifestItemDetails, ManifestShipmentListing, DateRange, Filters, ManifestFile, ManifestMediaUpdate, PDFMeta, TotalShipmentPricesCount, ManifestMeta, Manifest, ManifestList, ManifestDetails, FiltersRequestSchema, ProcessManifest, ProcessManifestResponseSchema, ProcessManifestItemResponseSchema, FilterInfoOption, FiltersInfo, ManifestFiltersResponseSchema, PageDetails, EInvoiceIrnDetails, EInvoiceErrorDetails, EInvoiceDetails, EInvoiceResponseData, EInvoiceRetry, EInvoiceRetryResponseSchema, EInvoiceErrorInfo, EInvoiceErrorResponseData, EInvoiceErrorResponseSchema, EInvoiceErrorResponseDetails, EInvoiceRetryShipmentData, CourierPartnerTrackingDetails, CourierPartnerTrackingResponseSchema, LogsChannelDetails, LogPaymentDetails, FailedOrdersItem, FailedOrderLogs, FailedOrderLogDetails, GenerateInvoiceIDResponseData, GenerateInvoiceIDErrorResponseData, GenerateInvoiceIDRequestSchema, GenerateInvoiceIDResponseSchema, GenerateInvoiceIDErrorResponseSchema, ManifestResponseSchema, ProcessManifestRequestSchema, ManifestItems, ManifestErrorResponseSchema, ConfigData, ConfigUpdatedResponseSchema, FlagData, Flags, Filter, PostHook, PreHook, Config, TransitionConfigCondition, TransitionConfigData, TransitionConfigPayload, RuleListRequestSchema, RuleErrorResponseSchema, RMAPageInfo, RuleAction, QuestionSetItem, Reason, Conditions, RuleItem, RuleError, RuleListResponseSchema, UpdateShipmentPaymentMode, CommonErrorResponseSchema, ExceptionErrorResponseSchema, ProductSchema, PaymentMethodSchema, ActionDetailSchema, PaymentMetaDataSchema, PaymentMetaLogoURLSchema, ValidationError, Page, BagReasonMeta, QuestionSet, BagReasons, ShipmentBagReasons, ShipmentStatus, UserDataInfo, Address, ShipmentListingChannel, Prices, ChargeDistributionSchema, ChargeDistributionLogic, ChargeAmountCurrency, ChargeAmount, PriceAdjustmentCharge, OrderingCurrencyPrices, Identifier, FinancialBreakup, GSTDetailsData, BagStateMapper, BagStatusHistory, Dimensions, ReturnConfig, Weight, Article, ShipmentListingBrand, ReplacementDetails, AffiliateMeta, AffiliateBagDetails, PlatformArticleAttributes, PlatformItem, Dates, BagReturnableCancelableStatus, BagUnit, ShipmentItemFulFillingStore, Currency, OrderingCurrency, ConversionRate, CurrencyInfo, ShipmentItem, ShipmentInternalPlatformViewResponseSchema, 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, PriceMinMax, ItemPriceDetails, FreeGiftItems, AppliedFreeArticles, AppliedPromos, CurrentStatus, OrderBags, FulfillingStore, ShipmentPayments, ShipmentStatusData, ShipmentLockDetails, PlatformShipment, ShipmentInfoResponseSchema, TaxDetails, PaymentInfoData, CurrencySchema, OrderData, OrderDetailsResponseSchema, SubLane, SuperLane, LaneConfigResponseSchema, PlatformBreakupValues, PlatformChannel, PlatformOrderItems, OrderListingResponseSchema, PlatformTrack, PlatformShipmentTrack, AdvanceFilterInfo, FiltersResponseSchema, URL, FileResponseSchema, BulkActionTemplate, BulkActionTemplateResponseSchema, PlatformShipmentReasonsResponseSchema, ShipmentResponseReasons, ShipmentReasonsResponseSchema, StoreAddress, EInvoicePortalDetails, StoreEinvoice, StoreEwaybill, StoreGstCredentials, Document, StoreDocuments, StoreMeta, Store, Brand, Item, ArticleStatusDetails, Company, ShipmentGstDetails, DeliverySlotDetails, InvoiceDetails, UserDetails, WeightData, BagDetails, BagDetailsPlatformResponseSchema, BagsPage, BagData, GetBagsPlatformResponseSchema, GeneratePosOrderReceiptResponseSchema, Templates, AllowedTemplatesResponseSchema, TemplateDownloadResponseSchema, Error, BulkFailedResponseSchema };
|
|
4917
|
+
export { InvalidateShipmentCachePayload, InvalidateShipmentCacheNestedResponseSchema, InvalidateShipmentCacheResponseSchema, UpdatePackingErrorResponseSchema, ErrorResponseSchema, StoreReassign, StoreReassignResponseSchema, LockManagerEntities, UpdateShipmentLockPayload, OriginalFilter, Bags, CheckResponseSchema, UpdateShipmentLockResponseSchema, AnnouncementResponseSchema, AnnouncementsResponseSchema, BaseResponseSchema, ErrorDetail, ProductsReasonsFilters, ProductsReasonsData, ProductsReasons, EntityReasonData, EntitiesReasons, ReasonsData, Products, OrderItemDataUpdates, ProductsDataUpdatesFilters, ProductsDataUpdates, EntitiesDataUpdates, OrderDataUpdates, DataUpdates, ShipmentsRequestSchema, UpdatedAddressSchema, UpdateAddressRequestBody, StatuesRequestSchema, UpdateShipmentStatusRequestSchema, ShipmentsResponseSchema, DPConfiguration, PaymentConfig, LockStateMessage, CreateOrderConfig, StatuesResponseSchema, UpdateShipmentStatusResponseBody, OrderUser, OrderPriority, ArticleDetails, LocationDetails, ShipmentDetails, ShipmentConfig, ShipmentData, MarketPlacePdf, AffiliateBag, UserData, OrderInfo, AffiliateAppConfigMeta, AffiliateAppConfig, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateInventoryOrderConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryConfig, AffiliateConfig, Affiliate, AffiliateStoreIdMapping, OrderConfig, CreateOrderResponseSchema, DispatchManifest, SuccessResponseSchema, ActionInfo, GetActionsResponseSchema, HistoryReason, RefundInformation, HistoryMeta, HistoryDict, ShipmentHistoryResponseSchema, PostHistoryFilters, PostHistoryData, PostHistoryDict, PostShipmentHistory, SmsDataPayload, SendSmsPayload, OrderDetails, Meta, ShipmentDetail, OrderStatusData, OrderStatusResult, SendSmsResponseSchema, Dimension, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponseSchema, Tax, AmountSchema, Charge, LineItem, ProcessingDates, Tag, ProcessAfterConfig, SystemMessages, Shipment, GeoLocationSchema, ShippingInfo, BillingInfo, UserInfo, TaxInfo, PaymentMethod, PaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, PaymentMethods, CreateChannelPaymentInfo, CreateChannelConfig, CreateChannelConfigData, CreateChannelConifgErrorResponseSchema, UploadManifestConsent, CreateChannelConfigResponseSchema, PlatformOrderUpdate, ResponseDetail, FyndOrderIdList, OrderStatus, BagStateTransitionMap, RoleBaseStateTransitionMapping, FetchCreditBalanceRequestPayload, CreditBalanceInfo, FetchCreditBalanceResponsePayload, RefundModeConfigRequestPayload, RefundOption, RefundModeFormat, RefundModeInfo, RefundModeConfigResponsePayload, AttachUserOtpData, AttachUserInfo, AttachOrderUser, AttachOrderUserResponseSchema, SendUserMobileOTP, PointBlankOtpData, SendUserMobileOtpResponseSchema, VerifyOtpData, VerifyMobileOTP, VerifyOtpResponseData, VerifyOtpResponseSchema, BulkReportsFiltersSchema, BulkReportsDownloadRequestSchema, BulkReportsDownloadResponseSchema, APIFailedResponseSchema, BulkStateTransistionRequestSchema, BulkStateTransistionResponseSchema, ShipmentActionInfo, BulkActionListingData, BulkListinPage, BulkListingResponseSchema, JobDetailsData, JobDetailsResponseSchema, JobFailedResponseSchema, ManifestPageInfo, ManifestItemDetails, ManifestShipmentListing, DateRange, Filters, ManifestFile, ManifestMediaUpdate, PDFMeta, TotalShipmentPricesCount, ManifestMeta, Manifest, ManifestList, ManifestDetails, FiltersRequestSchema, ProcessManifest, ProcessManifestResponseSchema, ProcessManifestItemResponseSchema, FilterInfoOption, FiltersInfo, ManifestFiltersResponseSchema, PageDetails, EInvoiceIrnDetails, EInvoiceErrorDetails, EInvoiceDetails, EInvoiceResponseData, EInvoiceRetry, EInvoiceRetryResponseSchema, EInvoiceErrorInfo, EInvoiceErrorResponseData, EInvoiceErrorResponseSchema, EInvoiceErrorResponseDetails, EInvoiceRetryShipmentData, CourierPartnerTrackingDetails, CourierPartnerTrackingResponseSchema, LogsChannelDetails, LogPaymentDetails, FailedOrdersItem, FailedOrderLogs, FailedOrderLogDetails, GenerateInvoiceIDResponseData, GenerateInvoiceIDErrorResponseData, GenerateInvoiceIDRequestSchema, GenerateInvoiceIDResponseSchema, GenerateInvoiceIDErrorResponseSchema, ManifestResponseSchema, ProcessManifestRequestSchema, ManifestItems, ManifestErrorResponseSchema, ConfigData, ConfigUpdatedResponseSchema, FlagData, Flags, Filter, PostHook, PreHook, Config, TransitionConfigCondition, TransitionConfigData, TransitionConfigPayload, RuleListRequestSchema, RuleErrorResponseSchema, RMAPageInfo, RuleAction, QuestionSetItem, Reason, Conditions, RuleItem, RuleError, RuleListResponseSchema, UpdateShipmentPaymentMode, CommonErrorResponseSchema, ExceptionErrorResponseSchema, ProductSchema, PaymentMethodSchema, ActionDetailSchema, PaymentMetaDataSchema, PaymentMetaLogoURLSchema, ValidationError, Page, BagReasonMeta, QuestionSet, BagReasons, ShipmentBagReasons, ShipmentStatus, UserDataInfo, Address, ShipmentListingChannel, Prices, ChargeDistributionSchema, ChargeDistributionLogic, ChargeAmountCurrency, ChargeAmount, PriceAdjustmentCharge, OrderingCurrencyPrices, Identifier, FinancialBreakup, GSTDetailsData, BagStateMapper, BagStatusHistory, Dimensions, ReturnConfig, Weight, Article, ShipmentListingBrand, ReplacementDetails, AffiliateMeta, AffiliateBagDetails, PlatformArticleAttributes, PlatformItem, Dates, BagReturnableCancelableStatus, BagUnit, ShipmentItemFulFillingStore, Currency, OrderingCurrency, ConversionRate, CurrencyInfo, ShipmentItem, ShipmentInternalPlatformViewResponseSchema, 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, PriceMinMax, ItemPriceDetails, FreeGiftItems, AppliedFreeArticles, AppliedPromos, CurrentStatus, OrderBags, FulfillingStore, ShipmentPayments, ShipmentStatusData, ShipmentLockDetails, PlatformShipment, ShipmentInfoResponseSchema, TaxDetails, PaymentInfoData, CurrencySchema, OrderData, OrderDetailsResponseSchema, SubLane, SuperLane, LaneConfigResponseSchema, PlatformBreakupValues, PlatformChannel, PlatformOrderItems, OrderListingResponseSchema, PlatformTrack, PlatformShipmentTrack, AdvanceFilterInfo, FiltersResponseSchema, URL, FileResponseSchema, BulkActionTemplate, BulkActionTemplateResponseSchema, PlatformShipmentReasonsResponseSchema, ShipmentResponseReasons, ShipmentReasonsResponseSchema, StoreAddress, EInvoicePortalDetails, StoreEinvoice, StoreEwaybill, StoreGstCredentials, Document, StoreDocuments, StoreMeta, Store, Brand, Item, ArticleStatusDetails, Company, ShipmentGstDetails, DeliverySlotDetails, InvoiceDetails, UserDetails, WeightData, BagDetails, BagDetailsPlatformResponseSchema, BagsPage, BagData, GetBagsPlatformResponseSchema, GeneratePosOrderReceiptResponseSchema, Templates, AllowedTemplatesResponseSchema, TemplateDownloadResponseSchema, Error, BulkFailedResponseSchema };
|
|
4896
4918
|
}
|
|
4897
4919
|
/** @returns {InvalidateShipmentCachePayload} */
|
|
4898
4920
|
declare function InvalidateShipmentCachePayload(): InvalidateShipmentCachePayload;
|
|
@@ -7864,6 +7886,55 @@ type VerifyOtpResponseSchema = {
|
|
|
7864
7886
|
message?: string;
|
|
7865
7887
|
data?: VerifyOtpResponseData;
|
|
7866
7888
|
};
|
|
7889
|
+
/** @returns {BulkReportsFiltersSchema} */
|
|
7890
|
+
declare function BulkReportsFiltersSchema(): BulkReportsFiltersSchema;
|
|
7891
|
+
type BulkReportsFiltersSchema = {
|
|
7892
|
+
/**
|
|
7893
|
+
* - Comma separated values of bag statuses(to
|
|
7894
|
+
* be deprecated).
|
|
7895
|
+
*/
|
|
7896
|
+
bag_status?: string;
|
|
7897
|
+
/**
|
|
7898
|
+
* - Comma separated values of
|
|
7899
|
+
* shipment's operational statuses.
|
|
7900
|
+
*/
|
|
7901
|
+
operational_status?: string;
|
|
7902
|
+
/**
|
|
7903
|
+
* - Comma separated values of store ids.
|
|
7904
|
+
*/
|
|
7905
|
+
stores?: string;
|
|
7906
|
+
/**
|
|
7907
|
+
* - Specifies the type of shipments to
|
|
7908
|
+
* retrieve. Use "1" for non-breached shipments and "-1" for breached shipments.
|
|
7909
|
+
*/
|
|
7910
|
+
time_to_dispatch?: string;
|
|
7911
|
+
/**
|
|
7912
|
+
* - Filters shipments by payment method.
|
|
7913
|
+
* Use "PREPAID" for shipments paid in advance, and "COD" for cash-on-delivery
|
|
7914
|
+
* shipments.
|
|
7915
|
+
*/
|
|
7916
|
+
payment_methods?: string;
|
|
7917
|
+
/**
|
|
7918
|
+
* - Comma separated values of delivery partners.
|
|
7919
|
+
* Either dp_id or slug(extension_id|scheme_id).
|
|
7920
|
+
*/
|
|
7921
|
+
dp_ids?: string;
|
|
7922
|
+
/**
|
|
7923
|
+
* - Comma separated values of sales channels ids.
|
|
7924
|
+
*/
|
|
7925
|
+
sales_channels?: string;
|
|
7926
|
+
/**
|
|
7927
|
+
* - A comma-separated list of tags associated with
|
|
7928
|
+
* the entity. Each tag is a keyword or label that categorizes or describes the entity.
|
|
7929
|
+
*/
|
|
7930
|
+
tags?: string;
|
|
7931
|
+
/**
|
|
7932
|
+
* - Indicates the lock status of the entity.
|
|
7933
|
+
* "true" means the shipment is in a complete or partial lock state, while
|
|
7934
|
+
* "false" means it is unlocked.
|
|
7935
|
+
*/
|
|
7936
|
+
lock_status?: string;
|
|
7937
|
+
};
|
|
7867
7938
|
/** @returns {BulkReportsDownloadRequestSchema} */
|
|
7868
7939
|
declare function BulkReportsDownloadRequestSchema(): BulkReportsDownloadRequestSchema;
|
|
7869
7940
|
type BulkReportsDownloadRequestSchema = {
|
|
@@ -7916,6 +7987,7 @@ type BulkReportsDownloadRequestSchema = {
|
|
|
7916
7987
|
* users to define custom filters specific to the lanes being reported on.
|
|
7917
7988
|
*/
|
|
7918
7989
|
custom_filters_for_lane?: any;
|
|
7990
|
+
filters?: BulkReportsFiltersSchema;
|
|
7919
7991
|
};
|
|
7920
7992
|
/** @returns {BulkReportsDownloadResponseSchema} */
|
|
7921
7993
|
declare function BulkReportsDownloadResponseSchema(): BulkReportsDownloadResponseSchema;
|
|
@@ -1648,6 +1648,28 @@ const Joi = require("joi");
|
|
|
1648
1648
|
* @property {VerifyOtpResponseData} [data]
|
|
1649
1649
|
*/
|
|
1650
1650
|
|
|
1651
|
+
/**
|
|
1652
|
+
* @typedef BulkReportsFiltersSchema
|
|
1653
|
+
* @property {string} [bag_status] - Comma separated values of bag statuses(to
|
|
1654
|
+
* be deprecated).
|
|
1655
|
+
* @property {string} [operational_status] - Comma separated values of
|
|
1656
|
+
* shipment's operational statuses.
|
|
1657
|
+
* @property {string} [stores] - Comma separated values of store ids.
|
|
1658
|
+
* @property {string} [time_to_dispatch] - Specifies the type of shipments to
|
|
1659
|
+
* retrieve. Use "1" for non-breached shipments and "-1" for breached shipments.
|
|
1660
|
+
* @property {string} [payment_methods] - Filters shipments by payment method.
|
|
1661
|
+
* Use "PREPAID" for shipments paid in advance, and "COD" for cash-on-delivery
|
|
1662
|
+
* shipments.
|
|
1663
|
+
* @property {string} [dp_ids] - Comma separated values of delivery partners.
|
|
1664
|
+
* Either dp_id or slug(extension_id|scheme_id).
|
|
1665
|
+
* @property {string} [sales_channels] - Comma separated values of sales channels ids.
|
|
1666
|
+
* @property {string} [tags] - A comma-separated list of tags associated with
|
|
1667
|
+
* the entity. Each tag is a keyword or label that categorizes or describes the entity.
|
|
1668
|
+
* @property {string} [lock_status] - Indicates the lock status of the entity.
|
|
1669
|
+
* "true" means the shipment is in a complete or partial lock state, while
|
|
1670
|
+
* "false" means it is unlocked.
|
|
1671
|
+
*/
|
|
1672
|
+
|
|
1651
1673
|
/**
|
|
1652
1674
|
* @typedef BulkReportsDownloadRequestSchema
|
|
1653
1675
|
* @property {string[]} [store_ids] - A list of specific store IDs for which the
|
|
@@ -1669,6 +1691,7 @@ const Joi = require("joi");
|
|
|
1669
1691
|
* should include data from cross-company operations.
|
|
1670
1692
|
* @property {Object} [custom_filters_for_lane] - A flexible object that allows
|
|
1671
1693
|
* users to define custom filters specific to the lanes being reported on.
|
|
1694
|
+
* @property {BulkReportsFiltersSchema} [filters]
|
|
1672
1695
|
*/
|
|
1673
1696
|
|
|
1674
1697
|
/**
|
|
@@ -6812,6 +6835,21 @@ class OrderPlatformModel {
|
|
|
6812
6835
|
});
|
|
6813
6836
|
}
|
|
6814
6837
|
|
|
6838
|
+
/** @returns {BulkReportsFiltersSchema} */
|
|
6839
|
+
static BulkReportsFiltersSchema() {
|
|
6840
|
+
return Joi.object({
|
|
6841
|
+
bag_status: Joi.string().allow(""),
|
|
6842
|
+
operational_status: Joi.string().allow(""),
|
|
6843
|
+
stores: Joi.string().allow(""),
|
|
6844
|
+
time_to_dispatch: Joi.string().allow(""),
|
|
6845
|
+
payment_methods: Joi.string().allow(""),
|
|
6846
|
+
dp_ids: Joi.string().allow(""),
|
|
6847
|
+
sales_channels: Joi.string().allow(""),
|
|
6848
|
+
tags: Joi.string().allow(""),
|
|
6849
|
+
lock_status: Joi.string().allow(""),
|
|
6850
|
+
});
|
|
6851
|
+
}
|
|
6852
|
+
|
|
6815
6853
|
/** @returns {BulkReportsDownloadRequestSchema} */
|
|
6816
6854
|
static BulkReportsDownloadRequestSchema() {
|
|
6817
6855
|
return Joi.object({
|
|
@@ -6825,6 +6863,7 @@ class OrderPlatformModel {
|
|
|
6825
6863
|
filter_type: Joi.string().allow(""),
|
|
6826
6864
|
is_cross_company_enabled: Joi.boolean(),
|
|
6827
6865
|
custom_filters_for_lane: Joi.object().pattern(/\S/, Joi.any()),
|
|
6866
|
+
filters: OrderPlatformModel.BulkReportsFiltersSchema(),
|
|
6828
6867
|
});
|
|
6829
6868
|
}
|
|
6830
6869
|
|
|
@@ -258,6 +258,10 @@ export = OrderPlatformValidator;
|
|
|
258
258
|
* @property {boolean} [enforceDateFilter] - Applies a date filter for listing
|
|
259
259
|
* orders. This is useful when fetching data for a specific date range while
|
|
260
260
|
* performing searches.
|
|
261
|
+
* @property {string} [fulfillmentType] - Define the Fulfillment Type for
|
|
262
|
+
* Listing Orders, This is use when we want to get list of shipments or orders
|
|
263
|
+
* by cross store or cross company or fulfilling Store (by default), this is
|
|
264
|
+
* also depends on the login user accessType and store access
|
|
261
265
|
*/
|
|
262
266
|
/** @typedef GetRoleBasedActionsParam */
|
|
263
267
|
/**
|
|
@@ -345,6 +349,10 @@ export = OrderPlatformValidator;
|
|
|
345
349
|
* @property {boolean} [enforceDateFilter] - Applies a date filter for listing
|
|
346
350
|
* shipments. This is useful when fetching data for a specific date range
|
|
347
351
|
* while performing searches.
|
|
352
|
+
* @property {string} [fulfillmentType] - Define the Fulfillment Type for
|
|
353
|
+
* Listing Orders, This is use when we want to get list of shipments or orders
|
|
354
|
+
* by cross store or cross company or fulfilling Store (by default), this is
|
|
355
|
+
* also depends on the login user accessType and store access
|
|
348
356
|
*/
|
|
349
357
|
/**
|
|
350
358
|
* @typedef GetStateManagerConfigParam
|
|
@@ -1077,6 +1085,13 @@ type GetOrdersParam = {
|
|
|
1077
1085
|
* performing searches.
|
|
1078
1086
|
*/
|
|
1079
1087
|
enforceDateFilter?: boolean;
|
|
1088
|
+
/**
|
|
1089
|
+
* - Define the Fulfillment Type for
|
|
1090
|
+
* Listing Orders, This is use when we want to get list of shipments or orders
|
|
1091
|
+
* by cross store or cross company or fulfilling Store (by default), this is
|
|
1092
|
+
* also depends on the login user accessType and store access
|
|
1093
|
+
*/
|
|
1094
|
+
fulfillmentType?: string;
|
|
1080
1095
|
};
|
|
1081
1096
|
type GetShipmentByIdParam = {
|
|
1082
1097
|
/**
|
|
@@ -1285,6 +1300,13 @@ type GetShipmentsParam = {
|
|
|
1285
1300
|
* while performing searches.
|
|
1286
1301
|
*/
|
|
1287
1302
|
enforceDateFilter?: boolean;
|
|
1303
|
+
/**
|
|
1304
|
+
* - Define the Fulfillment Type for
|
|
1305
|
+
* Listing Orders, This is use when we want to get list of shipments or orders
|
|
1306
|
+
* by cross store or cross company or fulfilling Store (by default), this is
|
|
1307
|
+
* also depends on the login user accessType and store access
|
|
1308
|
+
*/
|
|
1309
|
+
fulfillmentType?: string;
|
|
1288
1310
|
};
|
|
1289
1311
|
type GetStateManagerConfigParam = {
|
|
1290
1312
|
/**
|
|
@@ -292,6 +292,10 @@ const OrderPlatformModel = require("./OrderPlatformModel");
|
|
|
292
292
|
* @property {boolean} [enforceDateFilter] - Applies a date filter for listing
|
|
293
293
|
* orders. This is useful when fetching data for a specific date range while
|
|
294
294
|
* performing searches.
|
|
295
|
+
* @property {string} [fulfillmentType] - Define the Fulfillment Type for
|
|
296
|
+
* Listing Orders, This is use when we want to get list of shipments or orders
|
|
297
|
+
* by cross store or cross company or fulfilling Store (by default), this is
|
|
298
|
+
* also depends on the login user accessType and store access
|
|
295
299
|
*/
|
|
296
300
|
|
|
297
301
|
/** @typedef GetRoleBasedActionsParam */
|
|
@@ -384,6 +388,10 @@ const OrderPlatformModel = require("./OrderPlatformModel");
|
|
|
384
388
|
* @property {boolean} [enforceDateFilter] - Applies a date filter for listing
|
|
385
389
|
* shipments. This is useful when fetching data for a specific date range
|
|
386
390
|
* while performing searches.
|
|
391
|
+
* @property {string} [fulfillmentType] - Define the Fulfillment Type for
|
|
392
|
+
* Listing Orders, This is use when we want to get list of shipments or orders
|
|
393
|
+
* by cross store or cross company or fulfilling Store (by default), this is
|
|
394
|
+
* also depends on the login user accessType and store access
|
|
387
395
|
*/
|
|
388
396
|
|
|
389
397
|
/**
|
|
@@ -807,6 +815,7 @@ class OrderPlatformValidator {
|
|
|
807
815
|
allowInactive: Joi.boolean(),
|
|
808
816
|
groupEntity: Joi.string().allow(""),
|
|
809
817
|
enforceDateFilter: Joi.boolean(),
|
|
818
|
+
fulfillmentType: Joi.string().allow(""),
|
|
810
819
|
}).required();
|
|
811
820
|
}
|
|
812
821
|
|
|
@@ -878,6 +887,7 @@ class OrderPlatformValidator {
|
|
|
878
887
|
orderType: Joi.string().allow(""),
|
|
879
888
|
groupEntity: Joi.string().allow(""),
|
|
880
889
|
enforceDateFilter: Joi.boolean(),
|
|
890
|
+
fulfillmentType: Joi.string().allow(""),
|
|
881
891
|
}).required();
|
|
882
892
|
}
|
|
883
893
|
|
|
@@ -39,6 +39,20 @@ declare class Serviceability {
|
|
|
39
39
|
* @description: Creates a courier partner account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createCourierPartnerAccount/).
|
|
40
40
|
*/
|
|
41
41
|
createCourierPartnerAccount({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccount>;
|
|
42
|
+
/**
|
|
43
|
+
* @param {ServiceabilityPlatformValidator.CreateCourierPartnerSchemeParam} arg
|
|
44
|
+
* - Arg object
|
|
45
|
+
*
|
|
46
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
47
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
48
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerV2SchemeModel>}
|
|
49
|
+
* - Success response
|
|
50
|
+
*
|
|
51
|
+
* @name createCourierPartnerScheme
|
|
52
|
+
* @summary: Create Scheme for courier partner extension
|
|
53
|
+
* @description: Create Scheme for courier partner extension - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/createCourierPartnerScheme/).
|
|
54
|
+
*/
|
|
55
|
+
createCourierPartnerScheme({ body, requestHeaders }?: ServiceabilityPlatformValidator.CreateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerV2SchemeModel>;
|
|
42
56
|
/**
|
|
43
57
|
* @param {ServiceabilityPlatformValidator.CreatePackageMaterialParam} arg
|
|
44
58
|
* - Arg object
|
|
@@ -120,6 +134,16 @@ declare class Serviceability {
|
|
|
120
134
|
* @description: Retrieves information about the delivery setup for a company - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCompanyConfiguration/).
|
|
121
135
|
*/
|
|
122
136
|
getCompanyConfiguration({ requestHeaders }?: any, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyConfig>;
|
|
137
|
+
/**
|
|
138
|
+
* @param {ServiceabilityPlatformValidator.GetCountriesParam} arg - Arg object
|
|
139
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
140
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
141
|
+
* @returns {Promise<ServiceabilityPlatformModel.GetCountries>} - Success response
|
|
142
|
+
* @name getCountries
|
|
143
|
+
* @summary: Get countries
|
|
144
|
+
* @description: Retrieve a list of countries for logistical purposes. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCountries/).
|
|
145
|
+
*/
|
|
146
|
+
getCountries({ onboarding, pageNo, pageSize, q, hierarchy, requestHeaders }?: ServiceabilityPlatformValidator.GetCountriesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.GetCountries>;
|
|
123
147
|
/**
|
|
124
148
|
* @param {ServiceabilityPlatformValidator.GetCourierPartnerAccountParam} arg
|
|
125
149
|
* - Arg object
|
|
@@ -147,6 +171,34 @@ declare class Serviceability {
|
|
|
147
171
|
* @description: Retrieves a list of courier partner accounts. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerAccounts/).
|
|
148
172
|
*/
|
|
149
173
|
getCourierPartnerAccounts({ pageNo, pageSize, stage, paymentMode, transportType, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerAccountsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CompanyCourierPartnerAccountListResult>;
|
|
174
|
+
/**
|
|
175
|
+
* @param {ServiceabilityPlatformValidator.GetCourierPartnerSchemeParam} arg
|
|
176
|
+
* - Arg object
|
|
177
|
+
*
|
|
178
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
179
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
180
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerV2SchemeModel>}
|
|
181
|
+
* - Success response
|
|
182
|
+
*
|
|
183
|
+
* @name getCourierPartnerScheme
|
|
184
|
+
* @summary: Get Scheme for courier partner extension by Id
|
|
185
|
+
* @description: Update Scheme for courier partner extension by Id - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerScheme/).
|
|
186
|
+
*/
|
|
187
|
+
getCourierPartnerScheme({ schemeId, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerV2SchemeModel>;
|
|
188
|
+
/**
|
|
189
|
+
* @param {ServiceabilityPlatformValidator.GetCourierPartnerSchemesParam} arg
|
|
190
|
+
* - Arg object
|
|
191
|
+
*
|
|
192
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
193
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
194
|
+
* @returns {Promise<ServiceabilityPlatformModel.courierPartnerSchemeV2List>}
|
|
195
|
+
* - Success response
|
|
196
|
+
*
|
|
197
|
+
* @name getCourierPartnerSchemes
|
|
198
|
+
* @summary: Get created Schemes for courier partner
|
|
199
|
+
* @description: Get created Schemes for courier partner - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getCourierPartnerSchemes/).
|
|
200
|
+
*/
|
|
201
|
+
getCourierPartnerSchemes({ schemeType, paymentMode, capabilities, schemeIds, requestHeaders }?: ServiceabilityPlatformValidator.GetCourierPartnerSchemesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.courierPartnerSchemeV2List>;
|
|
150
202
|
/**
|
|
151
203
|
* @param {ServiceabilityPlatformValidator.GetOptimalLocationsParam} arg - Arg object
|
|
152
204
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -209,6 +261,20 @@ declare class Serviceability {
|
|
|
209
261
|
* @description: Retrieve a single packaging material - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getPackageMaterials/).
|
|
210
262
|
*/
|
|
211
263
|
getPackageMaterials({ packageMaterialId, requestHeaders }?: ServiceabilityPlatformValidator.GetPackageMaterialsParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.PackageMaterialResult>;
|
|
264
|
+
/**
|
|
265
|
+
* @param {ServiceabilityPlatformValidator.GetSampleFileServiceabilityStatusParam} arg
|
|
266
|
+
* - Arg object
|
|
267
|
+
*
|
|
268
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
269
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
270
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResult>}
|
|
271
|
+
* - Success response
|
|
272
|
+
*
|
|
273
|
+
* @name getSampleFileServiceabilityStatus
|
|
274
|
+
* @summary: Get Serviceability TAT sample files generator status
|
|
275
|
+
* @description: Get Serviceability TAT sample file generator status - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getSampleFileServiceabilityStatus/).
|
|
276
|
+
*/
|
|
277
|
+
getSampleFileServiceabilityStatus({ pageNo, pageSize, batchId, requestHeaders }?: ServiceabilityPlatformValidator.GetSampleFileServiceabilityStatusParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResult>;
|
|
212
278
|
/**
|
|
213
279
|
* @param {ServiceabilityPlatformValidator.GetServiceabilityParam} arg - Arg object
|
|
214
280
|
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
@@ -241,6 +307,20 @@ declare class Serviceability {
|
|
|
241
307
|
* @description: Retrieves a list of delivery zones. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/getZones/).
|
|
242
308
|
*/
|
|
243
309
|
getZones({ pageNo, pageSize, isActive, channelId, q, countryIsoCode, state, city, pincode, sector, requestHeaders, }?: ServiceabilityPlatformValidator.GetZonesParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.ListViewResult>;
|
|
310
|
+
/**
|
|
311
|
+
* @param {ServiceabilityPlatformValidator.SampleFileServiceabilityParam} arg
|
|
312
|
+
* - Arg object
|
|
313
|
+
*
|
|
314
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
315
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
316
|
+
* @returns {Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResultItemData>}
|
|
317
|
+
* - Success response
|
|
318
|
+
*
|
|
319
|
+
* @name sampleFileServiceability
|
|
320
|
+
* @summary: Sample File Download
|
|
321
|
+
* @description: Sample File Download - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/sampleFileServiceability/).
|
|
322
|
+
*/
|
|
323
|
+
sampleFileServiceability({ body, requestHeaders }?: ServiceabilityPlatformValidator.SampleFileServiceabilityParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.BulkRegionServiceabilityTatResultItemData>;
|
|
244
324
|
/**
|
|
245
325
|
* @param {ServiceabilityPlatformValidator.UpdateCompanyConfigurationParam} arg
|
|
246
326
|
* - Arg object
|
|
@@ -266,6 +346,20 @@ declare class Serviceability {
|
|
|
266
346
|
* @description: Updates an existing courier partner account. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCourierPartnerAccount/).
|
|
267
347
|
*/
|
|
268
348
|
updateCourierPartnerAccount({ accountId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCourierPartnerAccountParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierAccountResult>;
|
|
349
|
+
/**
|
|
350
|
+
* @param {ServiceabilityPlatformValidator.UpdateCourierPartnerSchemeParam} arg
|
|
351
|
+
* - Arg object
|
|
352
|
+
*
|
|
353
|
+
* @param {object} [arg.requestHeaders={}] - Request headers. Default is `{}`
|
|
354
|
+
* @param {import("../PlatformAPIClient").Options} - Options
|
|
355
|
+
* @returns {Promise<ServiceabilityPlatformModel.CourierPartnerV2SchemeModel>}
|
|
356
|
+
* - Success response
|
|
357
|
+
*
|
|
358
|
+
* @name updateCourierPartnerScheme
|
|
359
|
+
* @summary: Update Scheme for courier partner extension
|
|
360
|
+
* @description: Update Scheme for courier partner extension - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/serviceability/updateCourierPartnerScheme/).
|
|
361
|
+
*/
|
|
362
|
+
updateCourierPartnerScheme({ schemeId, body, requestHeaders }?: ServiceabilityPlatformValidator.UpdateCourierPartnerSchemeParam, { responseHeaders }?: object): Promise<ServiceabilityPlatformModel.CourierPartnerV2SchemeModel>;
|
|
269
363
|
/**
|
|
270
364
|
* @param {ServiceabilityPlatformValidator.UpdatePackageMaterialRuleParam} arg
|
|
271
365
|
* - Arg object
|