@gofynd/fdk-client-javascript 1.4.2-beta.3 → 1.4.2-beta.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (152) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +62 -62
  4. package/sdk/application/Cart/CartApplicationClient.js +82 -71
  5. package/sdk/application/Cart/CartApplicationValidator.d.ts +189 -34
  6. package/sdk/application/Cart/CartApplicationValidator.js +59 -34
  7. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +78 -78
  8. package/sdk/application/Catalog/CatalogApplicationClient.js +78 -78
  9. package/sdk/application/Common/CommonApplicationClient.d.ts +4 -4
  10. package/sdk/application/Common/CommonApplicationClient.js +4 -4
  11. package/sdk/application/Communication/CommunicationApplicationClient.d.ts +6 -6
  12. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -6
  13. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +32 -67
  14. package/sdk/application/Configuration/ConfigurationApplicationClient.js +32 -106
  15. package/sdk/application/Content/ContentApplicationClient.d.ts +34 -64
  16. package/sdk/application/Content/ContentApplicationClient.js +34 -115
  17. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -42
  18. package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -42
  19. package/sdk/application/Lead/LeadApplicationClient.d.ts +14 -14
  20. package/sdk/application/Lead/LeadApplicationClient.js +14 -14
  21. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +12 -12
  22. package/sdk/application/Logistic/LogisticApplicationClient.js +12 -12
  23. package/sdk/application/Order/OrderApplicationClient.d.ts +24 -24
  24. package/sdk/application/Order/OrderApplicationClient.js +24 -24
  25. package/sdk/application/Order/OrderApplicationModel.d.ts +29 -1
  26. package/sdk/application/Order/OrderApplicationModel.js +34 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.d.ts +89 -89
  28. package/sdk/application/Payment/PaymentApplicationClient.js +94 -94
  29. package/sdk/application/Payment/PaymentApplicationModel.d.ts +524 -3
  30. package/sdk/application/Payment/PaymentApplicationModel.js +335 -2
  31. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +5 -5
  32. package/sdk/application/Payment/PaymentApplicationValidator.js +3 -3
  33. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +54 -54
  34. package/sdk/application/PosCart/PosCartApplicationClient.js +54 -54
  35. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +14 -25
  36. package/sdk/application/Rewards/RewardsApplicationClient.js +14 -41
  37. package/sdk/application/Share/ShareApplicationClient.d.ts +14 -14
  38. package/sdk/application/Share/ShareApplicationClient.js +14 -14
  39. package/sdk/application/Theme/ThemeApplicationClient.d.ts +8 -8
  40. package/sdk/application/Theme/ThemeApplicationClient.js +8 -8
  41. package/sdk/application/User/UserApplicationClient.d.ts +66 -66
  42. package/sdk/application/User/UserApplicationClient.js +68 -71
  43. package/sdk/application/User/UserApplicationModel.d.ts +32 -27
  44. package/sdk/application/User/UserApplicationModel.js +22 -32
  45. package/sdk/partner/Theme/ThemePartnerClient.d.ts +38 -38
  46. package/sdk/partner/Theme/ThemePartnerClient.js +38 -38
  47. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.d.ts +8 -8
  48. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +8 -8
  49. package/sdk/platform/Billing/BillingPlatformClient.d.ts +34 -36
  50. package/sdk/platform/Billing/BillingPlatformClient.js +34 -36
  51. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +98 -175
  52. package/sdk/platform/Cart/CartPlatformApplicationClient.js +98 -254
  53. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +92 -18
  54. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +28 -18
  55. package/sdk/platform/Cart/CartPlatformModel.d.ts +12 -0
  56. package/sdk/platform/Cart/CartPlatformModel.js +12 -0
  57. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +221 -108
  58. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +460 -113
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +72 -3
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +46 -2
  61. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +335 -136
  62. package/sdk/platform/Catalog/CatalogPlatformClient.js +551 -136
  63. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +38 -5
  64. package/sdk/platform/Catalog/CatalogPlatformModel.js +47 -3
  65. package/sdk/platform/Common/CommonPlatformClient.d.ts +3 -3
  66. package/sdk/platform/Common/CommonPlatformClient.js +3 -3
  67. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +115 -290
  68. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +115 -510
  69. package/sdk/platform/Communication/CommunicationPlatformClient.d.ts +2 -13
  70. package/sdk/platform/Communication/CommunicationPlatformClient.js +2 -29
  71. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +32 -32
  72. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +32 -32
  73. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +52 -127
  74. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +52 -204
  75. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +35 -111
  76. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +35 -212
  77. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +142 -1
  78. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +96 -0
  79. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +130 -218
  80. package/sdk/platform/Content/ContentPlatformApplicationClient.js +136 -314
  81. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +4 -4
  82. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +4 -4
  83. package/sdk/platform/Content/ContentPlatformClient.d.ts +1 -1
  84. package/sdk/platform/Content/ContentPlatformClient.js +7 -7
  85. package/sdk/platform/Content/ContentPlatformModel.d.ts +18 -1
  86. package/sdk/platform/Content/ContentPlatformModel.js +20 -0
  87. package/sdk/platform/Content/ContentPlatformValidator.d.ts +4 -4
  88. package/sdk/platform/Content/ContentPlatformValidator.js +4 -4
  89. package/sdk/platform/Discount/DiscountPlatformClient.d.ts +22 -48
  90. package/sdk/platform/Discount/DiscountPlatformClient.js +22 -73
  91. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +20 -56
  92. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +23 -56
  93. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +2 -0
  94. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +2 -0
  95. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +12 -48
  96. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +12 -48
  97. package/sdk/platform/FileStorage/FileStoragePlatformModel.d.ts +15 -1
  98. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +14 -0
  99. package/sdk/platform/Finance/FinancePlatformClient.d.ts +44 -44
  100. package/sdk/platform/Finance/FinancePlatformClient.js +44 -44
  101. package/sdk/platform/Lead/LeadPlatformApplicationClient.d.ts +12 -12
  102. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +12 -12
  103. package/sdk/platform/Lead/LeadPlatformClient.d.ts +22 -48
  104. package/sdk/platform/Lead/LeadPlatformClient.js +22 -72
  105. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +4 -4
  106. package/sdk/platform/Order/OrderPlatformApplicationClient.js +4 -4
  107. package/sdk/platform/Order/OrderPlatformClient.d.ts +79 -208
  108. package/sdk/platform/Order/OrderPlatformClient.js +79 -294
  109. package/sdk/platform/Order/OrderPlatformModel.d.ts +42 -1
  110. package/sdk/platform/Order/OrderPlatformModel.js +44 -0
  111. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +4 -4
  112. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +4 -4
  113. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +4 -4
  114. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +2 -2
  115. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +81 -81
  116. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +81 -81
  117. package/sdk/platform/Payment/PaymentPlatformClient.d.ts +20 -20
  118. package/sdk/platform/Payment/PaymentPlatformClient.js +20 -20
  119. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +27 -1
  120. package/sdk/platform/Payment/PaymentPlatformModel.js +19 -0
  121. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +23 -40
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +23 -61
  123. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +8 -8
  124. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -8
  125. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +10 -9
  126. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +11 -10
  127. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +170 -33
  128. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +171 -38
  129. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +2 -2
  130. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +2 -2
  131. package/sdk/platform/Share/SharePlatformApplicationClient.d.ts +11 -11
  132. package/sdk/platform/Share/SharePlatformApplicationClient.js +29 -16
  133. package/sdk/platform/Share/SharePlatformApplicationValidator.d.ts +13 -3
  134. package/sdk/platform/Share/SharePlatformApplicationValidator.js +6 -2
  135. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +56 -56
  136. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +56 -56
  137. package/sdk/platform/Theme/ThemePlatformClient.d.ts +6 -6
  138. package/sdk/platform/Theme/ThemePlatformClient.js +6 -6
  139. package/sdk/platform/User/UserPlatformApplicationClient.d.ts +33 -33
  140. package/sdk/platform/User/UserPlatformApplicationClient.js +33 -33
  141. package/sdk/platform/User/UserPlatformModel.d.ts +81 -11
  142. package/sdk/platform/User/UserPlatformModel.js +80 -10
  143. package/sdk/platform/Webhook/WebhookPlatformClient.d.ts +32 -45
  144. package/sdk/platform/Webhook/WebhookPlatformClient.js +32 -45
  145. package/sdk/platform/Webhook/WebhookPlatformModel.d.ts +58 -1
  146. package/sdk/platform/Webhook/WebhookPlatformModel.js +66 -0
  147. package/sdk/public/Configuration/ConfigurationPublicClient.d.ts +2 -2
  148. package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -2
  149. package/sdk/public/Partner/PartnerPublicClient.d.ts +2 -2
  150. package/sdk/public/Partner/PartnerPublicClient.js +2 -2
  151. package/sdk/public/Webhook/WebhookPublicClient.d.ts +4 -4
  152. package/sdk/public/Webhook/WebhookPublicClient.js +4 -4
@@ -1549,6 +1549,7 @@ export = OrderPlatformModel;
1549
1549
  * @property {number} [discount]
1550
1550
  * @property {number} [fynd_credits]
1551
1551
  * @property {number} [gift_price]
1552
+ * @property {number} [amount_to_be_collected]
1552
1553
  */
1553
1554
  /**
1554
1555
  * @typedef Identifier
@@ -1584,6 +1585,7 @@ export = OrderPlatformModel;
1584
1585
  * @property {number} discount
1585
1586
  * @property {number} fynd_credits
1586
1587
  * @property {number} gst_tax_percentage
1588
+ * @property {number} [amount_to_be_collected]
1587
1589
  * @property {Identifier} identifiers
1588
1590
  * @property {number} total_units
1589
1591
  * @property {boolean} added_to_fynd_cash
@@ -1679,6 +1681,7 @@ export = OrderPlatformModel;
1679
1681
  * @property {string} [raw_meta]
1680
1682
  * @property {string} size
1681
1683
  * @property {boolean} [is_set]
1684
+ * @property {string[]} [tags]
1682
1685
  */
1683
1686
  /**
1684
1687
  * @typedef ShipmentListingBrand
@@ -1841,6 +1844,7 @@ export = OrderPlatformModel;
1841
1844
  * @property {boolean} [lock_status]
1842
1845
  * @property {string} [invoice_id]
1843
1846
  * @property {Object} [payment_methods]
1847
+ * @property {Object[]} [payment_info]
1844
1848
  * @property {string} [status_created_at]
1845
1849
  * @property {string} [status_created_ts]
1846
1850
  * @property {string} [display_name]
@@ -2104,6 +2108,7 @@ export = OrderPlatformModel;
2104
2108
  * @property {ReturnConfig} [return_config]
2105
2109
  * @property {string} [uid]
2106
2110
  * @property {string} [size]
2111
+ * @property {string[]} [tags]
2107
2112
  */
2108
2113
  /**
2109
2114
  * @typedef OrderBrandName
@@ -2182,6 +2187,7 @@ export = OrderPlatformModel;
2182
2187
  * @property {AffiliateBagsDetails} [affiliate_bag_details]
2183
2188
  * @property {PlatformItem} [item]
2184
2189
  * @property {BagPaymentMethods[]} [payment_methods]
2190
+ * @property {BagPaymentMethods[]} [payment_info]
2185
2191
  * @property {number} [quantity]
2186
2192
  * @property {string} [identifier]
2187
2193
  * @property {boolean} [can_return]
@@ -2269,6 +2275,7 @@ export = OrderPlatformModel;
2269
2275
  * @property {DPDetailsData} [dp_details]
2270
2276
  * @property {string} [invoice_id]
2271
2277
  * @property {Object} [payment_methods]
2278
+ * @property {Object[]} [payment_info]
2272
2279
  * @property {Object} [coupon]
2273
2280
  * @property {AffiliateDetails} [affiliate_details]
2274
2281
  * @property {string} [priority_text]
@@ -2312,6 +2319,18 @@ export = OrderPlatformModel;
2312
2319
  * @property {string} [pan_no]
2313
2320
  * @property {string} [gstin]
2314
2321
  */
2322
+ /**
2323
+ * @typedef PaymentInfoData
2324
+ * @property {Object} [meta]
2325
+ * @property {string} [mode]
2326
+ * @property {string} [name]
2327
+ * @property {number} [amount]
2328
+ * @property {boolean} [collected]
2329
+ * @property {string} [refund_by]
2330
+ * @property {string} [collect_by]
2331
+ * @property {string} [display_name]
2332
+ * @property {string} [merchant_transaction_id]
2333
+ */
2315
2334
  /**
2316
2335
  * @typedef OrderData
2317
2336
  * @property {string} order_date
@@ -2321,6 +2340,7 @@ export = OrderPlatformModel;
2321
2340
  * @property {string} fynd_order_id
2322
2341
  * @property {Prices} [prices]
2323
2342
  * @property {Object} [payment_methods]
2343
+ * @property {PaymentInfoData[]} [payment_info]
2324
2344
  */
2325
2345
  /**
2326
2346
  * @typedef OrderDetailsResponse
@@ -2810,7 +2830,7 @@ export = OrderPlatformModel;
2810
2830
  declare class OrderPlatformModel {
2811
2831
  }
2812
2832
  declare namespace OrderPlatformModel {
2813
- 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, 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 };
2833
+ 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 };
2814
2834
  }
2815
2835
  /** @returns {InvalidateShipmentCachePayload} */
2816
2836
  declare function InvalidateShipmentCachePayload(): InvalidateShipmentCachePayload;
@@ -4849,6 +4869,7 @@ type Prices = {
4849
4869
  discount?: number;
4850
4870
  fynd_credits?: number;
4851
4871
  gift_price?: number;
4872
+ amount_to_be_collected?: number;
4852
4873
  };
4853
4874
  /** @returns {Identifier} */
4854
4875
  declare function Identifier(): Identifier;
@@ -4886,6 +4907,7 @@ type FinancialBreakup = {
4886
4907
  discount: number;
4887
4908
  fynd_credits: number;
4888
4909
  gst_tax_percentage: number;
4910
+ amount_to_be_collected?: number;
4889
4911
  identifiers: Identifier;
4890
4912
  total_units: number;
4891
4913
  added_to_fynd_cash: boolean;
@@ -4988,6 +5010,7 @@ type Article = {
4988
5010
  raw_meta?: string;
4989
5011
  size: string;
4990
5012
  is_set?: boolean;
5013
+ tags?: string[];
4991
5014
  };
4992
5015
  /** @returns {ShipmentListingBrand} */
4993
5016
  declare function ShipmentListingBrand(): ShipmentListingBrand;
@@ -5165,6 +5188,7 @@ type ShipmentItem = {
5165
5188
  lock_status?: boolean;
5166
5189
  invoice_id?: string;
5167
5190
  payment_methods?: any;
5191
+ payment_info?: any[];
5168
5192
  status_created_at?: string;
5169
5193
  status_created_ts?: string;
5170
5194
  display_name?: string;
@@ -5450,6 +5474,7 @@ type OrderBagArticle = {
5450
5474
  return_config?: ReturnConfig;
5451
5475
  uid?: string;
5452
5476
  size?: string;
5477
+ tags?: string[];
5453
5478
  };
5454
5479
  /** @returns {OrderBrandName} */
5455
5480
  declare function OrderBrandName(): OrderBrandName;
@@ -5537,6 +5562,7 @@ type OrderBags = {
5537
5562
  affiliate_bag_details?: AffiliateBagsDetails;
5538
5563
  item?: PlatformItem;
5539
5564
  payment_methods?: BagPaymentMethods[];
5565
+ payment_info?: BagPaymentMethods[];
5540
5566
  quantity?: number;
5541
5567
  identifier?: string;
5542
5568
  can_return?: boolean;
@@ -5629,6 +5655,7 @@ type PlatformShipment = {
5629
5655
  dp_details?: DPDetailsData;
5630
5656
  invoice_id?: string;
5631
5657
  payment_methods?: any;
5658
+ payment_info?: any[];
5632
5659
  coupon?: any;
5633
5660
  affiliate_details?: AffiliateDetails;
5634
5661
  priority_text?: string;
@@ -5674,6 +5701,19 @@ type TaxDetails = {
5674
5701
  pan_no?: string;
5675
5702
  gstin?: string;
5676
5703
  };
5704
+ /** @returns {PaymentInfoData} */
5705
+ declare function PaymentInfoData(): PaymentInfoData;
5706
+ type PaymentInfoData = {
5707
+ meta?: any;
5708
+ mode?: string;
5709
+ name?: string;
5710
+ amount?: number;
5711
+ collected?: boolean;
5712
+ refund_by?: string;
5713
+ collect_by?: string;
5714
+ display_name?: string;
5715
+ merchant_transaction_id?: string;
5716
+ };
5677
5717
  /** @returns {OrderData} */
5678
5718
  declare function OrderData(): OrderData;
5679
5719
  type OrderData = {
@@ -5684,6 +5724,7 @@ type OrderData = {
5684
5724
  fynd_order_id: string;
5685
5725
  prices?: Prices;
5686
5726
  payment_methods?: any;
5727
+ payment_info?: PaymentInfoData[];
5687
5728
  };
5688
5729
  /** @returns {OrderDetailsResponse} */
5689
5730
  declare function OrderDetailsResponse(): OrderDetailsResponse;
@@ -1742,6 +1742,7 @@ const Joi = require("joi");
1742
1742
  * @property {number} [discount]
1743
1743
  * @property {number} [fynd_credits]
1744
1744
  * @property {number} [gift_price]
1745
+ * @property {number} [amount_to_be_collected]
1745
1746
  */
1746
1747
 
1747
1748
  /**
@@ -1779,6 +1780,7 @@ const Joi = require("joi");
1779
1780
  * @property {number} discount
1780
1781
  * @property {number} fynd_credits
1781
1782
  * @property {number} gst_tax_percentage
1783
+ * @property {number} [amount_to_be_collected]
1782
1784
  * @property {Identifier} identifiers
1783
1785
  * @property {number} total_units
1784
1786
  * @property {boolean} added_to_fynd_cash
@@ -1881,6 +1883,7 @@ const Joi = require("joi");
1881
1883
  * @property {string} [raw_meta]
1882
1884
  * @property {string} size
1883
1885
  * @property {boolean} [is_set]
1886
+ * @property {string[]} [tags]
1884
1887
  */
1885
1888
 
1886
1889
  /**
@@ -2058,6 +2061,7 @@ const Joi = require("joi");
2058
2061
  * @property {boolean} [lock_status]
2059
2062
  * @property {string} [invoice_id]
2060
2063
  * @property {Object} [payment_methods]
2064
+ * @property {Object[]} [payment_info]
2061
2065
  * @property {string} [status_created_at]
2062
2066
  * @property {string} [status_created_ts]
2063
2067
  * @property {string} [display_name]
@@ -2343,6 +2347,7 @@ const Joi = require("joi");
2343
2347
  * @property {ReturnConfig} [return_config]
2344
2348
  * @property {string} [uid]
2345
2349
  * @property {string} [size]
2350
+ * @property {string[]} [tags]
2346
2351
  */
2347
2352
 
2348
2353
  /**
@@ -2430,6 +2435,7 @@ const Joi = require("joi");
2430
2435
  * @property {AffiliateBagsDetails} [affiliate_bag_details]
2431
2436
  * @property {PlatformItem} [item]
2432
2437
  * @property {BagPaymentMethods[]} [payment_methods]
2438
+ * @property {BagPaymentMethods[]} [payment_info]
2433
2439
  * @property {number} [quantity]
2434
2440
  * @property {string} [identifier]
2435
2441
  * @property {boolean} [can_return]
@@ -2522,6 +2528,7 @@ const Joi = require("joi");
2522
2528
  * @property {DPDetailsData} [dp_details]
2523
2529
  * @property {string} [invoice_id]
2524
2530
  * @property {Object} [payment_methods]
2531
+ * @property {Object[]} [payment_info]
2525
2532
  * @property {Object} [coupon]
2526
2533
  * @property {AffiliateDetails} [affiliate_details]
2527
2534
  * @property {string} [priority_text]
@@ -2568,6 +2575,19 @@ const Joi = require("joi");
2568
2575
  * @property {string} [gstin]
2569
2576
  */
2570
2577
 
2578
+ /**
2579
+ * @typedef PaymentInfoData
2580
+ * @property {Object} [meta]
2581
+ * @property {string} [mode]
2582
+ * @property {string} [name]
2583
+ * @property {number} [amount]
2584
+ * @property {boolean} [collected]
2585
+ * @property {string} [refund_by]
2586
+ * @property {string} [collect_by]
2587
+ * @property {string} [display_name]
2588
+ * @property {string} [merchant_transaction_id]
2589
+ */
2590
+
2571
2591
  /**
2572
2592
  * @typedef OrderData
2573
2593
  * @property {string} order_date
@@ -2577,6 +2597,7 @@ const Joi = require("joi");
2577
2597
  * @property {string} fynd_order_id
2578
2598
  * @property {Prices} [prices]
2579
2599
  * @property {Object} [payment_methods]
2600
+ * @property {PaymentInfoData[]} [payment_info]
2580
2601
  */
2581
2602
 
2582
2603
  /**
@@ -5265,6 +5286,7 @@ class OrderPlatformModel {
5265
5286
  discount: Joi.number().allow(null),
5266
5287
  fynd_credits: Joi.number().allow(null),
5267
5288
  gift_price: Joi.number().allow(null),
5289
+ amount_to_be_collected: Joi.number().allow(null),
5268
5290
  });
5269
5291
  }
5270
5292
 
@@ -5306,6 +5328,7 @@ class OrderPlatformModel {
5306
5328
  discount: Joi.number().required(),
5307
5329
  fynd_credits: Joi.number().required(),
5308
5330
  gst_tax_percentage: Joi.number().required(),
5331
+ amount_to_be_collected: Joi.number(),
5309
5332
  identifiers: OrderPlatformModel.Identifier().required(),
5310
5333
  total_units: Joi.number().required(),
5311
5334
  added_to_fynd_cash: Joi.boolean().required(),
@@ -5422,6 +5445,7 @@ class OrderPlatformModel {
5422
5445
  raw_meta: Joi.string().allow("").allow(null),
5423
5446
  size: Joi.string().allow("").required(),
5424
5447
  is_set: Joi.boolean().allow(null),
5448
+ tags: Joi.array().items(Joi.string().allow("")),
5425
5449
  });
5426
5450
  }
5427
5451
 
@@ -5631,6 +5655,7 @@ class OrderPlatformModel {
5631
5655
  lock_status: Joi.boolean().allow(null),
5632
5656
  invoice_id: Joi.string().allow("").allow(null),
5633
5657
  payment_methods: Joi.any().allow(null),
5658
+ payment_info: Joi.array().items(Joi.any()),
5634
5659
  status_created_at: Joi.string().allow(""),
5635
5660
  status_created_ts: Joi.string().allow(""),
5636
5661
  display_name: Joi.string().allow("").allow(null),
@@ -5960,6 +5985,7 @@ class OrderPlatformModel {
5960
5985
  return_config: OrderPlatformModel.ReturnConfig(),
5961
5986
  uid: Joi.string().allow("").allow(null),
5962
5987
  size: Joi.string().allow("").allow(null),
5988
+ tags: Joi.array().items(Joi.string().allow("")),
5963
5989
  });
5964
5990
  }
5965
5991
 
@@ -6067,6 +6093,7 @@ class OrderPlatformModel {
6067
6093
  payment_methods: Joi.array().items(
6068
6094
  OrderPlatformModel.BagPaymentMethods()
6069
6095
  ),
6096
+ payment_info: Joi.array().items(OrderPlatformModel.BagPaymentMethods()),
6070
6097
  quantity: Joi.number().allow(null),
6071
6098
  identifier: Joi.string().allow("").allow(null),
6072
6099
  can_return: Joi.boolean().allow(null),
@@ -6169,6 +6196,7 @@ class OrderPlatformModel {
6169
6196
  dp_details: OrderPlatformModel.DPDetailsData(),
6170
6197
  invoice_id: Joi.string().allow("").allow(null),
6171
6198
  payment_methods: Joi.any().allow(null),
6199
+ payment_info: Joi.array().items(Joi.any()),
6172
6200
  coupon: Joi.any().allow(null),
6173
6201
  affiliate_details: OrderPlatformModel.AffiliateDetails(),
6174
6202
  priority_text: Joi.string().allow("").allow(null),
@@ -6222,6 +6250,21 @@ class OrderPlatformModel {
6222
6250
  });
6223
6251
  }
6224
6252
 
6253
+ /** @returns {PaymentInfoData} */
6254
+ static PaymentInfoData() {
6255
+ return Joi.object({
6256
+ meta: Joi.any(),
6257
+ mode: Joi.string().allow(""),
6258
+ name: Joi.string().allow(""),
6259
+ amount: Joi.number(),
6260
+ collected: Joi.boolean(),
6261
+ refund_by: Joi.string().allow(""),
6262
+ collect_by: Joi.string().allow(""),
6263
+ display_name: Joi.string().allow(""),
6264
+ merchant_transaction_id: Joi.string().allow(""),
6265
+ });
6266
+ }
6267
+
6225
6268
  /** @returns {OrderData} */
6226
6269
  static OrderData() {
6227
6270
  return Joi.object({
@@ -6232,6 +6275,7 @@ class OrderPlatformModel {
6232
6275
  fynd_order_id: Joi.string().allow("").required(),
6233
6276
  prices: OrderPlatformModel.Prices(),
6234
6277
  payment_methods: Joi.any().allow(null),
6278
+ payment_info: Joi.array().items(OrderPlatformModel.PaymentInfoData()),
6235
6279
  });
6236
6280
  }
6237
6281
 
@@ -9,8 +9,8 @@ declare class Partner {
9
9
  * @param {import("../PlatformAPIClient").Options} - Options
10
10
  * @returns {Promise<PartnerPlatformModel.AddProxyResponse>} - Success response
11
11
  * @name addProxyPath
12
- * @summary: Create proxy URL for the external URL
13
- * @description: Use this API to generate proxy URL for the external URL - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/addProxyPath/).
12
+ * @summary: Add proxy path.
13
+ * @description: Create and add a new proxy path. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/addProxyPath/).
14
14
  */
15
15
  addProxyPath({ extensionId, body, requestHeaders }?: PartnerPlatformApplicationValidator.AddProxyPathParam, { responseHeaders }?: object): Promise<PartnerPlatformModel.AddProxyResponse>;
16
16
  /**
@@ -19,8 +19,8 @@ declare class Partner {
19
19
  * @param {import("../PlatformAPIClient").Options} - Options
20
20
  * @returns {Promise<PartnerPlatformModel.RemoveProxyResponse>} - Success response
21
21
  * @name removeProxyPath
22
- * @summary: Remove proxy URL for the external URL
23
- * @description: Use this API to remove the proxy URL which is already generated for the external URL - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/removeProxyPath/).
22
+ * @summary: Remove proxy path.
23
+ * @description: Delete a proxy path from the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/removeProxyPath/).
24
24
  */
25
25
  removeProxyPath({ extensionId, attachedPath, requestHeaders }?: PartnerPlatformApplicationValidator.RemoveProxyPathParam, { responseHeaders }?: object): Promise<PartnerPlatformModel.RemoveProxyResponse>;
26
26
  }
@@ -21,8 +21,8 @@ class Partner {
21
21
  * @param {import("../PlatformAPIClient").Options} - Options
22
22
  * @returns {Promise<PartnerPlatformModel.AddProxyResponse>} - Success response
23
23
  * @name addProxyPath
24
- * @summary: Create proxy URL for the external URL
25
- * @description: Use this API to generate proxy URL for the external URL - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/addProxyPath/).
24
+ * @summary: Add proxy path.
25
+ * @description: Create and add a new proxy path. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/addProxyPath/).
26
26
  */
27
27
  async addProxyPath(
28
28
  { extensionId, body, requestHeaders } = { requestHeaders: {} },
@@ -102,8 +102,8 @@ class Partner {
102
102
  * @param {import("../PlatformAPIClient").Options} - Options
103
103
  * @returns {Promise<PartnerPlatformModel.RemoveProxyResponse>} - Success response
104
104
  * @name removeProxyPath
105
- * @summary: Remove proxy URL for the external URL
106
- * @description: Use this API to remove the proxy URL which is already generated for the external URL - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/removeProxyPath/).
105
+ * @summary: Remove proxy path.
106
+ * @description: Delete a proxy path from the platform. - Check out [method documentation](https://partners.fynd.com/help/docs/sdk/platform/partner/removeProxyPath/).
107
107
  */
108
108
  async removeProxyPath(
109
109
  { extensionId, attachedPath, requestHeaders } = { requestHeaders: {} },
@@ -1,13 +1,13 @@
1
1
  export = PartnerPlatformApplicationValidator;
2
2
  /**
3
3
  * @typedef AddProxyPathParam
4
- * @property {string} extensionId - Extension id for which proxy URL will be generated
4
+ * @property {string} extensionId - Extension id for which a proxy URL will be generated
5
5
  * @property {PartnerPlatformModel.AddProxyReq} body
6
6
  */
7
7
  /**
8
8
  * @typedef RemoveProxyPathParam
9
9
  * @property {string} extensionId - Extension id for which proxy URL needs to be removed
10
- * @property {string} attachedPath - Attachaed path slug
10
+ * @property {string} attachedPath - Attached path slug
11
11
  */
12
12
  declare class PartnerPlatformApplicationValidator {
13
13
  /** @returns {AddProxyPathParam} */
@@ -20,7 +20,7 @@ declare namespace PartnerPlatformApplicationValidator {
20
20
  }
21
21
  type AddProxyPathParam = {
22
22
  /**
23
- * - Extension id for which proxy URL will be generated
23
+ * - Extension id for which a proxy URL will be generated
24
24
  */
25
25
  extensionId: string;
26
26
  body: PartnerPlatformModel.AddProxyReq;
@@ -31,7 +31,7 @@ type RemoveProxyPathParam = {
31
31
  */
32
32
  extensionId: string;
33
33
  /**
34
- * - Attachaed path slug
34
+ * - Attached path slug
35
35
  */
36
36
  attachedPath: string;
37
37
  };
@@ -4,14 +4,14 @@ const PartnerPlatformModel = require("./PartnerPlatformModel");
4
4
 
5
5
  /**
6
6
  * @typedef AddProxyPathParam
7
- * @property {string} extensionId - Extension id for which proxy URL will be generated
7
+ * @property {string} extensionId - Extension id for which a proxy URL will be generated
8
8
  * @property {PartnerPlatformModel.AddProxyReq} body
9
9
  */
10
10
 
11
11
  /**
12
12
  * @typedef RemoveProxyPathParam
13
13
  * @property {string} extensionId - Extension id for which proxy URL needs to be removed
14
- * @property {string} attachedPath - Attachaed path slug
14
+ * @property {string} attachedPath - Attached path slug
15
15
  */
16
16
 
17
17
  class PartnerPlatformApplicationValidator {