@gofynd/fdk-client-javascript 1.1.1 → 1.1.3

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 -2
  2. package/index.d.ts +4 -7
  3. package/index.js +5 -12
  4. package/package.json +1 -1
  5. package/sdk/application/ApplicationClient.d.ts +20 -20
  6. package/sdk/application/ApplicationClient.js +26 -26
  7. package/sdk/application/Cart/CartApplicationClient.d.ts +45 -4
  8. package/sdk/application/Cart/CartApplicationClient.js +169 -9
  9. package/sdk/application/Cart/CartApplicationModel.d.ts +15 -0
  10. package/sdk/application/Cart/CartApplicationModel.js +177 -1
  11. package/sdk/application/Cart/CartApplicationValidator.d.ts +2 -0
  12. package/sdk/application/Cart/CartApplicationValidator.js +20 -0
  13. package/sdk/application/Catalog/CatalogApplicationClient.d.ts +14 -4
  14. package/sdk/application/Catalog/CatalogApplicationClient.js +18 -6
  15. package/sdk/application/Catalog/CatalogApplicationModel.d.ts +1 -0
  16. package/sdk/application/Catalog/CatalogApplicationModel.js +13 -0
  17. package/sdk/application/Catalog/CatalogApplicationValidator.js +2 -0
  18. package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +14 -10
  19. package/sdk/application/Configuration/ConfigurationApplicationClient.js +16 -10
  20. package/sdk/application/Configuration/ConfigurationApplicationModel.js +1 -0
  21. package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
  22. package/sdk/application/Content/ContentApplicationModel.js +4 -1
  23. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +8 -2
  24. package/sdk/application/FileStorage/FileStorageApplicationClient.js +8 -2
  25. package/sdk/application/FileStorage/FileStorageApplicationModel.js +2 -2
  26. package/sdk/application/Logistic/LogisticApplicationModel.js +3 -2
  27. package/sdk/application/Order/OrderApplicationClient.d.ts +17 -2
  28. package/sdk/application/Order/OrderApplicationClient.js +70 -2
  29. package/sdk/application/Order/OrderApplicationModel.d.ts +17 -0
  30. package/sdk/application/Order/OrderApplicationModel.js +129 -8
  31. package/sdk/application/Order/OrderApplicationValidator.d.ts +1 -0
  32. package/sdk/application/Order/OrderApplicationValidator.js +7 -0
  33. package/sdk/application/Payment/PaymentApplicationClient.d.ts +35 -0
  34. package/sdk/application/Payment/PaymentApplicationClient.js +200 -0
  35. package/sdk/application/Payment/PaymentApplicationModel.d.ts +4 -0
  36. package/sdk/application/Payment/PaymentApplicationModel.js +58 -7
  37. package/sdk/application/Payment/PaymentApplicationValidator.d.ts +3 -0
  38. package/sdk/application/Payment/PaymentApplicationValidator.js +19 -0
  39. package/sdk/application/PosCart/PosCartApplicationClient.d.ts +16 -3
  40. package/sdk/application/PosCart/PosCartApplicationClient.js +39 -6
  41. package/sdk/application/PosCart/PosCartApplicationModel.d.ts +10 -0
  42. package/sdk/application/PosCart/PosCartApplicationModel.js +113 -1
  43. package/sdk/application/PosCart/PosCartApplicationValidator.js +6 -0
  44. package/sdk/application/Rewards/RewardsApplicationClient.d.ts +8 -8
  45. package/sdk/application/Rewards/RewardsApplicationClient.js +8 -8
  46. package/sdk/application/index.d.ts +10 -10
  47. package/sdk/application/index.js +13 -13
  48. package/sdk/common/AxiosHelper.js +1 -1
  49. package/sdk/common/Constant.d.ts +5 -0
  50. package/sdk/common/Constant.js +5 -0
  51. package/sdk/platform/Billing/BillingPlatformModel.js +6 -1
  52. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +479 -0
  53. package/sdk/platform/Cart/CartPlatformApplicationClient.js +2574 -307
  54. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +31 -0
  55. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +263 -0
  56. package/sdk/platform/Cart/CartPlatformModel.d.ts +61 -0
  57. package/sdk/platform/Cart/CartPlatformModel.js +697 -2
  58. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +8 -2
  59. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +10 -0
  60. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +1 -0
  61. package/sdk/platform/Catalog/CatalogPlatformClient.js +2 -2
  62. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1 -0
  63. package/sdk/platform/Catalog/CatalogPlatformModel.js +41 -29
  64. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1 -0
  65. package/sdk/platform/Communication/CommunicationPlatformModel.js +9 -0
  66. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +2 -2
  67. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +2 -2
  68. package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +5 -4
  69. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +99 -78
  70. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +99 -78
  71. package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +87 -71
  72. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +87 -71
  73. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +2 -0
  74. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +26 -0
  75. package/sdk/platform/Content/ContentPlatformModel.js +4 -1
  76. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +10 -4
  77. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +15 -9
  78. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.d.ts +1 -1
  79. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +1 -1
  80. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +8 -2
  81. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +8 -2
  82. package/sdk/platform/FileStorage/FileStoragePlatformModel.js +2 -2
  83. package/sdk/platform/Finance/FinancePlatformClient.d.ts +135 -0
  84. package/sdk/platform/Finance/FinancePlatformClient.js +853 -0
  85. package/sdk/platform/Finance/FinancePlatformModel.d.ts +51 -0
  86. package/sdk/platform/Finance/FinancePlatformModel.js +342 -0
  87. package/sdk/platform/Finance/FinancePlatformValidator.d.ts +16 -0
  88. package/sdk/platform/Finance/FinancePlatformValidator.js +84 -0
  89. package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +11 -1
  90. package/sdk/platform/Order/OrderPlatformApplicationClient.js +66 -2
  91. package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -0
  92. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -0
  93. package/sdk/platform/Order/OrderPlatformClient.d.ts +161 -81
  94. package/sdk/platform/Order/OrderPlatformClient.js +546 -119
  95. package/sdk/platform/Order/OrderPlatformModel.d.ts +42 -6
  96. package/sdk/platform/Order/OrderPlatformModel.js +570 -158
  97. package/sdk/platform/Order/OrderPlatformValidator.d.ts +6 -0
  98. package/sdk/platform/Order/OrderPlatformValidator.js +52 -10
  99. package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +22 -0
  100. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +127 -0
  101. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +2 -0
  102. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +13 -0
  103. package/sdk/platform/Partner/PartnerPlatformClient.d.ts +145 -0
  104. package/sdk/platform/Partner/PartnerPlatformClient.js +799 -0
  105. package/sdk/platform/Partner/PartnerPlatformModel.d.ts +39 -0
  106. package/sdk/platform/Partner/PartnerPlatformModel.js +367 -0
  107. package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +14 -0
  108. package/sdk/platform/Partner/PartnerPlatformValidator.js +87 -0
  109. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +221 -0
  110. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +1476 -190
  111. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +20 -0
  112. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +126 -0
  113. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +44 -0
  114. package/sdk/platform/Payment/PaymentPlatformModel.js +410 -0
  115. package/sdk/platform/PlatformApplicationClient.d.ts +1149 -930
  116. package/sdk/platform/PlatformApplicationClient.js +1260 -1027
  117. package/sdk/platform/PlatformClient.d.ts +10360 -8660
  118. package/sdk/platform/PlatformClient.js +11126 -9093
  119. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +14 -26
  120. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +14 -74
  121. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.d.ts +0 -1
  122. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +0 -7
  123. package/sdk/platform/index.d.ts +15 -14
  124. package/sdk/platform/index.js +20 -18
  125. package/sdk/public/PublicClient.d.ts +2 -2
  126. package/sdk/public/PublicClient.js +4 -4
  127. package/sdk/public/index.d.ts +1 -1
  128. package/sdk/public/index.js +2 -2
  129. package/partner.d.ts +0 -4
  130. package/partner.js +0 -7
  131. package/sdk/partner/OAuthClient.d.ts +0 -14
  132. package/sdk/partner/OAuthClient.js +0 -112
  133. package/sdk/partner/PartnerAPIClient.d.ts +0 -12
  134. package/sdk/partner/PartnerAPIClient.js +0 -42
  135. package/sdk/partner/PartnerClient.d.ts +0 -6
  136. package/sdk/partner/PartnerClient.js +0 -17
  137. package/sdk/partner/PartnerConfig.d.ts +0 -30
  138. package/sdk/partner/PartnerConfig.js +0 -39
  139. package/sdk/partner/index.d.ts +0 -3
  140. package/sdk/partner/index.js +0 -5
@@ -4,387 +4,94 @@ declare class PlatformApplicationClient {
4
4
  config: any;
5
5
  companyId: any;
6
6
  applicationId: any;
7
- lead: Lead;
8
- theme: Theme;
9
- user: User;
10
- content: Content;
11
- communication: Communication;
12
- payment: Payment;
13
- order: Order;
7
+ cart: Cart;
14
8
  catalog: Catalog;
15
- fileStorage: FileStorage;
16
- share: Share;
9
+ communication: Communication;
17
10
  configuration: Configuration;
18
- cart: Cart;
19
- rewards: Rewards;
11
+ content: Content;
12
+ fileStorage: FileStorage;
13
+ lead: Lead;
14
+ order: Order;
20
15
  partner: Partner;
16
+ payment: Payment;
17
+ rewards: Rewards;
18
+ share: Share;
19
+ theme: Theme;
20
+ user: User;
21
21
  setExtraHeaders(header: any): void;
22
22
  }
23
23
  declare namespace PlatformApplicationClient {
24
- export { Application, ApplicationAuth, ApplicationCors, ApplicationMeta, ApplicationRedirections, ApplicationResponse, ApplicationWebsite, BadRequest, Currency, Domain, LocationCountry, LocationDefaultCurrency, LocationDefaultLanguage, Locations, NotFound, Page, SecureUrl, AddTicketPayload, AgentChangePayload, CategoryData, CloseVideoRoomResponse, CommunicationDetails, CreateCustomFormPayload, CreatedOn, CreateVideoRoomPayload, CreateVideoRoomResponse, CustomForm, CustomFormList, CustomFormSubmissionPayload, Debug, EditCustomFormPayload, EditTicketPayload, Email, FeedbackForm, FeedbackResponseItem, Filter, GetParticipantsInsideVideoRoomResponse, GetTokenForVideoRoomResponse, IntegrationConfig, NotifyUser, Participant, PhoneNumber, PollForAssignment, Priority, Status, SubmitButton, SubmitCustomFormResponse, SupportGeneralConfig, Ticket, TicketAsset, TicketCategory, TicketContent, TicketContext, TicketFeedback, TicketFeedbackForm, TicketFeedbackList, TicketFeedbackPayload, TicketHistory, TicketHistoryList, TicketHistoryPayload, TicketList, TicketSubCategory, UserSchema, AddThemeRequestSchema, AllAvailablePageSchema, AssetsSchema, AvailablePagePredicate, AvailablePageRoutePredicate, AvailablePageSchema, AvailablePageSchemaSections, AvailablePageScreenPredicate, AvailablePageSectionMetaAttributes, AvailablePageSeo, AvailablePageUserPredicate, availableSectionSchema, BlitzkriegApiErrorSchema, BlitzkriegInternalServerErrorSchema, BlitzkriegNotFoundSchema, Blocks, BlocksProps, Bold, Colors, CommonJs, Config, ConfigPage, Css, Custom, Font, FontsSchema, FontsSchemaItems, FontsSchemaItemsFiles, GlobalSchema, GlobalSchemaProps, Images, Information, Light, ListSchemaItem, Medium, PaginationSchema, Preset, Regular, Sections, SemiBold, Src, ThemesListingResponseSchema, ThemesSchema, UmdJs, UpgradableThemeSchema, Variants, Accountkit, ArchiveUserRequestSchema, ArchiveUserSuccess, AuthenticationApiErrorSchema, AuthenticationInternalServerErrorSchema, AuthSuccess, AuthSuccessUser, AuthSuccessUserDebug, AuthSuccessUserEmails, BlockUserRequestSchema, BlockUserSuccess, CodeRequestBodySchema, CreateUserGroupSchema, CreateUserRequestSchema, CreateUserResponseSchema, CreateUserSessionRequestSchema, CreateUserSessionResponseSchema, CustomerListResponseSchema, DeleteAccountConsent, DeleteAccountReasons, DeleteApplicationUserRequestSchema, DeleteUserSuccess, EditEmailRequestSchema, EditMobileRequestSchema, EditProfileMobileSchema, EditProfileRequestSchema, EmailOtpSuccess, Facebook, FlashCard, ForgotPasswordRequestSchema, FormRegisterRequestSchema, FormRegisterRequestSchemaPhone, Google, HasPasswordSuccess, Login, LoginSuccess, LogoutSuccess, LookAndFeel, MetaSchema, NotFoundSchema, OAuthRequestAppleSchema, OAuthRequestAppleSchemaOauth, OAuthRequestAppleSchemaProfile, OAuthRequestSchema, OAuthRequestSchemaOauth2, OAuthRequestSchemaProfile, OtpSuccess, PasswordLoginRequestSchema, PlatformEmail, PlatformMobile, PlatformSchema, ProfileEditSuccess, ProfileEditSuccessSchema, RegisterFormSuccess, RegisterRequiredFields, RegisterRequiredFieldsEmail, RegisterRequiredFieldsMobile, RequiredFields, ResetPasswordSuccess, SendEmailOtpRequestSchema, SendEmailVerifyLinkSuccess, SendMobileOtpRequestSchema, SendMobileVerifyLinkSuccess, SendOtpRequestSchema, SendOtpResponse, SendResetPasswordEmailRequestSchema, SendResetPasswordMobileRequestSchema, SendVerificationLinkMobileRequestSchema, SessionDeleteResponseSchema, SessionExpiry, SessionListResponseInfo, SessionListResponseSchema, SessionListSuccess, Social, SocialTokens, TokenRequestBodySchema, UnauthenticatedSchema, UnauthorizedSchema, UnDeleteUserRequestSchema, UnDeleteUserSuccess, UpdatePasswordRequestSchema, UpdateUserGroupSchema, UpdateUserRequestSchema, UserEmails, UserGroupListResponseSchema, UserGroupResponseSchema, UserObjectSchema, UserPhoneNumbers, UserSearchResponseSchema, VerifyEmailOtpRequestSchema, VerifyEmailOTPSuccess, VerifyEmailSuccess, VerifyMobileOTPSuccess, VerifyOtpRequestSchema, VerifyOtpSuccess, Action, ActionPage, AdminAnnouncementSchema, AnnouncementAuthorSchema, AnnouncementPageSchema, AnnouncementSchema, AnnouncementsResponseSchema, ApplicationLegal, ApplicationLegalFAQ, Asset, Author, BlogGetResponse, BlogRequest, BlogSchema, CategoryRequestSchema, CategorySchema, ChildrenSchema, CommonError, ConfigurationSchema, ContactSchema, ContentAPIError, ContentSchema, CreateAnnouncementSchema, CreatedBySchema, CreateFaqCategoryRequestSchema, CreateFaqCategorySchema, CreateFaqResponseSchema, CreateFaqSchema, CreateTagRequestSchema, CreateTagSchema, CronSchedule, CustomMetaTag, CustomPage, CustomPageSchema, DataLoaderResetResponseSchema, DataLoaderResponseSchema, DataLoaderSchema, DataLoaderSourceSchema, DataLoadersSchema, DateMeta, DefaultNavigationResponse, Detail, EditorMeta, EmailProperties, EmailSchema, FAQ, FAQCategorySchema, FaqResponseSchema, FaqSchema, FeatureImage, GeneratedSEOContent, GenerateSEOContent, GetAnnouncementListSchema, GetFaqCategoriesSchema, GetFaqCategoryBySlugSchema, GetFaqSchema, HandpickedTagSchema, LandingPage, LandingPageGetResponse, LandingPageSchema, Language, LocaleLanguage, Navigation, NavigationGetResponse, NavigationReference, NavigationRequest, NavigationSchema, NextSchedule, Orientation, PageContent, PageGetResponse, PageMeta, PageMetaSchema, PagePublishRequest, PageRequest, PageSchema, PageSpec, PageSpecItem, PageSpecParam, PathMappingSchema, PathSourceSchema, PhoneProperties, PhoneSchema, RemoveHandpickedSchema, ResourceContent, ScheduleSchema, ScheduleStartSchema, SEO, SeoComponent, SEOImage, SeoSchema, Slideshow, SlideshowGetResponse, SlideshowMedia, SlideshowRequest, SlideshowSchema, Support, TagDeleteSuccessResponse, TagSchema, TagSourceSchema, TagsSchema, UpdateFaqCategoryRequestSchema, UpdateHandpickedSchema, CancelSubscriptionReq, CancelSubscriptionRes, ChargeLineItem, CheckValidityResponse, CreateOneTimeCharge, CreateOneTimeChargeResponse, CreateSubscriptionCharge, CreateSubscriptionResponse, CurrentPeriod, DetailedPlan, DetailedPlanComponents, EntityChargePrice, EntityChargeRecurring, EntitySubscription, InternalServerError, Invoice, InvoiceDetails, InvoiceDetailsClient, InvoiceDetailsPaymentMethods, InvoiceDetailsPaymentMethodsData, InvoiceDetailsPaymentMethodsDataChecks, InvoiceDetailsPaymentMethodsDataNetworks, InvoiceDetailsPaymentMethodsDataThreeDSecureUsage, InvoiceDetailsPeriod, InvoiceDetailsStatusTrail, InvoiceItems, InvoiceItemsPeriod, InvoiceItemsPlan, InvoiceItemsPlanRecurring, InvoicePaymentMethod, Invoices, InvoicesData, InvoicesDataClient, InvoicesDataPaymentMethod, InvoicesDataPeriod, OneTimeChargeEntity, OneTimeChargeItem, Phone, Plan, PlanRecurring, ResourceNotFound, Subscription, SubscriptionActivateReq, SubscriptionActivateRes, SubscriptionBillingAddress, SubscriptionCharge, SubscriptionCurrentPeriod, SubscriptionCustomer, SubscriptionCustomerCreate, SubscriptionInvoiceSettings, SubscriptionLimit, SubscriptionLimitApplication, SubscriptionLimitExtensions, SubscriptionLimitIntegrations, SubscriptionLimitMarketplace, SubscriptionLimitOtherPlatform, SubscriptionLimitProducts, SubscriptionLimitTeam, SubscriptionPauseCollection, SubscriptionStatus, SubscriptionTrial, SubscriptionTrialPeriod, UnauthenticatedApplication, UnauthenticatedUser, Audience, AudienceReq, Audiences, BadRequestSchema, BigqueryHeadersReq, BigqueryHeadersRes, BigqueryHeadersResHeaders, Campaign, CampaignEmail, CampaignEmailTemplate, CampaignReq, Campaigns, CampignEmailProvider, EmailProvider, EmailProviderReq, EmailProviderReqFrom, EmailProviders, EmailTemplate, EmailTemplateDeleteFailureRes, EmailTemplateDeleteSuccessRes, EmailTemplateHeaders, EmailTemplateKeys, EmailTemplateReq, EmailTemplateRes, EmailTemplates, EngineRequest, EngineResponse, EventSubscription, EventSubscriptions, EventSubscriptionTemplate, EventSubscriptionTemplateEmail, EventSubscriptionTemplateSms, GetNRecordsCsvReq, GetNRecordsCsvRes, GetNRecordsCsvResItems, GetStats, Job, JobLog, JobLogs, Jobs, Log, LogEmail, LogMeta, LogPushnotification, Logs, MetaStructure, Notification, PayloadEmailProviderStructure, PayloadEmailStructure, PayloadEmailTemplateStructure, PayloadSmsProviderStructure, PayloadSmsStructure, PayloadSmsTemplateStructure, PayloadStructure, PushtokenReq, PushtokenRes, RecipientHeaders, SendOtpCommsReq, SendOtpCommsReqData, SendOtpCommsReqEmail, SendOtpCommsReqSms, SendOtpCommsRes, SendOtpCommsResEmail, SendOtpCommsResSms, SendOtpEmailCommsTemplate, SendOtpSmsCommsProvider, SendOtpSmsCommsTemplate, SmsProvider, SmsProviderReq, SmsProviders, SmsTemplate, SmsTemplateDeleteFailureRes, SmsTemplateDeleteSuccessRes, SmsTemplateMessage, SmsTemplateReq, SmsTemplateRes, SmsTemplates, Stats, StatsImported, StatsProcessed, StatsProcessedEmail, StatsProcessedSms, SystemEmailTemplate, SystemEmailTemplates, SystemNotification, SystemNotifications, SystemNotificationSettings, SystemNotificationsPage, SystemNotificationUser, SystemSmsTemplate, SystemSmsTemplates, TemplateAndType, TriggerJobRequest, TriggerJobResponse, VerifyOtpCommsErrorRes, VerifyOtpCommsReq, VerifyOtpCommsSuccessRes, AddBeneficiaryDetailsOTPRequest, BankDetailsForOTP, CODdata, DeletePayoutResponse, DeleteSubscriptionPaymentMethodResponse, ErrorCodeAndDescription, ErrorCodeDescription, GetOauthUrlResponse, GetUserCODLimitResponse, HttpErrorCodeAndResponse, IfscCodeResponse, IntentApp, IntentAppErrorList, MultiTenderPaymentMeta, MultiTenderPaymentMethod, NotFoundResourceError, OrderBeneficiaryDetails, OrderBeneficiaryResponse, PaymentConfirmationRequest, PaymentConfirmationResponse, PaymentGatewayConfig, PaymentGatewayConfigRequest, PaymentGatewayConfigResponse, PaymentGatewayToBeReviewed, PaymentModeList, PaymentModeLogo, PaymentOptions, PaymentOptionsResponse, PayoutBankDetails, PayoutRequest, PayoutResponse, PayoutsResponse, RefundAccountResponse, RevokeOAuthToken, RootPaymentMode, SaveSubscriptionSetupIntentRequest, SaveSubscriptionSetupIntentResponse, SetCODForUserRequest, SetCODOptionResponse, SubscriptionConfigResponse, SubscriptionPaymentMethodResponse, UpdatePayoutRequest, UpdatePayoutResponse, ActionInfo, Affiliate, AffiliateAppConfig, AffiliateAppConfigMeta, AffiliateBag, AffiliateBagDetails, AffiliateConfig, AffiliateDetails, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryOrderConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateMeta, AffiliateStoreIdMapping, AnnouncementResponse, AnnouncementsResponse, AppliedPromos, Article, ArticleDetails, ArticleDetails1, Attributes, B2BPODetails, BagConfigs, BagDetailsPlatformResponse, BagGST, BagGSTDetails, BagMeta, BagReturnableCancelableStatus, Bags, BagStateMapper, BagStateTransitionMap, BagStatusHistory, BagUnit, BaseResponse, BillingInfo, BillingStaffDetails, Brand, BulkActionTemplate, BulkActionTemplateResponse, BuyerDetails, BuyRules, Charge, CheckResponse, Click2CallResponse, CompanyDetails, ContactDetails, CreateChannelConfig, CreateChannelConfigData, CreateChannelConfigResponse, CreateChannelConifgErrorResponse, CreateChannelPaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, CreateOrderPayload, CreateOrderResponse, CurrentStatus, DataUpdates, Dates, DebugInfo, Dimensions, DiscountRules, DispatchManifest, Document, DpConfiguration, DPDetailsData, EinvoiceInfo, EInvoicePortalDetails, Entities, EntitiesDataUpdates, EntitiesReasons, EntityReasonData, Error, ErrorDetail, ErrorResponse, ErrorResponse1, FileResponse, FileUploadResponse, FilterInfoOption, FiltersInfo, FiltersResponse, FinancialBreakup, Formatted, FulfillingStore, FyndOrderIdList, GetActionsResponse, GetBagsPlatformResponse, GSTDetailsData, HistoryDict, Identifier, InvalidateShipmentCacheNestedResponse, InvalidateShipmentCachePayload, InvalidateShipmentCacheResponse, InvoiceInfo, Item, ItemCriterias, LaneConfigResponse, LineItem, LocationDetails, LockData, MarketPlacePdf, Meta, Meta1, OrderBagArticle, OrderBags, OrderBrandName, OrderConfig, OrderDetails, OrderDetailsData, OrderDict, OrderInfo, OrderingStoreDetails, OrderListingResponse, OrderMeta, OrderPriority, OrderStatus, OrderStatusData, OrderStatusResult, OrderUser, OriginalFilter, Page1, PaymentInfo, PaymentMethod, PaymentMethods, PaymentModeInfo, PDFLinks, PhoneDetails, PlatformBreakupValues, PlatformChannel, PlatformDeliveryAddress, PlatformItem, PlatformOrderItems, PlatformOrderUpdate, PlatformShipment, PlatformShipmentReasonsResponse, PlatformShipmentTrack, PlatformTrack, PlatformUserDetails, PostActivityHistory, PostHistoryData, PostHistoryDict, PostHistoryFilters, PostShipmentHistory, Prices, ProcessingDates, Products, ProductsDataUpdates, ProductsDataUpdatesFilters, ProductsReasons, ProductsReasonsData, ProductsReasonsFilters, QuestionSet, Reason, ReasonsData, ReplacementDetails, ResponseDetail, ReturnConfig, SendSmsPayload, Shipment, ShipmentConfig, ShipmentData, ShipmentDetail, ShipmentDetails, ShipmentDetailsResponse, ShipmentHistoryResponse, ShipmentInfoResponse, ShipmentInternalPlatformViewResponse, ShipmentItem, ShipmentItemFulFillingStore, ShipmentMeta, ShipmentPayments, ShipmentsRequest, ShipmentsResponse, ShipmentStatus, ShipmentStatusData, ShipmentTimeStamp, ShippingInfo, SmsDataPayload, StatuesRequest, StatuesResponse, Store, StoreAddress, StoreDocuments, StoreEinvoice, StoreEwaybill, StoreGstCredentials, StoreMeta, StoreReassign, StoreReassignResponse, SubLane, SuccessResponse, SuperLane, Tax, TaxDetails, TaxInfo, TrackingList, TransactionData, UpdateShipmentLockPayload, UpdateShipmentLockResponse, UpdateShipmentStatusRequest, UpdateShipmentStatusResponseBody, UploadConsent, URL, UserData, UserDataInfo, UserDetailsData, Weight, AllowSingleRequest, AllSizes, AppCatalogConfiguration, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMeta, ApplicationItemMOQ, ApplicationItemSEO, ApplicationProductListingResponse, ApplicationStoreJson, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BrandItem, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, BulkInventoryGetItems, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, CategoryCreateResponse, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryRequestBody, CategoryResponse, CategoryUpdateResponse, Child, CollectionBadge, CollectionBanner, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, CreateSearchKeyword, CrossSellingData, CrossSellingResponse, CustomOrder, DefaultKeyRequest, DeleteResponse, Department, DepartmentCategoryTree, DepartmentCreateErrorResponse, DepartmentCreateResponse, DepartmentCreateUpdate, DepartmentErrorResponse, DepartmentIdentifier, DepartmentModel, DepartmentResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, EntityConfiguration, FilerList, GenderDetail, GetAddressSerializer, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponse, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, GetConfigMetadataResponse, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, GTIN, Guide, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HSNCodesResponse, HSNData, HSNDataInsertV2, HsnUpsert, Image, ImageUrls, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponse, InventoryExportQuantityFilter, InventoryExportRequest, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, InvSize, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, ManufacturerResponse, ManufacturerResponse1, Media, Media1, Media2, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, MOQData, NetQuantity, NetQuantityResponse, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptInPostRequest, OptinStoreDetails, OwnerAppItemResponse, PageResponse, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponse, ProductFilters, ProductFiltersKey, ProductFiltersValue, ProductListingDetail, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSerializer, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, ProductVariantsResponse, Properties, PTErrorResponse, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, SearchKeywordResult, SecondLevelChild, SellerPhoneNumber, SEOData, SeoDetail, SetSize, SingleCategoryResponse, SingleProductResponse, Size, SizeDistribution, SizeGuideResponse, StoreAssignResponse, StoreDetail, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplatesResponse, TemplatesValidationResponse, TemplateValidationData, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdatedResponse, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, AddressSerializer, BrandBannerSerializer, BulkLocationSerializer, BusinessCountryInfo, BusinessDetails, CompanyBrandListSerializer, CompanyBrandPostRequestSerializer, CompanyBrandSerializer, CompanySerializer, CompanySocialAccounts, CompanyTaxesSerializer, CompanyTaxesSerializer1, CreateUpdateAddressSerializer, CreateUpdateBrandRequestSerializer, DocumentsObj, GetBrandResponseSerializer, GetCompanyProfileSerializerResponse, HolidayDateSerializer, HolidaySchemaSerializer, LocationSerializer, MetricsSerializer, ProfileSuccessResponse, UpdateCompany, Website, BrowseResponse, BulkRequest, BulkUploadResponse, CDN, CompleteResponse, CopyFileTask, DbRecord, Destination, FailedResponse, Opts, ReqConfiguration, SignUrlRequest, SignUrlResponse, StartRequest, StartResponse, Upload, Urls, Attribution, CampaignShortLink, ClickStatsItem, ClickStatsResponse, ErrorRes, RedirectDevice, Redirects, ShortLinkList, ShortLinkReq, ShortLinkRes, SocialMediaTags, UrlInfo, WebRedirect, ArchiveConfig, Audit, AWSS3config, CatalogMasterConfig, CompanyConfig, DataTresholdDTO, DBConfig, DBConnectionProfile, DBParamConfig, DefaultHeadersDTO, DocMappingConfig, EmailConfig, FileConfig, FTPConfig, GCompany, GenericDTO, GoogleSpreadSheetConfig, GStore, HttpConfig, JobConfig, JobConfigDTO, JobConfigListDTO, JobConfigRawDTO, JobHistoryDto, JobMetricsDto, JobStepsDTO, JsonDocConfig, KafkaMetaModel, KafkaResponse, LocalFileConfig, Metum, MongoDocConfig, OAuthConfig, ProcessConfig, PropBeanConfig, PropBeanDTO, ResponseEnvelopeJobConfigDTO, ResponseEnvelopeJobMetricsDto, ResponseEnvelopeKafkaResponse, ResponseEnvelopeListJobConfigDTO, ResponseEnvelopeListJobConfigListDTO, ResponseEnvelopeListJobConfigRawDTO, ResponseEnvelopeListJobStepsDTO, ResponseEnvelopeListSlingshotConfigurationDetail, ResponseEnvelopeString, Send, SFTPConfig, SlingshotConfigurationDetail, SlingshotIntegration, StoreConfig, StoreData, StoreFilter, SuppressStoreModel, SuppressStorePayload, TaskConfig, TaskDTO, TaskParam, TaskStepConfig, Android, App, AppCartConfig, AppCurrencyResponse, AppDomain, AppFeature, AppFeatureRequest, AppFeatureResponse, AppInventory, AppInventoryCompanies, AppInventoryConfig, AppInventoryPartialUpdate, AppInventoryStores, ApplicationDetail, ApplicationInformation, ApplicationInventory, ApplicationsResponse, AppLogisticsConfig, AppOrderConfig, AppPaymentConfig, AppStoreRules, AppSupportedCurrency, ArticleAssignmentConfig, ArticleAssignmentRule, ArticleAssignmentRules, AuthenticationConfig, BlogLink, BrandCompanyInfo, BrandsByCompanyResponse, BrandStoreInfo, BuildVersion, BuildVersionHistory, BusinessHighlights, CallbackUrl, CartFeature, Charges, CommonFeature, CommsConfig, CommunicationConfig, CommunicationOptinDialogFeature, CompaniesResponse, CompanyAboutAddress, CompanyBrandInfo, CompanyByBrandsRequest, CompanyByBrandsResponse, CompanyValidator, CompareProductsFeature, CreateApplicationRequest, CreateAppResponse, Credentials, Credit, CurrenciesResponse, CurrencyConfig, CurrencyFeature, Debit, DefaultCurrency, DeliveryCharges, DeploymentMeta, DeploymentStoreSelectionFeature, DomainAdd, DomainAddRequest, DomainsResponse, DomainStatus, DomainStatusRequest, DomainStatusResponse, DomainSuggestion, DomainSuggestionsRequest, DomainSuggestionsResponse, FacebookLink, FeedbackFeature, FilterOrderingStoreRequest, Firebase, Freshchat, FreshchatCredentials, FyndRewards, FyndRewardsCredentials, GetIntegrationsOptInsResponse, GoogleMap, GoogleMapCredentials, GooglePlusLink, Gtm, GtmCredentials, HomePageFeature, InformationAddress, InformationPhone, InformationSupport, InstagramLink, Integration, IntegrationConfigResponse, IntegrationLevel, IntegrationMeta, IntegrationOptIn, InvalidPayloadRequest, InventoryArticleAssignment, InventoryBrand, InventoryBrandRule, InventoryCategory, InventoryDiscount, InventoryPaymentConfig, InventoryPrice, InventoryStore, InventoryStoreRule, InventoryValidator, Ios, JsonSchema, LandingImage, LandingPageFeature, LastPatch, LaunchPage, LinkedInLink, Links, ListingPriceFeature, LoyaltyPointsConfig, Methods, MobileAppConfigRequest, MobileAppConfiguration, Moengage, MoengageCredentials, OptedApplicationResponse, OptedCompany, OptedInventory, OptedStore, OptedStoreAddress, OptedStoreIntegration, OptOutInventory, OptType, OrderFeature, OrderingStore, OrderingStoreConfig, OrderingStores, OrderingStoresResponse, OrderValidator, OtherEntity, OtherEntityData, OtherSellerApplication, OtherSellerApplications, OtherSellerCompany, PaymentModeConfig, PaymentSelectionLock, PcrFeature, PinterestLink, ProductDetailFeature, QrFeature, RegistrationPageFeature, RevenueEngineFeature, RewardPointsConfig, Safetynet, SafetynetCredentials, Segment, SegmentCredentials, SocialLinks, SplashImage, StoreByBrandsRequest, StoreByBrandsResponse, StoreCriteriaRule, StoreLatLong, StorePriority, StorePriorityRule, StoresResponse, StoreValidator, SuccessMessageResponse, TokenResponse, Tokens, TwitterLink, UnhandledError, UpdateDomain, UpdateDomainTypeRequest, UpdateIntegrationLevelRequest, UserEmail, UserPhoneNumber, Validators, VimeoLink, YoutubeLink, AbandonedCart, AbandonedCartResponse, ActionQuery, AddCartDetailResponse, AddCartRequest, AddProductCart, AppliedPromotion, ArticlePriceInfo, BaseInfo, BasePrice, BulkBundleRestriction, CartBreakup, CartCurrency, CartDetailResponse, CartItem, CartItemMeta, CartMetaConfigAdd, CartMetaConfigUpdate, CartProduct, CartProductIdentifer, CartProductInfo, CategoryInfo, CompareObject, CouponAction, CouponAdd, CouponAuthor, CouponBreakup, CouponDateMeta, CouponPartialUpdate, CouponSchedule, CouponsResponse, CouponUpdate, DiscountOffer, DiscountRule, DisplayBreakup, DisplayMeta, DisplayMeta1, DisplayMetaDict, ItemCriteria, LoyaltyPoints, OpenapiCartDetailsRequest, OpenapiCartDetailsResponse, OpenApiCartServiceabilityRequest, OpenApiCartServiceabilityResponse, OpenApiCheckoutResponse, OpenApiErrorResponse, OpenApiFiles, OpenApiOrderItem, OpenApiPlatformCheckoutReq, OperationErrorResponse, Ownership, Ownership1, Ownership2, PaymentAllowValue, PaymentAllowValue1, PaymentModes, PostOrder, PostOrder1, PriceRange, ProductAction, ProductArticle, ProductAvailability, ProductAvailabilitySize, ProductImage, ProductPrice, ProductPriceInfo, PromiseFormatted, PromiseTimestamp, PromoMeta, PromotionAction, PromotionAdd, PromotionAuthor, PromotionDateMeta, PromotionListItem, PromotionPartialUpdate, PromotionPaymentModes, PromotionSchedule, PromotionsResponse, PromotionUpdate, RawBreakup, Restrictions, Restrictions1, Rule, RuleDefinition, ShipmentPromise, ShippingAddress, State, SuccessMessage, UpdateCartDetailResponse, UpdateCartRequest, UpdateProductCart, UserRegistered, UsesRemaining, UsesRemaining1, UsesRestriction, UsesRestriction1, Validation, Validity, Visibility, AppUser, ConfigurationRequest, ConfigurationRes, E, Giveaway, GiveawayAudience, GiveawayResponse, HistoryRes, Offer, Points, PointsHistory, Referral, RewardsAudience, RewardsRule, RewardUser, Schedule, SetConfigurationRes, ShareMessages, UserRes, BadRequestObject, BulkDiscount, CancelJobResponse, CreateUpdateDiscount, DiscountItems, DiscountJob, DownloadFileJob, FileJobRequest, FileJobResponse, ListOrCalender, UserDetails, ValidityObject, AddProxyReq, AddProxyResponse, APIError, RemoveProxyResponse, Association, AuthMeta, EventConfig, EventConfigBase, EventConfigList, EventConfigResponse, EventPayload, EventProcessedStatus, SubscriberConfig, SubscriberConfigList, SubscriberEvent, SubscriberResponse, CreateLogResponse, DeviceInfo, EntityObj, EntityObject, EntityTypeObj, EntityTypesResponse, Location, LogDocs, LogMetaObj, LogSchemaResponse, Modifier, RequestBodyAuditLog };
24
+ export { BadRequest, CreateLogResponse, DeviceInfo, EntityObj, EntityObject, EntityTypeObj, EntityTypesResponse, InternalServerError, Location, LogDocs, LogMetaObj, LogSchemaResponse, Modifier, RequestBodyAuditLog, ResourceNotFound, CancelSubscriptionReq, CancelSubscriptionRes, ChargeLineItem, CheckValidityResponse, CreateOneTimeCharge, CreateOneTimeChargeResponse, CreateSubscriptionCharge, CreateSubscriptionResponse, CurrentPeriod, DetailedPlan, DetailedPlanComponents, EntityChargePrice, EntityChargeRecurring, EntitySubscription, Invoice, InvoiceDetails, InvoiceDetailsClient, InvoiceDetailsPaymentMethods, InvoiceDetailsPaymentMethodsData, InvoiceDetailsPaymentMethodsDataChecks, InvoiceDetailsPaymentMethodsDataNetworks, InvoiceDetailsPaymentMethodsDataThreeDSecureUsage, InvoiceDetailsPeriod, InvoiceDetailsStatusTrail, InvoiceItems, InvoiceItemsPeriod, InvoiceItemsPlan, InvoiceItemsPlanRecurring, InvoicePaymentMethod, Invoices, InvoicesData, InvoicesDataClient, InvoicesDataPaymentMethod, InvoicesDataPeriod, OneTimeChargeEntity, OneTimeChargeItem, Page, Phone, Plan, PlanRecurring, Subscription, SubscriptionActivateReq, SubscriptionActivateRes, SubscriptionBillingAddress, SubscriptionCharge, SubscriptionCurrentPeriod, SubscriptionCustomer, SubscriptionCustomerCreate, SubscriptionInvoiceSettings, SubscriptionLimit, SubscriptionLimitApplication, SubscriptionLimitExtensions, SubscriptionLimitIntegrations, SubscriptionLimitMarketplace, SubscriptionLimitOtherPlatform, SubscriptionLimitProducts, SubscriptionLimitTeam, SubscriptionPauseCollection, SubscriptionStatus, SubscriptionTrial, SubscriptionTrialPeriod, UnauthenticatedApplication, UnauthenticatedUser, AbandonedCart, AbandonedCartResponse, ActionQuery, ActivePromosResponse, AddCartDetailResponse, AddCartRequest, AddProductCart, AppliedFreeArticles, AppliedPromotion, ApplyCouponRequest, ArticlePriceInfo, BaseInfo, BasePrice, BulkBundleRestriction, BuyRules, CartBreakup, CartCheckoutResponse, CartCurrency, CartDeliveryModesResponse, CartDetailResponse, CartItem, CartItemCountResponse, CartItemMeta, CartList, CartMetaConfigAdd, CartMetaConfigUpdate, CartMetaMissingResponse, CartMetaResponse, CartProduct, CartProductIdentifer, CartProductInfo, CategoryInfo, Charges, CheckCart, CompareObject, Coupon, CouponAction, CouponAdd, CouponAuthor, CouponBreakup, CouponDateMeta, CouponDetails, CouponPartialUpdate, CouponSchedule, CouponsResponse, CouponUpdate, CouponValidity, DeleteAddressResponse, DeleteCartDetailResponse, DeleteCartRequest, DeliveryCharges, DiscountOffer, DiscountRule, DiscountRulesApp, DisplayBreakup, DisplayMeta, DisplayMeta1, DisplayMetaDict, Files, FreeGiftItem, GeoLocation, GetCouponResponse, GetShareCartLinkRequest, GetShareCartLinkResponse, Identifier, ItemCriteria, LoyaltyPoints, MultiCartResponse, MultiTenderPaymentMeta, MultiTenderPaymentMethod, OpenapiCartDetailsRequest, OpenapiCartDetailsResponse, OpenApiCartServiceabilityRequest, OpenApiCartServiceabilityResponse, OpenApiCheckoutResponse, OpenApiErrorResponse, OpenApiFiles, OpenApiOrderItem, OpenApiPlatformCheckoutReq, OperationErrorResponse, OverrideCartItem, OverrideCartItemPromo, OverrideCheckoutReq, OverrideCheckoutResponse, Ownership, Ownership1, Ownership2, PageCoupon, PaymentAllowValue, PaymentAllowValue1, PaymentCouponValidate, PaymentMeta, PaymentMethod, PaymentModes, PaymentSelectionLock, PickupStoreDetail, PlatformAddCartRequest, PlatformAddress, PlatformCartCheckoutDetailRequest, PlatformCartCheckoutDetailV2Request, PlatformCartMetaRequest, PlatformCartShipmentsResponse, PlatformGetAddressesResponse, PlatformSelectCartAddressRequest, PlatformShipmentResponse, PlatformUpdateCartRequest, PostOrder, PostOrder1, PriceRange, ProductAction, ProductArticle, ProductAvailability, ProductAvailabilitySize, ProductImage, ProductPrice, ProductPriceInfo, PromiseFormatted, PromiseTimestamp, PromoMeta, PromotionAction, PromotionAdd, PromotionAuthor, PromotionDateMeta, PromotionListItem, PromotionPartialUpdate, PromotionPaymentModes, PromotionSchedule, PromotionsResponse, PromotionUpdate, RawBreakup, Restrictions, Restrictions1, Rule, RuleDefinition, SaveAddressResponse, SharedCart, SharedCartDetails, SharedCartResponse, ShipmentArticle, ShipmentPromise, ShippingAddress, StaffCheckout, State, StoreDetailsResponse, StoreInfo, SuccessMessage, Tags, UpdateAddressResponse, UpdateCartDetailResponse, UpdateCartPaymentRequest, UpdateCartPaymentRequestV2, UpdateCartRequest, UpdateCartShipmentItem, UpdateCartShipmentRequest, UpdateProductCart, UpdateUserCartMapping, UserCartMappingResponse, UserInfo, UserRegistered, UsesRemaining, UsesRemaining1, UsesRestriction, UsesRestriction1, Validation, Validity, Visibility, Action, ActionPage, AllowSingleRequest, AllSizes, AppCatalogConfiguration, AppConfiguration, AppConfigurationDetail, AppConfigurationsSort, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMeta, ApplicationItemMOQ, ApplicationItemSEO, ApplicationProductListingResponse, ApplicationStoreJson, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutocompleteAction, AutoCompleteMedia, AutocompletePageAction, AutocompleteResult, BannerImage, Brand, BrandItem, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, BulkInventoryGetItems, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, CategoryCreateResponse, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryRequestBody, CategoryResponse, CategoryUpdateResponse, Child, CollectionBadge, CollectionBanner, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, CreateSearchKeyword, CrossSellingData, CrossSellingResponse, CustomOrder, DateMeta, DefaultKeyRequest, DeleteResponse, Department, DepartmentCategoryTree, DepartmentCreateErrorResponse, DepartmentCreateResponse, DepartmentCreateUpdate, DepartmentErrorResponse, DepartmentIdentifier, DepartmentModel, DepartmentResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, Document, EntityConfiguration, ErrorResponse, FilerList, GenderDetail, GetAddressSerializer, GetAllSizes, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponse, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, GetConfigMetadataResponse, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, GTIN, Guide, Hierarchy, HsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HSNCodesResponse, HSNData, HSNDataInsertV2, HsnUpsert, Image, ImageUrls, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJob, InventoryExportJobListResponse, InventoryExportQuantityFilter, InventoryExportRequest, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, InvSize, ItemQuery, Items, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, ManufacturerResponse, ManufacturerResponse1, Media, Media1, Media2, Meta, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, MOQData, NetQuantity, NetQuantityResponse, NextSchedule, OptinCompanyBrandDetailsView, OptinCompanyDetail, OptinCompanyMetrics, OptInPostRequest, OptinStoreDetails, OwnerAppItemResponse, PageResponse, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, ProductDownloadsResponse, ProductFilters, ProductFiltersKey, ProductFiltersValue, ProductListingDetail, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSerializer, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, ProductVariantsResponse, Properties, PTErrorResponse, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, SearchKeywordResult, SecondLevelChild, SellerPhoneNumber, SEOData, SeoDetail, SetSize, SingleCategoryResponse, SingleProductResponse, Size, SizeDistribution, SizeGuideResponse, StoreAssignResponse, StoreDetail, StoreMeta, SuccessResponse, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplatesResponse, TemplatesValidationResponse, TemplateValidationData, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdatedResponse, UserCommon, UserDetail, UserDetail1, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, Application, ApplicationAuth, ApplicationCors, ApplicationMeta, ApplicationRedirections, ApplicationResponse, ApplicationWebsite, Currency, Domain, LocationCountry, LocationDefaultCurrency, LocationDefaultLanguage, Locations, NotFound, SecureUrl, Audience, AudienceReq, Audiences, BadRequestSchema, BigqueryHeadersReq, BigqueryHeadersRes, BigqueryHeadersResHeaders, Campaign, CampaignEmail, CampaignEmailTemplate, CampaignReq, Campaigns, CampignEmailProvider, EmailProvider, EmailProviderReq, EmailProviderReqFrom, EmailProviders, EmailTemplate, EmailTemplateDeleteFailureRes, EmailTemplateDeleteSuccessRes, EmailTemplateHeaders, EmailTemplateKeys, EmailTemplateReq, EmailTemplateRes, EmailTemplates, EngineRequest, EngineResponse, EventSubscription, EventSubscriptions, EventSubscriptionTemplate, EventSubscriptionTemplateEmail, EventSubscriptionTemplateSms, GetNRecordsCsvReq, GetNRecordsCsvRes, GetNRecordsCsvResItems, GetStats, Job, JobLog, JobLogs, Jobs, Log, LogEmail, LogMeta, LogPushnotification, Logs, MetaStructure, Notification, PayloadEmailProviderStructure, PayloadEmailStructure, PayloadEmailTemplateStructure, PayloadSmsProviderStructure, PayloadSmsStructure, PayloadSmsTemplateStructure, PayloadStructure, PushtokenReq, PushtokenRes, RecipientHeaders, SendOtpCommsReq, SendOtpCommsReqData, SendOtpCommsReqEmail, SendOtpCommsReqSms, SendOtpCommsRes, SendOtpCommsResEmail, SendOtpCommsResSms, SendOtpEmailCommsProvider, SendOtpEmailCommsTemplate, SendOtpSmsCommsProvider, SendOtpSmsCommsTemplate, SmsProvider, SmsProviderReq, SmsProviders, SmsTemplate, SmsTemplateDeleteFailureRes, SmsTemplateDeleteSuccessRes, SmsTemplateMessage, SmsTemplateReq, SmsTemplateRes, SmsTemplates, Stats, StatsImported, StatsProcessed, StatsProcessedEmail, StatsProcessedSms, SystemEmailTemplate, SystemEmailTemplates, SystemNotification, SystemNotifications, SystemNotificationSettings, SystemNotificationsPage, SystemNotificationUser, SystemSmsTemplate, SystemSmsTemplates, TemplateAndType, TriggerJobRequest, TriggerJobResponse, VerifyOtpCommsErrorRes, VerifyOtpCommsReq, VerifyOtpCommsSuccessRes, AddressSerializer, BrandBannerSerializer, BulkLocationSerializer, BusinessCountryInfo, BusinessDetails, CompanyBrandListSerializer, CompanyBrandPostRequestSerializer, CompanyBrandSerializer, CompanyDetails, CompanySerializer, CompanySocialAccounts, CompanyTaxesSerializer, CompanyTaxesSerializer1, ContactDetails, CreateUpdateAddressSerializer, CreateUpdateBrandRequestSerializer, DocumentsObj, GetBrandResponseSerializer, GetCompanyProfileSerializerResponse, HolidayDateSerializer, HolidaySchemaSerializer, LocationSerializer, MetricsSerializer, ProfileSuccessResponse, UpdateCompany, Website, Android, App, AppCartConfig, AppCurrencyResponse, AppDomain, AppFeature, AppFeatureRequest, AppFeatureResponse, AppInventory, AppInventoryCompanies, AppInventoryConfig, AppInventoryPartialUpdate, AppInventoryStores, ApplicationDetail, ApplicationInformation, ApplicationInventory, ApplicationsResponse, AppLogisticsConfig, AppOrderConfig, AppPaymentConfig, AppStoreRules, AppSupportedCurrency, ArticleAssignmentConfig, ArticleAssignmentRule, ArticleAssignmentRules, AuthenticationConfig, BlogLink, BrandCompanyInfo, BrandsByCompanyResponse, BrandStoreInfo, BuildVersion, BuildVersionHistory, BusinessHighlights, CallbackUrl, CartFeature, CommonFeature, CommsConfig, CommunicationConfig, CommunicationOptinDialogFeature, CompaniesResponse, CompanyAboutAddress, CompanyBrandInfo, CompanyByBrandsRequest, CompanyByBrandsResponse, CompanyValidator, CompareProductsFeature, CreateApplicationRequest, CreateAppResponse, Credentials, Credit, CurrenciesResponse, CurrencyConfig, CurrencyFeature, Debit, DefaultCurrency, DeploymentMeta, DeploymentStoreSelectionFeature, DomainAdd, DomainAddRequest, DomainsResponse, DomainStatus, DomainStatusRequest, DomainStatusResponse, DomainSuggestion, DomainSuggestionsRequest, DomainSuggestionsResponse, FacebookLink, FeedbackFeature, FilterOrderingStoreRequest, Firebase, Freshchat, FreshchatCredentials, FyndRewards, FyndRewardsCredentials, GetIntegrationsOptInsResponse, GoogleMap, GoogleMapCredentials, GooglePlusLink, Gtm, GtmCredentials, HomePageFeature, InformationAddress, InformationPhone, InformationSupport, InstagramLink, Integration, IntegrationConfigResponse, IntegrationLevel, IntegrationMeta, IntegrationOptIn, InvalidPayloadRequest, InventoryArticleAssignment, InventoryBrand, InventoryBrandRule, InventoryCategory, InventoryDiscount, InventoryPaymentConfig, InventoryPrice, InventoryStore, InventoryStoreRule, InventoryValidator, Ios, JsonSchema, LandingImage, LandingPageFeature, LastPatch, LaunchPage, LinkedInLink, Links, ListingPriceFeature, LoyaltyPointsConfig, Methods, MobileAppConfigRequest, MobileAppConfiguration, Moengage, MoengageCredentials, OptedApplicationResponse, OptedCompany, OptedInventory, OptedStore, OptedStoreAddress, OptedStoreIntegration, OptOutInventory, OptType, OrderFeature, OrderingStore, OrderingStoreConfig, OrderingStores, OrderingStoresResponse, OrderValidator, OtherEntity, OtherEntityData, OtherSellerApplication, OtherSellerApplications, OtherSellerCompany, PanCardConfig, PaymentModeConfig, PcrFeature, PinterestLink, ProductDetailFeature, QrFeature, RegistrationPageFeature, RevenueEngineFeature, RewardPointsConfig, Safetynet, SafetynetCredentials, Segment, SegmentCredentials, SocialLinks, SplashImage, StoreByBrandsRequest, StoreByBrandsResponse, StoreCriteriaRule, StoreLatLong, StorePriority, StorePriorityRule, StoresResponse, StoreValidator, SuccessMessageResponse, TokenResponse, Tokens, TwitterLink, UnhandledError, UpdateDomain, UpdateDomainTypeRequest, UpdateIntegrationLevelRequest, UserEmail, UserPhoneNumber, ValidationFailedResponse, Validators, VimeoLink, YoutubeLink, AdminAnnouncementSchema, AnnouncementAuthorSchema, AnnouncementPageSchema, AnnouncementSchema, AnnouncementsResponseSchema, ApplicationLegal, ApplicationLegalFAQ, Asset, Author, BlogGetResponse, BlogRequest, BlogSchema, CategoryRequestSchema, CategorySchema, ChildrenSchema, CommonError, ConfigurationSchema, ContactSchema, ContentAPIError, ContentSchema, CreateAnnouncementSchema, CreatedBySchema, CreateFaqCategoryRequestSchema, CreateFaqCategorySchema, CreateFaqResponseSchema, CreateFaqSchema, CreateTagRequestSchema, CreateTagSchema, CronSchedule, CustomMetaTag, CustomPage, CustomPageSchema, DataLoaderResetResponseSchema, DataLoaderResponseSchema, DataLoaderSchema, DataLoaderSourceSchema, DataLoadersSchema, DefaultNavigationResponse, Detail, EditorMeta, EmailProperties, EmailSchema, FAQ, FAQCategorySchema, FaqResponseSchema, FaqSchema, FeatureImage, GeneratedSEOContent, GenerateSEOContent, GetAnnouncementListSchema, GetFaqCategoriesSchema, GetFaqCategoryBySlugSchema, GetFaqSchema, HandpickedTagSchema, LandingPage, LandingPageGetResponse, LandingPageSchema, Language, LocaleLanguage, Navigation, NavigationGetResponse, NavigationReference, NavigationRequest, NavigationSchema, Orientation, PageContent, PageGetResponse, PageMeta, PageMetaSchema, PagePublishRequest, PageRequest, PageSchema, PageSpec, PageSpecItem, PageSpecParam, PathMappingSchema, PathSourceSchema, PhoneProperties, PhoneSchema, RemoveHandpickedSchema, ResourceContent, ScheduleSchema, ScheduleStartSchema, SEO, SeoComponent, SEOImage, SeoSchema, Slideshow, SlideshowGetResponse, SlideshowMedia, SlideshowRequest, SlideshowSchema, Support, TagDeleteSuccessResponse, TagSchema, TagSourceSchema, TagsSchema, UpdateFaqCategoryRequestSchema, UpdateHandpickedSchema, BadRequestObject, BulkDiscount, CancelJobResponse, CreateUpdateDiscount, DiscountItems, DiscountJob, DownloadFileJob, FileJobRequest, FileJobResponse, ListOrCalender, UserDetails, ValidityObject, BrowseResponse, BulkRequest, BulkUploadResponse, CDN, CompleteResponse, CopyFileTask, DbRecord, Destination, FailedResponse, Opts, ReqConfiguration, SignUrlRequest, SignUrlResponse, StartRequest, StartResponse, Upload, Urls, CreditlineDataPlatformPayload, CreditlineDataPlatformRequest, CreditlineDataPlatformResponse, DownloadCreditDebitNote, DownloadCreditDebitNoteRequest, DownloadCreditDebitNoteResponse, DownloadCreditDebitNoteResponseData, DownloadReport, DownloadReportItems, DownloadReportList, Error, GenerateReportFilters, GenerateReportJson, GenerateReportMeta, GenerateReportPlatform, GenerateReportRequest, GetAffiliate, GetAffiliateResponse, GetDocs, GetEngineData, GetEngineFilters, GetEngineRequest, GetEngineResponse, GetReason, GetReasonRequest, GetReasonResponse, GetReportListData, GetReportListRequest, InoviceListingPayloadDataFilters, InvoiceListingPayloadData, InvoiceListingRequest, InvoiceListingResponse, InvoiceListingResponseItems, InvoicePdfPayloadData, InvoicePdfRequest, InvoicePdfResponse, InvoiceTypePayloadData, InvoiceTypeRequest, InvoiceTypeResponse, InvoiceTypeResponseItems, IsCreditlinePayload, IsCreditlinePlatformRequest, IsCreditlinePlatformResponse, PaymentProcessPayload, PaymentProcessRequest, PaymentProcessResponse, UnpaidInvoiceDataItems, ArchiveConfig, Audit, AWSS3config, CatalogMasterConfig, CompanyConfig, DataTresholdDTO, DBConfig, DBConnectionProfile, DBParamConfig, DefaultHeadersDTO, DocMappingConfig, EmailConfig, FileConfig, FTPConfig, GCompany, GenericDTO, GoogleSpreadSheetConfig, GStore, HttpConfig, JobConfig, JobConfigDTO, JobConfigListDTO, JobConfigRawDTO, JobHistoryDto, JobMetricsDto, JobStepsDTO, JsonDocConfig, KafkaMetaModel, KafkaResponse, LocalFileConfig, Metum, MongoDocConfig, OAuthConfig, ProcessConfig, PropBeanConfig, PropBeanDTO, ResponseEnvelopeJobConfigDTO, ResponseEnvelopeJobMetricsDto, ResponseEnvelopeKafkaResponse, ResponseEnvelopeListJobConfigDTO, ResponseEnvelopeListJobConfigListDTO, ResponseEnvelopeListJobConfigRawDTO, ResponseEnvelopeListJobStepsDTO, ResponseEnvelopeListSlingshotConfigurationDetail, ResponseEnvelopeString, Send, SFTPConfig, SlingshotConfigurationDetail, SlingshotIntegration, StoreConfig, StoreData, StoreFilter, SuppressStoreModel, SuppressStorePayload, TaskConfig, TaskDTO, TaskParam, TaskStepConfig, AddTicketPayload, AgentChangePayload, CategoryData, CloseVideoRoomResponse, CommunicationDetails, CreateCustomFormPayload, CreatedOn, CreateVideoRoomPayload, CreateVideoRoomResponse, CustomForm, CustomFormList, CustomFormSubmissionPayload, Debug, EditCustomFormPayload, EditTicketPayload, Email, FeedbackForm, FeedbackResponseItem, Filter, GetParticipantsInsideVideoRoomResponse, GetTokenForVideoRoomResponse, IntegrationConfig, NotifyUser, Participant, PhoneNumber, PollForAssignment, Priority, Status, SubmitButton, SubmitCustomFormResponse, SupportGeneralConfig, Ticket, TicketAsset, TicketCategory, TicketContent, TicketContext, TicketFeedback, TicketFeedbackForm, TicketFeedbackList, TicketFeedbackPayload, TicketHistory, TicketHistoryList, TicketHistoryPayload, TicketList, TicketSubCategory, UserSchema, ActionInfo, AdvanceFilterInfo, Affiliate, AffiliateAppConfig, AffiliateAppConfigMeta, AffiliateBag, AffiliateBagDetails, AffiliateBagsDetails, AffiliateConfig, AffiliateDetails, AffiliateInventoryArticleAssignmentConfig, AffiliateInventoryConfig, AffiliateInventoryLogisticsConfig, AffiliateInventoryOrderConfig, AffiliateInventoryPaymentConfig, AffiliateInventoryStoreConfig, AffiliateMeta, AffiliateStoreIdMapping, AnnouncementResponse, AnnouncementsResponse, AppliedPromos, Article, ArticleDetails, ArticleDetails1, AttachOrderUser, AttachOrderUserResponse, AttachUserInfo, AttachUserOtpData, Attributes, B2BPODetails, BagConfigs, BagDetailsPlatformResponse, BagGST, BagGSTDetails, BagMeta, BagPaymentMethods, BagReturnableCancelableStatus, BagReturnableCancelableStatus1, Bags, BagsPage, BagStateMapper, BagStateTransitionMap, BagStatusHistory, BagUnit, BaseResponse, BillingInfo, BillingStaffDetails, BulkActionTemplate, BulkActionTemplateResponse, BuyerDetails, Charge, CheckResponse, Click2CallResponse, CreateChannelConfig, CreateChannelConfigData, CreateChannelConfigResponse, CreateChannelConifgErrorResponse, CreateChannelPaymentInfo, CreateOrderAPI, CreateOrderErrorReponse, CreateOrderPayload, CreateOrderResponse, CreditBalanceInfo, CurrentStatus, DataUpdates, Dates, DebugInfo, Dimension, Dimensions, DiscountRules, DispatchManifest, DpConfiguration, DPDetailsData, EinvoiceInfo, EInvoicePortalDetails, Entities, EntitiesDataUpdates, EntitiesReasons, EntityReasonData, ErrorDetail, ErrorResponse1, FetchCreditBalanceRequestPayload, FetchCreditBalanceResponsePayload, FileResponse, FilterInfoOption, FiltersInfo, FiltersResponse, FinancialBreakup, Formatted, FulfillingStore, FyndOrderIdList, GeneratePosOrderReceiptResponse, GetActionsResponse, GetBagsPlatformResponse, GiftCard, GSTDetailsData, HistoryDict, HistoryMeta, HistoryReason, InvalidateShipmentCacheNestedResponse, InvalidateShipmentCachePayload, InvalidateShipmentCacheResponse, InvoiceInfo, Item, ItemCriterias, LaneConfigResponse, LineItem, LocationDetails, LockData, MarketPlacePdf, OrderBagArticle, OrderBags, OrderBrandName, OrderConfig, OrderData, OrderDetails, OrderDetailsData, OrderDetailsResponse, OrderInfo, OrderingStoreDetails, OrderItemDataUpdates, OrderListingResponse, OrderMeta, OrderPriority, OrderStatus, OrderStatusData, OrderStatusResult, OrderUser, OriginalFilter, PaymentInfo, PaymentMethods, PDFLinks, PhoneDetails, PlatformArticleAttributes, PlatformBreakupValues, PlatformChannel, PlatformDeliveryAddress, PlatformItem, PlatformOrderItems, PlatformOrderUpdate, PlatformShipment, PlatformShipmentReasonsResponse, PlatformShipmentTrack, PlatformTrack, PlatformUserDetails, PointBlankOtpData, PostActivityHistory, PostHistoryData, PostHistoryDict, PostHistoryFilters, PostShipmentHistory, Prices, ProcessingDates, Products, ProductsDataUpdates, ProductsDataUpdatesFilters, ProductsReasons, ProductsReasonsData, ProductsReasonsFilters, QuestionSet, Reason, ReasonsData, RefundModeConfigRequestPayload, RefundModeConfigResponsePayload, RefundModeInfo, RefundOption, ReplacementDetails, ResponseDetail, SendSmsPayload, SendUserMobileOTP, SendUserMobileOtpResponse, Shipment, ShipmentConfig, ShipmentData, ShipmentDetail, ShipmentDetails, ShipmentDetails1, ShipmentHistoryResponse, ShipmentInfoResponse, ShipmentInternalPlatformViewResponse, ShipmentItem, ShipmentItemFulFillingStore, ShipmentItemMeta, ShipmentListingBrand, ShipmentListingChannel, ShipmentMeta, ShipmentPayments, ShipmentReasonsResponse, ShipmentResponseReasons, ShipmentsRequest, ShipmentsResponse, ShipmentStatus, ShipmentStatusData, ShipmentTags, ShipmentTimeStamp, ShippingInfo, SmsDataPayload, StatuesRequest, StatuesResponse, Store, StoreAddress, StoreDocuments, StoreEinvoice, StoreEwaybill, StoreGstCredentials, StoreReassign, StoreReassignResponse, SubLane, SuperLane, Tax, TaxDetails, TaxInfo, TrackingList, TransactionData, UpdatePackagingDimensionsPayload, UpdatePackagingDimensionsResponse, UpdateShipmentLockPayload, UpdateShipmentLockResponse, UpdateShipmentStatusRequest, UpdateShipmentStatusResponseBody, UploadConsent, URL, UserData, UserDataInfo, UserDetailsData, VerifyMobileOTP, VerifyOtpData, VerifyOtpResponse, VerifyOtpResponseData, Weight, AddProxyReq, AddProxyResponse, APIError, ApplicationPermissions, ApprovedPermissions, ApprovedPermissionsInfo, Benefits, Callback, CategoryL1, CategoryL2, CommingSoon, ContactInfo, ExtensionCommon, ExtensionDetails, ExtensionItems, ExtensionList, ExtensionListItems, ExtensionResponse, ExtensionSuggestion, ExtensionSuggestionList, getProxyPathRes, ListingInfo, ModifyPartnerReq, OrganizationBasicInfo, Pagination, PartnerInviteDetails, PartnerList, PartnerRequestList, Plans, PublicExtension, RemoveProxyResponse, RequestedPermissions, Scope, Screenshots, SetupProductRes, SubscriptionRequest, SubscriptionRes, UninstallExtension, AddBeneficiaryDetailsOTPRequest, BankDetailsForOTP, CancelOrResendPaymentLinkRequest, CancelPaymentLinkResponse, CODdata, Code, CreatePaymentLinkMeta, CreatePaymentLinkRequest, CreatePaymentLinkResponse, DeletePayoutResponse, DeleteSubscriptionPaymentMethodResponse, EdcAddRequest, EdcAggregatorAndModelListResponse, EdcDevice, EdcDeviceAddResponse, EdcDeviceDetailsResponse, EdcDeviceListResponse, EdcDeviceStatsResponse, EdcDeviceUpdateResponse, EdcModelData, EdcUpdateRequest, ErrorCodeAndDescription, ErrorCodeDescription, ErrorDescription, GetOauthUrlResponse, GetPaymentCode, GetPaymentCodeResponse, GetPaymentLinkResponse, GetUserCODLimitResponse, HttpErrorCodeAndResponse, IfscCodeResponse, IntentApp, IntentAppErrorList, LinkStatus, MerchantOnBoardingRequest, MerchantOnBoardingResponse, NotFoundResourceError, OrderBeneficiaryDetails, OrderBeneficiaryResponse, PaymentCode, PaymentConfirmationRequest, PaymentConfirmationResponse, PaymentGatewayConfig, PaymentGatewayConfigRequest, PaymentGatewayConfigResponse, PaymentGatewayToBeReviewed, PaymentInitializationRequest, PaymentInitializationResponse, PaymentModeList, PaymentModeLogo, PaymentObjectListSerializer, PaymentOptions, PaymentOptionsResponse, PaymentStatusBulkHandlerRequest, PaymentStatusBulkHandlerResponse, PaymentStatusObject, PaymentStatusUpdateRequest, PaymentStatusUpdateResponse, PayoutBankDetails, PayoutRequest, PayoutResponse, PayoutsResponse, PollingPaymentLinkResponse, RefundAccountResponse, RepaymentDetailsSerialiserPayAll, RepaymentRequestDetails, RepaymentResponse, ResendOrCancelPaymentRequest, ResendOrCancelPaymentResponse, ResendPaymentLinkResponse, RevokeOAuthToken, RootPaymentMode, SaveSubscriptionSetupIntentRequest, SaveSubscriptionSetupIntentResponse, SetCODForUserRequest, SetCODOptionResponse, StatisticsData, SubscriptionConfigResponse, SubscriptionPaymentMethodResponse, UpdatePayoutRequest, UpdatePayoutResponse, ValidateCustomerRequest, ValidateCustomerResponse, AppUser, ConfigurationRequest, ConfigurationRes, E, Giveaway, GiveawayAudience, GiveawayResponse, HistoryRes, Offer, Points, PointsHistory, Referral, RewardsAudience, RewardsRule, RewardUser, Schedule, SetConfigurationRes, ShareMessages, UserRes, Attribution, CampaignShortLink, ClickStatsItem, ClickStatsResponse, ErrorRes, RedirectDevice, Redirects, ShortLinkList, ShortLinkReq, ShortLinkRes, SocialMediaTags, UrlInfo, WebRedirect, AddThemeRequestSchema, AllAvailablePageSchema, AssetsSchema, AvailablePagePredicate, AvailablePageRoutePredicate, AvailablePageSchema, AvailablePageSchemaSections, AvailablePageScreenPredicate, AvailablePageSectionMetaAttributes, AvailablePageSeo, AvailablePageUserPredicate, availableSectionSchema, BlitzkriegApiErrorSchema, BlitzkriegInternalServerErrorSchema, BlitzkriegNotFoundSchema, Blocks, BlocksProps, Bold, Colors, CommonJs, Config, ConfigPage, Css, Custom, Font, FontsSchema, FontsSchemaItems, FontsSchemaItemsFiles, GlobalSchema, GlobalSchemaProps, Images, Information, Light, ListSchemaItem, Medium, PaginationSchema, Preset, Regular, Sections, SemiBold, Src, ThemesListingResponseSchema, ThemesSchema, UmdJs, UpgradableThemeSchema, Variants, Accountkit, ArchiveUserRequestSchema, ArchiveUserSuccess, AuthenticationApiErrorSchema, AuthenticationInternalServerErrorSchema, AuthSuccess, AuthSuccessUser, AuthSuccessUserDebug, AuthSuccessUserEmails, BlockUserRequestSchema, BlockUserSuccess, CodeRequestBodySchema, CreateUserGroupSchema, CreateUserRequestSchema, CreateUserResponseSchema, CreateUserSessionRequestSchema, CreateUserSessionResponseSchema, CustomerListResponseSchema, DeleteAccountConsent, DeleteAccountReasons, DeleteApplicationUserRequestSchema, DeleteUserSuccess, EditEmailRequestSchema, EditMobileRequestSchema, EditProfileMobileSchema, EditProfileRequestSchema, EmailOtpSuccess, Facebook, FlashCard, ForgotPasswordRequestSchema, FormRegisterRequestSchema, FormRegisterRequestSchemaPhone, Google, HasPasswordSuccess, Login, LoginSuccess, LogoutSuccess, LookAndFeel, MetaSchema, NotFoundSchema, OAuthRequestAppleSchema, OAuthRequestAppleSchemaOauth, OAuthRequestAppleSchemaProfile, OAuthRequestSchema, OAuthRequestSchemaOauth2, OAuthRequestSchemaProfile, OtpSuccess, PasswordLoginRequestSchema, PlatformEmail, PlatformMobile, PlatformSchema, ProfileEditSuccess, ProfileEditSuccessSchema, RegisterFormSuccess, RegisterRequiredFields, RegisterRequiredFieldsEmail, RegisterRequiredFieldsMobile, RequiredFields, ResetPasswordSuccess, SendEmailOtpRequestSchema, SendEmailVerifyLinkSuccess, SendMobileOtpRequestSchema, SendMobileVerifyLinkSuccess, SendOtpRequestSchema, SendOtpResponse, SendResetPasswordEmailRequestSchema, SendResetPasswordMobileRequestSchema, SendVerificationLinkMobileRequestSchema, SessionDeleteResponseSchema, SessionExpiry, SessionListResponseInfo, SessionListResponseSchema, SessionListSuccess, Social, SocialTokens, TokenRequestBodySchema, UnauthenticatedSchema, UnauthorizedSchema, UnDeleteUserRequestSchema, UnDeleteUserSuccess, UpdatePasswordRequestSchema, UpdateUserGroupSchema, UpdateUserRequestSchema, UserEmails, UserGroupListResponseSchema, UserGroupResponseSchema, UserObjectSchema, UserPhoneNumbers, UserSearchResponseSchema, VerifyEmailOtpRequestSchema, VerifyEmailOTPSuccess, VerifyEmailSuccess, VerifyMobileOTPSuccess, VerifyOtpRequestSchema, VerifyOtpSuccess, Association, AuthMeta, EventConfig, EventConfigBase, EventConfigList, EventConfigResponse, EventPayload, EventProcessedStatus, SubscriberConfig, SubscriberConfigList, SubscriberEvent, SubscriberResponse };
25
25
  }
26
- import Lead = require("./Lead/LeadPlatformApplicationClient");
27
- import Theme = require("./Theme/ThemePlatformApplicationClient");
28
- import User = require("./User/UserPlatformApplicationClient");
29
- import Content = require("./Content/ContentPlatformApplicationClient");
30
- import Communication = require("./Communication/CommunicationPlatformApplicationClient");
31
- import Payment = require("./Payment/PaymentPlatformApplicationClient");
32
- import Order = require("./Order/OrderPlatformApplicationClient");
26
+ import Cart = require("./Cart/CartPlatformApplicationClient");
33
27
  import Catalog = require("./Catalog/CatalogPlatformApplicationClient");
34
- import FileStorage = require("./FileStorage/FileStoragePlatformApplicationClient");
35
- import Share = require("./Share/SharePlatformApplicationClient");
28
+ import Communication = require("./Communication/CommunicationPlatformApplicationClient");
36
29
  import Configuration = require("./Configuration/ConfigurationPlatformApplicationClient");
37
- import Cart = require("./Cart/CartPlatformApplicationClient");
38
- import Rewards = require("./Rewards/RewardsPlatformApplicationClient");
30
+ import Content = require("./Content/ContentPlatformApplicationClient");
31
+ import FileStorage = require("./FileStorage/FileStoragePlatformApplicationClient");
32
+ import Lead = require("./Lead/LeadPlatformApplicationClient");
33
+ import Order = require("./Order/OrderPlatformApplicationClient");
39
34
  import Partner = require("./Partner/PartnerPlatformApplicationClient");
40
- type Application = any;
41
- type ApplicationAuth = any;
42
- type ApplicationCors = any;
43
- type ApplicationMeta = any;
44
- type ApplicationRedirections = any;
45
- type ApplicationResponse = any;
46
- type ApplicationWebsite = any;
35
+ import Payment = require("./Payment/PaymentPlatformApplicationClient");
36
+ import Rewards = require("./Rewards/RewardsPlatformApplicationClient");
37
+ import Share = require("./Share/SharePlatformApplicationClient");
38
+ import Theme = require("./Theme/ThemePlatformApplicationClient");
39
+ import User = require("./User/UserPlatformApplicationClient");
47
40
  type BadRequest = any;
48
- type Currency = any;
49
- type Domain = any;
50
- type LocationCountry = any;
51
- type LocationDefaultCurrency = any;
52
- type LocationDefaultLanguage = any;
53
- type Locations = any;
54
- type NotFound = any;
41
+ type CreateLogResponse = any;
42
+ type DeviceInfo = any;
43
+ type EntityObj = any;
44
+ type EntityObject = any;
45
+ type EntityTypeObj = any;
46
+ type EntityTypesResponse = any;
47
+ type InternalServerError = any;
48
+ type Location = any;
49
+ type LogDocs = any;
50
+ type LogMetaObj = any;
51
+ type LogSchemaResponse = any;
52
+ type Modifier = any;
53
+ type RequestBodyAuditLog = any;
54
+ type ResourceNotFound = any;
55
+ type CancelSubscriptionReq = any;
56
+ type CancelSubscriptionRes = any;
57
+ type ChargeLineItem = any;
58
+ type CheckValidityResponse = any;
59
+ type CreateOneTimeCharge = any;
60
+ type CreateOneTimeChargeResponse = any;
61
+ type CreateSubscriptionCharge = any;
62
+ type CreateSubscriptionResponse = any;
63
+ type CurrentPeriod = any;
64
+ type DetailedPlan = any;
65
+ type DetailedPlanComponents = any;
66
+ type EntityChargePrice = any;
67
+ type EntityChargeRecurring = any;
68
+ type EntitySubscription = any;
69
+ type Invoice = any;
70
+ type InvoiceDetails = any;
71
+ type InvoiceDetailsClient = any;
72
+ type InvoiceDetailsPaymentMethods = any;
73
+ type InvoiceDetailsPaymentMethodsData = any;
74
+ type InvoiceDetailsPaymentMethodsDataChecks = any;
75
+ type InvoiceDetailsPaymentMethodsDataNetworks = any;
76
+ type InvoiceDetailsPaymentMethodsDataThreeDSecureUsage = any;
77
+ type InvoiceDetailsPeriod = any;
78
+ type InvoiceDetailsStatusTrail = any;
79
+ type InvoiceItems = any;
80
+ type InvoiceItemsPeriod = any;
81
+ type InvoiceItemsPlan = any;
82
+ type InvoiceItemsPlanRecurring = any;
83
+ type InvoicePaymentMethod = any;
84
+ type Invoices = any;
85
+ type InvoicesData = any;
86
+ type InvoicesDataClient = any;
87
+ type InvoicesDataPaymentMethod = any;
88
+ type InvoicesDataPeriod = any;
89
+ type OneTimeChargeEntity = any;
90
+ type OneTimeChargeItem = any;
55
91
  type Page = any;
56
- type SecureUrl = any;
57
- type AddTicketPayload = any;
58
- type AgentChangePayload = any;
59
- type CategoryData = any;
60
- type CloseVideoRoomResponse = any;
61
- type CommunicationDetails = any;
62
- type CreateCustomFormPayload = any;
63
- type CreatedOn = any;
64
- type CreateVideoRoomPayload = any;
65
- type CreateVideoRoomResponse = any;
66
- type CustomForm = any;
67
- type CustomFormList = any;
68
- type CustomFormSubmissionPayload = any;
69
- type Debug = any;
70
- type EditCustomFormPayload = any;
71
- type EditTicketPayload = any;
72
- type Email = any;
73
- type FeedbackForm = any;
74
- type FeedbackResponseItem = any;
75
- type Filter = any;
76
- type GetParticipantsInsideVideoRoomResponse = any;
77
- type GetTokenForVideoRoomResponse = any;
78
- type IntegrationConfig = any;
79
- type NotifyUser = any;
80
- type Participant = any;
81
- type PhoneNumber = any;
82
- type PollForAssignment = any;
83
- type Priority = any;
84
- type Status = any;
85
- type SubmitButton = any;
86
- type SubmitCustomFormResponse = any;
87
- type SupportGeneralConfig = any;
88
- type Ticket = any;
89
- type TicketAsset = any;
90
- type TicketCategory = any;
91
- type TicketContent = any;
92
- type TicketContext = any;
93
- type TicketFeedback = any;
94
- type TicketFeedbackForm = any;
95
- type TicketFeedbackList = any;
96
- type TicketFeedbackPayload = any;
97
- type TicketHistory = any;
98
- type TicketHistoryList = any;
99
- type TicketHistoryPayload = any;
100
- type TicketList = any;
101
- type TicketSubCategory = any;
102
- type UserSchema = any;
103
- type AddThemeRequestSchema = any;
104
- type AllAvailablePageSchema = any;
105
- type AssetsSchema = any;
106
- type AvailablePagePredicate = any;
107
- type AvailablePageRoutePredicate = any;
108
- type AvailablePageSchema = any;
109
- type AvailablePageSchemaSections = any;
110
- type AvailablePageScreenPredicate = any;
111
- type AvailablePageSectionMetaAttributes = any;
112
- type AvailablePageSeo = any;
113
- type AvailablePageUserPredicate = any;
114
- type availableSectionSchema = any;
115
- type BlitzkriegApiErrorSchema = any;
116
- type BlitzkriegInternalServerErrorSchema = any;
117
- type BlitzkriegNotFoundSchema = any;
118
- type Blocks = any;
119
- type BlocksProps = any;
120
- type Bold = any;
121
- type Colors = any;
122
- type CommonJs = any;
123
- type Config = any;
124
- type ConfigPage = any;
125
- type Css = any;
126
- type Custom = any;
127
- type Font = any;
128
- type FontsSchema = any;
129
- type FontsSchemaItems = any;
130
- type FontsSchemaItemsFiles = any;
131
- type GlobalSchema = any;
132
- type GlobalSchemaProps = any;
133
- type Images = any;
134
- type Information = any;
135
- type Light = any;
136
- type ListSchemaItem = any;
137
- type Medium = any;
138
- type PaginationSchema = any;
139
- type Preset = any;
140
- type Regular = any;
141
- type Sections = any;
142
- type SemiBold = any;
143
- type Src = any;
144
- type ThemesListingResponseSchema = any;
145
- type ThemesSchema = any;
146
- type UmdJs = any;
147
- type UpgradableThemeSchema = any;
148
- type Variants = any;
149
- type Accountkit = any;
150
- type ArchiveUserRequestSchema = any;
151
- type ArchiveUserSuccess = any;
152
- type AuthenticationApiErrorSchema = any;
153
- type AuthenticationInternalServerErrorSchema = any;
154
- type AuthSuccess = any;
155
- type AuthSuccessUser = any;
156
- type AuthSuccessUserDebug = any;
157
- type AuthSuccessUserEmails = any;
158
- type BlockUserRequestSchema = any;
159
- type BlockUserSuccess = any;
160
- type CodeRequestBodySchema = any;
161
- type CreateUserGroupSchema = any;
162
- type CreateUserRequestSchema = any;
163
- type CreateUserResponseSchema = any;
164
- type CreateUserSessionRequestSchema = any;
165
- type CreateUserSessionResponseSchema = any;
166
- type CustomerListResponseSchema = any;
167
- type DeleteAccountConsent = any;
168
- type DeleteAccountReasons = any;
169
- type DeleteApplicationUserRequestSchema = any;
170
- type DeleteUserSuccess = any;
171
- type EditEmailRequestSchema = any;
172
- type EditMobileRequestSchema = any;
173
- type EditProfileMobileSchema = any;
174
- type EditProfileRequestSchema = any;
175
- type EmailOtpSuccess = any;
176
- type Facebook = any;
177
- type FlashCard = any;
178
- type ForgotPasswordRequestSchema = any;
179
- type FormRegisterRequestSchema = any;
180
- type FormRegisterRequestSchemaPhone = any;
181
- type Google = any;
182
- type HasPasswordSuccess = any;
183
- type Login = any;
184
- type LoginSuccess = any;
185
- type LogoutSuccess = any;
186
- type LookAndFeel = any;
187
- type MetaSchema = any;
188
- type NotFoundSchema = any;
189
- type OAuthRequestAppleSchema = any;
190
- type OAuthRequestAppleSchemaOauth = any;
191
- type OAuthRequestAppleSchemaProfile = any;
192
- type OAuthRequestSchema = any;
193
- type OAuthRequestSchemaOauth2 = any;
194
- type OAuthRequestSchemaProfile = any;
195
- type OtpSuccess = any;
196
- type PasswordLoginRequestSchema = any;
197
- type PlatformEmail = any;
198
- type PlatformMobile = any;
199
- type PlatformSchema = any;
200
- type ProfileEditSuccess = any;
201
- type ProfileEditSuccessSchema = any;
202
- type RegisterFormSuccess = any;
203
- type RegisterRequiredFields = any;
204
- type RegisterRequiredFieldsEmail = any;
205
- type RegisterRequiredFieldsMobile = any;
206
- type RequiredFields = any;
207
- type ResetPasswordSuccess = any;
208
- type SendEmailOtpRequestSchema = any;
209
- type SendEmailVerifyLinkSuccess = any;
210
- type SendMobileOtpRequestSchema = any;
211
- type SendMobileVerifyLinkSuccess = any;
212
- type SendOtpRequestSchema = any;
213
- type SendOtpResponse = any;
214
- type SendResetPasswordEmailRequestSchema = any;
215
- type SendResetPasswordMobileRequestSchema = any;
216
- type SendVerificationLinkMobileRequestSchema = any;
217
- type SessionDeleteResponseSchema = any;
218
- type SessionExpiry = any;
219
- type SessionListResponseInfo = any;
220
- type SessionListResponseSchema = any;
221
- type SessionListSuccess = any;
222
- type Social = any;
223
- type SocialTokens = any;
224
- type TokenRequestBodySchema = any;
225
- type UnauthenticatedSchema = any;
226
- type UnauthorizedSchema = any;
227
- type UnDeleteUserRequestSchema = any;
228
- type UnDeleteUserSuccess = any;
229
- type UpdatePasswordRequestSchema = any;
230
- type UpdateUserGroupSchema = any;
231
- type UpdateUserRequestSchema = any;
232
- type UserEmails = any;
233
- type UserGroupListResponseSchema = any;
234
- type UserGroupResponseSchema = any;
235
- type UserObjectSchema = any;
236
- type UserPhoneNumbers = any;
237
- type UserSearchResponseSchema = any;
238
- type VerifyEmailOtpRequestSchema = any;
239
- type VerifyEmailOTPSuccess = any;
240
- type VerifyEmailSuccess = any;
241
- type VerifyMobileOTPSuccess = any;
242
- type VerifyOtpRequestSchema = any;
243
- type VerifyOtpSuccess = any;
244
- type Action = any;
245
- type ActionPage = any;
246
- type AdminAnnouncementSchema = any;
247
- type AnnouncementAuthorSchema = any;
248
- type AnnouncementPageSchema = any;
249
- type AnnouncementSchema = any;
250
- type AnnouncementsResponseSchema = any;
251
- type ApplicationLegal = any;
252
- type ApplicationLegalFAQ = any;
253
- type Asset = any;
254
- type Author = any;
255
- type BlogGetResponse = any;
256
- type BlogRequest = any;
257
- type BlogSchema = any;
258
- type CategoryRequestSchema = any;
259
- type CategorySchema = any;
260
- type ChildrenSchema = any;
261
- type CommonError = any;
262
- type ConfigurationSchema = any;
263
- type ContactSchema = any;
264
- type ContentAPIError = any;
265
- type ContentSchema = any;
266
- type CreateAnnouncementSchema = any;
267
- type CreatedBySchema = any;
268
- type CreateFaqCategoryRequestSchema = any;
269
- type CreateFaqCategorySchema = any;
270
- type CreateFaqResponseSchema = any;
271
- type CreateFaqSchema = any;
272
- type CreateTagRequestSchema = any;
273
- type CreateTagSchema = any;
274
- type CronSchedule = any;
275
- type CustomMetaTag = any;
276
- type CustomPage = any;
277
- type CustomPageSchema = any;
278
- type DataLoaderResetResponseSchema = any;
279
- type DataLoaderResponseSchema = any;
280
- type DataLoaderSchema = any;
281
- type DataLoaderSourceSchema = any;
282
- type DataLoadersSchema = any;
283
- type DateMeta = any;
284
- type DefaultNavigationResponse = any;
285
- type Detail = any;
286
- type EditorMeta = any;
287
- type EmailProperties = any;
288
- type EmailSchema = any;
289
- type FAQ = any;
290
- type FAQCategorySchema = any;
291
- type FaqResponseSchema = any;
292
- type FaqSchema = any;
293
- type FeatureImage = any;
294
- type GeneratedSEOContent = any;
295
- type GenerateSEOContent = any;
296
- type GetAnnouncementListSchema = any;
297
- type GetFaqCategoriesSchema = any;
298
- type GetFaqCategoryBySlugSchema = any;
299
- type GetFaqSchema = any;
300
- type HandpickedTagSchema = any;
301
- type LandingPage = any;
302
- type LandingPageGetResponse = any;
303
- type LandingPageSchema = any;
304
- type Language = any;
305
- type LocaleLanguage = any;
306
- type Navigation = any;
307
- type NavigationGetResponse = any;
308
- type NavigationReference = any;
309
- type NavigationRequest = any;
310
- type NavigationSchema = any;
311
- type NextSchedule = any;
312
- type Orientation = any;
313
- type PageContent = any;
314
- type PageGetResponse = any;
315
- type PageMeta = any;
316
- type PageMetaSchema = any;
317
- type PagePublishRequest = any;
318
- type PageRequest = any;
319
- type PageSchema = any;
320
- type PageSpec = any;
321
- type PageSpecItem = any;
322
- type PageSpecParam = any;
323
- type PathMappingSchema = any;
324
- type PathSourceSchema = any;
325
- type PhoneProperties = any;
326
- type PhoneSchema = any;
327
- type RemoveHandpickedSchema = any;
328
- type ResourceContent = any;
329
- type ScheduleSchema = any;
330
- type ScheduleStartSchema = any;
331
- type SEO = any;
332
- type SeoComponent = any;
333
- type SEOImage = any;
334
- type SeoSchema = any;
335
- type Slideshow = any;
336
- type SlideshowGetResponse = any;
337
- type SlideshowMedia = any;
338
- type SlideshowRequest = any;
339
- type SlideshowSchema = any;
340
- type Support = any;
341
- type TagDeleteSuccessResponse = any;
342
- type TagSchema = any;
343
- type TagSourceSchema = any;
344
- type TagsSchema = any;
345
- type UpdateFaqCategoryRequestSchema = any;
346
- type UpdateHandpickedSchema = any;
347
- type CancelSubscriptionReq = any;
348
- type CancelSubscriptionRes = any;
349
- type ChargeLineItem = any;
350
- type CheckValidityResponse = any;
351
- type CreateOneTimeCharge = any;
352
- type CreateOneTimeChargeResponse = any;
353
- type CreateSubscriptionCharge = any;
354
- type CreateSubscriptionResponse = any;
355
- type CurrentPeriod = any;
356
- type DetailedPlan = any;
357
- type DetailedPlanComponents = any;
358
- type EntityChargePrice = any;
359
- type EntityChargeRecurring = any;
360
- type EntitySubscription = any;
361
- type InternalServerError = any;
362
- type Invoice = any;
363
- type InvoiceDetails = any;
364
- type InvoiceDetailsClient = any;
365
- type InvoiceDetailsPaymentMethods = any;
366
- type InvoiceDetailsPaymentMethodsData = any;
367
- type InvoiceDetailsPaymentMethodsDataChecks = any;
368
- type InvoiceDetailsPaymentMethodsDataNetworks = any;
369
- type InvoiceDetailsPaymentMethodsDataThreeDSecureUsage = any;
370
- type InvoiceDetailsPeriod = any;
371
- type InvoiceDetailsStatusTrail = any;
372
- type InvoiceItems = any;
373
- type InvoiceItemsPeriod = any;
374
- type InvoiceItemsPlan = any;
375
- type InvoiceItemsPlanRecurring = any;
376
- type InvoicePaymentMethod = any;
377
- type Invoices = any;
378
- type InvoicesData = any;
379
- type InvoicesDataClient = any;
380
- type InvoicesDataPaymentMethod = any;
381
- type InvoicesDataPeriod = any;
382
- type OneTimeChargeEntity = any;
383
- type OneTimeChargeItem = any;
384
92
  type Phone = any;
385
93
  type Plan = any;
386
94
  type PlanRecurring = any;
387
- type ResourceNotFound = any;
388
95
  type Subscription = any;
389
96
  type SubscriptionActivateReq = any;
390
97
  type SubscriptionActivateRes = any;
@@ -408,354 +115,174 @@ type SubscriptionTrial = any;
408
115
  type SubscriptionTrialPeriod = any;
409
116
  type UnauthenticatedApplication = any;
410
117
  type UnauthenticatedUser = any;
411
- type Audience = any;
412
- type AudienceReq = any;
413
- type Audiences = any;
414
- type BadRequestSchema = any;
415
- type BigqueryHeadersReq = any;
416
- type BigqueryHeadersRes = any;
417
- type BigqueryHeadersResHeaders = any;
418
- type Campaign = any;
419
- type CampaignEmail = any;
420
- type CampaignEmailTemplate = any;
421
- type CampaignReq = any;
422
- type Campaigns = any;
423
- type CampignEmailProvider = any;
424
- type EmailProvider = any;
425
- type EmailProviderReq = any;
426
- type EmailProviderReqFrom = any;
427
- type EmailProviders = any;
428
- type EmailTemplate = any;
429
- type EmailTemplateDeleteFailureRes = any;
430
- type EmailTemplateDeleteSuccessRes = any;
431
- type EmailTemplateHeaders = any;
432
- type EmailTemplateKeys = any;
433
- type EmailTemplateReq = any;
434
- type EmailTemplateRes = any;
435
- type EmailTemplates = any;
436
- type EngineRequest = any;
437
- type EngineResponse = any;
438
- type EventSubscription = any;
439
- type EventSubscriptions = any;
440
- type EventSubscriptionTemplate = any;
441
- type EventSubscriptionTemplateEmail = any;
442
- type EventSubscriptionTemplateSms = any;
443
- type GetNRecordsCsvReq = any;
444
- type GetNRecordsCsvRes = any;
445
- type GetNRecordsCsvResItems = any;
446
- type GetStats = any;
447
- type Job = any;
448
- type JobLog = any;
449
- type JobLogs = any;
450
- type Jobs = any;
451
- type Log = any;
452
- type LogEmail = any;
453
- type LogMeta = any;
454
- type LogPushnotification = any;
455
- type Logs = any;
456
- type MetaStructure = any;
457
- type Notification = any;
458
- type PayloadEmailProviderStructure = any;
459
- type PayloadEmailStructure = any;
460
- type PayloadEmailTemplateStructure = any;
461
- type PayloadSmsProviderStructure = any;
462
- type PayloadSmsStructure = any;
463
- type PayloadSmsTemplateStructure = any;
464
- type PayloadStructure = any;
465
- type PushtokenReq = any;
466
- type PushtokenRes = any;
467
- type RecipientHeaders = any;
468
- type SendOtpCommsReq = any;
469
- type SendOtpCommsReqData = any;
470
- type SendOtpCommsReqEmail = any;
471
- type SendOtpCommsReqSms = any;
472
- type SendOtpCommsRes = any;
473
- type SendOtpCommsResEmail = any;
474
- type SendOtpCommsResSms = any;
475
- type SendOtpEmailCommsTemplate = any;
476
- type SendOtpSmsCommsProvider = any;
477
- type SendOtpSmsCommsTemplate = any;
478
- type SmsProvider = any;
479
- type SmsProviderReq = any;
480
- type SmsProviders = any;
481
- type SmsTemplate = any;
482
- type SmsTemplateDeleteFailureRes = any;
483
- type SmsTemplateDeleteSuccessRes = any;
484
- type SmsTemplateMessage = any;
485
- type SmsTemplateReq = any;
486
- type SmsTemplateRes = any;
487
- type SmsTemplates = any;
488
- type Stats = any;
489
- type StatsImported = any;
490
- type StatsProcessed = any;
491
- type StatsProcessedEmail = any;
492
- type StatsProcessedSms = any;
493
- type SystemEmailTemplate = any;
494
- type SystemEmailTemplates = any;
495
- type SystemNotification = any;
496
- type SystemNotifications = any;
497
- type SystemNotificationSettings = any;
498
- type SystemNotificationsPage = any;
499
- type SystemNotificationUser = any;
500
- type SystemSmsTemplate = any;
501
- type SystemSmsTemplates = any;
502
- type TemplateAndType = any;
503
- type TriggerJobRequest = any;
504
- type TriggerJobResponse = any;
505
- type VerifyOtpCommsErrorRes = any;
506
- type VerifyOtpCommsReq = any;
507
- type VerifyOtpCommsSuccessRes = any;
508
- type AddBeneficiaryDetailsOTPRequest = any;
509
- type BankDetailsForOTP = any;
510
- type CODdata = any;
511
- type DeletePayoutResponse = any;
512
- type DeleteSubscriptionPaymentMethodResponse = any;
513
- type ErrorCodeAndDescription = any;
514
- type ErrorCodeDescription = any;
515
- type GetOauthUrlResponse = any;
516
- type GetUserCODLimitResponse = any;
517
- type HttpErrorCodeAndResponse = any;
518
- type IfscCodeResponse = any;
519
- type IntentApp = any;
520
- type IntentAppErrorList = any;
521
- type MultiTenderPaymentMeta = any;
522
- type MultiTenderPaymentMethod = any;
523
- type NotFoundResourceError = any;
524
- type OrderBeneficiaryDetails = any;
525
- type OrderBeneficiaryResponse = any;
526
- type PaymentConfirmationRequest = any;
527
- type PaymentConfirmationResponse = any;
528
- type PaymentGatewayConfig = any;
529
- type PaymentGatewayConfigRequest = any;
530
- type PaymentGatewayConfigResponse = any;
531
- type PaymentGatewayToBeReviewed = any;
532
- type PaymentModeList = any;
533
- type PaymentModeLogo = any;
534
- type PaymentOptions = any;
535
- type PaymentOptionsResponse = any;
536
- type PayoutBankDetails = any;
537
- type PayoutRequest = any;
538
- type PayoutResponse = any;
539
- type PayoutsResponse = any;
540
- type RefundAccountResponse = any;
541
- type RevokeOAuthToken = any;
542
- type RootPaymentMode = any;
543
- type SaveSubscriptionSetupIntentRequest = any;
544
- type SaveSubscriptionSetupIntentResponse = any;
545
- type SetCODForUserRequest = any;
546
- type SetCODOptionResponse = any;
547
- type SubscriptionConfigResponse = any;
548
- type SubscriptionPaymentMethodResponse = any;
549
- type UpdatePayoutRequest = any;
550
- type UpdatePayoutResponse = any;
551
- type ActionInfo = any;
552
- type Affiliate = any;
553
- type AffiliateAppConfig = any;
554
- type AffiliateAppConfigMeta = any;
555
- type AffiliateBag = any;
556
- type AffiliateBagDetails = any;
557
- type AffiliateConfig = any;
558
- type AffiliateDetails = any;
559
- type AffiliateInventoryArticleAssignmentConfig = any;
560
- type AffiliateInventoryConfig = any;
561
- type AffiliateInventoryLogisticsConfig = any;
562
- type AffiliateInventoryOrderConfig = any;
563
- type AffiliateInventoryPaymentConfig = any;
564
- type AffiliateInventoryStoreConfig = any;
565
- type AffiliateMeta = any;
566
- type AffiliateStoreIdMapping = any;
567
- type AnnouncementResponse = any;
568
- type AnnouncementsResponse = any;
569
- type AppliedPromos = any;
570
- type Article = any;
571
- type ArticleDetails = any;
572
- type ArticleDetails1 = any;
573
- type Attributes = any;
574
- type B2BPODetails = any;
575
- type BagConfigs = any;
576
- type BagDetailsPlatformResponse = any;
577
- type BagGST = any;
578
- type BagGSTDetails = any;
579
- type BagMeta = any;
580
- type BagReturnableCancelableStatus = any;
581
- type Bags = any;
582
- type BagStateMapper = any;
583
- type BagStateTransitionMap = any;
584
- type BagStatusHistory = any;
585
- type BagUnit = any;
586
- type BaseResponse = any;
587
- type BillingInfo = any;
588
- type BillingStaffDetails = any;
589
- type Brand = any;
590
- type BulkActionTemplate = any;
591
- type BulkActionTemplateResponse = any;
592
- type BuyerDetails = any;
118
+ type AbandonedCart = any;
119
+ type AbandonedCartResponse = any;
120
+ type ActionQuery = any;
121
+ type ActivePromosResponse = any;
122
+ type AddCartDetailResponse = any;
123
+ type AddCartRequest = any;
124
+ type AddProductCart = any;
125
+ type AppliedFreeArticles = any;
126
+ type AppliedPromotion = any;
127
+ type ApplyCouponRequest = any;
128
+ type ArticlePriceInfo = any;
129
+ type BaseInfo = any;
130
+ type BasePrice = any;
131
+ type BulkBundleRestriction = any;
593
132
  type BuyRules = any;
594
- type Charge = any;
595
- type CheckResponse = any;
596
- type Click2CallResponse = any;
597
- type CompanyDetails = any;
598
- type ContactDetails = any;
599
- type CreateChannelConfig = any;
600
- type CreateChannelConfigData = any;
601
- type CreateChannelConfigResponse = any;
602
- type CreateChannelConifgErrorResponse = any;
603
- type CreateChannelPaymentInfo = any;
604
- type CreateOrderAPI = any;
605
- type CreateOrderErrorReponse = any;
606
- type CreateOrderPayload = any;
607
- type CreateOrderResponse = any;
608
- type CurrentStatus = any;
609
- type DataUpdates = any;
610
- type Dates = any;
611
- type DebugInfo = any;
612
- type Dimensions = any;
613
- type DiscountRules = any;
614
- type DispatchManifest = any;
615
- type Document = any;
616
- type DpConfiguration = any;
617
- type DPDetailsData = any;
618
- type EinvoiceInfo = any;
619
- type EInvoicePortalDetails = any;
620
- type Entities = any;
621
- type EntitiesDataUpdates = any;
622
- type EntitiesReasons = any;
623
- type EntityReasonData = any;
624
- type Error = any;
625
- type ErrorDetail = any;
626
- type ErrorResponse = any;
627
- type ErrorResponse1 = any;
628
- type FileResponse = any;
629
- type FileUploadResponse = any;
630
- type FilterInfoOption = any;
631
- type FiltersInfo = any;
632
- type FiltersResponse = any;
633
- type FinancialBreakup = any;
634
- type Formatted = any;
635
- type FulfillingStore = any;
636
- type FyndOrderIdList = any;
637
- type GetActionsResponse = any;
638
- type GetBagsPlatformResponse = any;
639
- type GSTDetailsData = any;
640
- type HistoryDict = any;
133
+ type CartBreakup = any;
134
+ type CartCheckoutResponse = any;
135
+ type CartCurrency = any;
136
+ type CartDeliveryModesResponse = any;
137
+ type CartDetailResponse = any;
138
+ type CartItem = any;
139
+ type CartItemCountResponse = any;
140
+ type CartItemMeta = any;
141
+ type CartList = any;
142
+ type CartMetaConfigAdd = any;
143
+ type CartMetaConfigUpdate = any;
144
+ type CartMetaMissingResponse = any;
145
+ type CartMetaResponse = any;
146
+ type CartProduct = any;
147
+ type CartProductIdentifer = any;
148
+ type CartProductInfo = any;
149
+ type CategoryInfo = any;
150
+ type Charges = any;
151
+ type CheckCart = any;
152
+ type CompareObject = any;
153
+ type Coupon = any;
154
+ type CouponAction = any;
155
+ type CouponAdd = any;
156
+ type CouponAuthor = any;
157
+ type CouponBreakup = any;
158
+ type CouponDateMeta = any;
159
+ type CouponDetails = any;
160
+ type CouponPartialUpdate = any;
161
+ type CouponSchedule = any;
162
+ type CouponsResponse = any;
163
+ type CouponUpdate = any;
164
+ type CouponValidity = any;
165
+ type DeleteAddressResponse = any;
166
+ type DeleteCartDetailResponse = any;
167
+ type DeleteCartRequest = any;
168
+ type DeliveryCharges = any;
169
+ type DiscountOffer = any;
170
+ type DiscountRule = any;
171
+ type DiscountRulesApp = any;
172
+ type DisplayBreakup = any;
173
+ type DisplayMeta = any;
174
+ type DisplayMeta1 = any;
175
+ type DisplayMetaDict = any;
176
+ type Files = any;
177
+ type FreeGiftItem = any;
178
+ type GeoLocation = any;
179
+ type GetCouponResponse = any;
180
+ type GetShareCartLinkRequest = any;
181
+ type GetShareCartLinkResponse = any;
641
182
  type Identifier = any;
642
- type InvalidateShipmentCacheNestedResponse = any;
643
- type InvalidateShipmentCachePayload = any;
644
- type InvalidateShipmentCacheResponse = any;
645
- type InvoiceInfo = any;
646
- type Item = any;
647
- type ItemCriterias = any;
648
- type LaneConfigResponse = any;
649
- type LineItem = any;
650
- type LocationDetails = any;
651
- type LockData = any;
652
- type MarketPlacePdf = any;
653
- type Meta = any;
654
- type Meta1 = any;
655
- type OrderBagArticle = any;
656
- type OrderBags = any;
657
- type OrderBrandName = any;
658
- type OrderConfig = any;
659
- type OrderDetails = any;
660
- type OrderDetailsData = any;
661
- type OrderDict = any;
662
- type OrderInfo = any;
663
- type OrderingStoreDetails = any;
664
- type OrderListingResponse = any;
665
- type OrderMeta = any;
666
- type OrderPriority = any;
667
- type OrderStatus = any;
668
- type OrderStatusData = any;
669
- type OrderStatusResult = any;
670
- type OrderUser = any;
671
- type OriginalFilter = any;
672
- type Page1 = any;
673
- type PaymentInfo = any;
183
+ type ItemCriteria = any;
184
+ type LoyaltyPoints = any;
185
+ type MultiCartResponse = any;
186
+ type MultiTenderPaymentMeta = any;
187
+ type MultiTenderPaymentMethod = any;
188
+ type OpenapiCartDetailsRequest = any;
189
+ type OpenapiCartDetailsResponse = any;
190
+ type OpenApiCartServiceabilityRequest = any;
191
+ type OpenApiCartServiceabilityResponse = any;
192
+ type OpenApiCheckoutResponse = any;
193
+ type OpenApiErrorResponse = any;
194
+ type OpenApiFiles = any;
195
+ type OpenApiOrderItem = any;
196
+ type OpenApiPlatformCheckoutReq = any;
197
+ type OperationErrorResponse = any;
198
+ type OverrideCartItem = any;
199
+ type OverrideCartItemPromo = any;
200
+ type OverrideCheckoutReq = any;
201
+ type OverrideCheckoutResponse = any;
202
+ type Ownership = any;
203
+ type Ownership1 = any;
204
+ type Ownership2 = any;
205
+ type PageCoupon = any;
206
+ type PaymentAllowValue = any;
207
+ type PaymentAllowValue1 = any;
208
+ type PaymentCouponValidate = any;
209
+ type PaymentMeta = any;
674
210
  type PaymentMethod = any;
675
- type PaymentMethods = any;
676
- type PaymentModeInfo = any;
677
- type PDFLinks = any;
678
- type PhoneDetails = any;
679
- type PlatformBreakupValues = any;
680
- type PlatformChannel = any;
681
- type PlatformDeliveryAddress = any;
682
- type PlatformItem = any;
683
- type PlatformOrderItems = any;
684
- type PlatformOrderUpdate = any;
685
- type PlatformShipment = any;
686
- type PlatformShipmentReasonsResponse = any;
687
- type PlatformShipmentTrack = any;
688
- type PlatformTrack = any;
689
- type PlatformUserDetails = any;
690
- type PostActivityHistory = any;
691
- type PostHistoryData = any;
692
- type PostHistoryDict = any;
693
- type PostHistoryFilters = any;
694
- type PostShipmentHistory = any;
695
- type Prices = any;
696
- type ProcessingDates = any;
697
- type Products = any;
698
- type ProductsDataUpdates = any;
699
- type ProductsDataUpdatesFilters = any;
700
- type ProductsReasons = any;
701
- type ProductsReasonsData = any;
702
- type ProductsReasonsFilters = any;
703
- type QuestionSet = any;
704
- type Reason = any;
705
- type ReasonsData = any;
706
- type ReplacementDetails = any;
707
- type ResponseDetail = any;
708
- type ReturnConfig = any;
709
- type SendSmsPayload = any;
710
- type Shipment = any;
711
- type ShipmentConfig = any;
712
- type ShipmentData = any;
713
- type ShipmentDetail = any;
714
- type ShipmentDetails = any;
715
- type ShipmentDetailsResponse = any;
716
- type ShipmentHistoryResponse = any;
717
- type ShipmentInfoResponse = any;
718
- type ShipmentInternalPlatformViewResponse = any;
719
- type ShipmentItem = any;
720
- type ShipmentItemFulFillingStore = any;
721
- type ShipmentMeta = any;
722
- type ShipmentPayments = any;
723
- type ShipmentsRequest = any;
724
- type ShipmentsResponse = any;
725
- type ShipmentStatus = any;
726
- type ShipmentStatusData = any;
727
- type ShipmentTimeStamp = any;
728
- type ShippingInfo = any;
729
- type SmsDataPayload = any;
730
- type StatuesRequest = any;
731
- type StatuesResponse = any;
732
- type Store = any;
733
- type StoreAddress = any;
734
- type StoreDocuments = any;
735
- type StoreEinvoice = any;
736
- type StoreEwaybill = any;
737
- type StoreGstCredentials = any;
738
- type StoreMeta = any;
739
- type StoreReassign = any;
740
- type StoreReassignResponse = any;
741
- type SubLane = any;
742
- type SuccessResponse = any;
743
- type SuperLane = any;
744
- type Tax = any;
745
- type TaxDetails = any;
746
- type TaxInfo = any;
747
- type TrackingList = any;
748
- type TransactionData = any;
749
- type UpdateShipmentLockPayload = any;
750
- type UpdateShipmentLockResponse = any;
751
- type UpdateShipmentStatusRequest = any;
752
- type UpdateShipmentStatusResponseBody = any;
753
- type UploadConsent = any;
754
- type URL = any;
755
- type UserData = any;
756
- type UserDataInfo = any;
757
- type UserDetailsData = any;
758
- type Weight = any;
211
+ type PaymentModes = any;
212
+ type PaymentSelectionLock = any;
213
+ type PickupStoreDetail = any;
214
+ type PlatformAddCartRequest = any;
215
+ type PlatformAddress = any;
216
+ type PlatformCartCheckoutDetailRequest = any;
217
+ type PlatformCartCheckoutDetailV2Request = any;
218
+ type PlatformCartMetaRequest = any;
219
+ type PlatformCartShipmentsResponse = any;
220
+ type PlatformGetAddressesResponse = any;
221
+ type PlatformSelectCartAddressRequest = any;
222
+ type PlatformShipmentResponse = any;
223
+ type PlatformUpdateCartRequest = any;
224
+ type PostOrder = any;
225
+ type PostOrder1 = any;
226
+ type PriceRange = any;
227
+ type ProductAction = any;
228
+ type ProductArticle = any;
229
+ type ProductAvailability = any;
230
+ type ProductAvailabilitySize = any;
231
+ type ProductImage = any;
232
+ type ProductPrice = any;
233
+ type ProductPriceInfo = any;
234
+ type PromiseFormatted = any;
235
+ type PromiseTimestamp = any;
236
+ type PromoMeta = any;
237
+ type PromotionAction = any;
238
+ type PromotionAdd = any;
239
+ type PromotionAuthor = any;
240
+ type PromotionDateMeta = any;
241
+ type PromotionListItem = any;
242
+ type PromotionPartialUpdate = any;
243
+ type PromotionPaymentModes = any;
244
+ type PromotionSchedule = any;
245
+ type PromotionsResponse = any;
246
+ type PromotionUpdate = any;
247
+ type RawBreakup = any;
248
+ type Restrictions = any;
249
+ type Restrictions1 = any;
250
+ type Rule = any;
251
+ type RuleDefinition = any;
252
+ type SaveAddressResponse = any;
253
+ type SharedCart = any;
254
+ type SharedCartDetails = any;
255
+ type SharedCartResponse = any;
256
+ type ShipmentArticle = any;
257
+ type ShipmentPromise = any;
258
+ type ShippingAddress = any;
259
+ type StaffCheckout = any;
260
+ type State = any;
261
+ type StoreDetailsResponse = any;
262
+ type StoreInfo = any;
263
+ type SuccessMessage = any;
264
+ type Tags = any;
265
+ type UpdateAddressResponse = any;
266
+ type UpdateCartDetailResponse = any;
267
+ type UpdateCartPaymentRequest = any;
268
+ type UpdateCartPaymentRequestV2 = any;
269
+ type UpdateCartRequest = any;
270
+ type UpdateCartShipmentItem = any;
271
+ type UpdateCartShipmentRequest = any;
272
+ type UpdateProductCart = any;
273
+ type UpdateUserCartMapping = any;
274
+ type UserCartMappingResponse = any;
275
+ type UserInfo = any;
276
+ type UserRegistered = any;
277
+ type UsesRemaining = any;
278
+ type UsesRemaining1 = any;
279
+ type UsesRestriction = any;
280
+ type UsesRestriction1 = any;
281
+ type Validation = any;
282
+ type Validity = any;
283
+ type Visibility = any;
284
+ type Action = any;
285
+ type ActionPage = any;
759
286
  type AllowSingleRequest = any;
760
287
  type AllSizes = any;
761
288
  type AppCatalogConfiguration = any;
@@ -787,9 +314,11 @@ type AttributeMasterMeta = any;
787
314
  type AttributeMasterSerializer = any;
788
315
  type AttributeSchemaRange = any;
789
316
  type AutocompleteAction = any;
317
+ type AutoCompleteMedia = any;
790
318
  type AutocompletePageAction = any;
791
319
  type AutocompleteResult = any;
792
320
  type BannerImage = any;
321
+ type Brand = any;
793
322
  type BrandItem = any;
794
323
  type BrandListingResponse = any;
795
324
  type BrandMeta = any;
@@ -853,6 +382,7 @@ type CreateSearchKeyword = any;
853
382
  type CrossSellingData = any;
854
383
  type CrossSellingResponse = any;
855
384
  type CustomOrder = any;
385
+ type DateMeta = any;
856
386
  type DefaultKeyRequest = any;
857
387
  type DeleteResponse = any;
858
388
  type Department = any;
@@ -867,7 +397,9 @@ type DepartmentResponse = any;
867
397
  type DepartmentsResponse = any;
868
398
  type DimensionResponse = any;
869
399
  type DimensionResponse1 = any;
400
+ type Document = any;
870
401
  type EntityConfiguration = any;
402
+ type ErrorResponse = any;
871
403
  type FilerList = any;
872
404
  type GenderDetail = any;
873
405
  type GetAddressSerializer = any;
@@ -956,6 +488,7 @@ type ManufacturerResponse1 = any;
956
488
  type Media = any;
957
489
  type Media1 = any;
958
490
  type Media2 = any;
491
+ type Meta = any;
959
492
  type MetaDataListingFilterMetaResponse = any;
960
493
  type MetaDataListingFilterResponse = any;
961
494
  type MetaDataListingResponse = any;
@@ -965,6 +498,7 @@ type MetaFields = any;
965
498
  type MOQData = any;
966
499
  type NetQuantity = any;
967
500
  type NetQuantityResponse = any;
501
+ type NextSchedule = any;
968
502
  type OptinCompanyBrandDetailsView = any;
969
503
  type OptinCompanyDetail = any;
970
504
  type OptinCompanyMetrics = any;
@@ -1022,6 +556,7 @@ type Quantities = any;
1022
556
  type QuantitiesArticle = any;
1023
557
  type Quantity = any;
1024
558
  type QuantityBase = any;
559
+ type ReturnConfig = any;
1025
560
  type ReturnConfig1 = any;
1026
561
  type ReturnConfig2 = any;
1027
562
  type ReturnConfigResponse = any;
@@ -1038,6 +573,8 @@ type SizeDistribution = any;
1038
573
  type SizeGuideResponse = any;
1039
574
  type StoreAssignResponse = any;
1040
575
  type StoreDetail = any;
576
+ type StoreMeta = any;
577
+ type SuccessResponse = any;
1041
578
  type SuccessResponse1 = any;
1042
579
  type TaxIdentifier = any;
1043
580
  type TaxSlab = any;
@@ -1055,7 +592,6 @@ type UpdatedResponse = any;
1055
592
  type UserCommon = any;
1056
593
  type UserDetail = any;
1057
594
  type UserDetail1 = any;
1058
- type UserInfo = any;
1059
595
  type UserInfo1 = any;
1060
596
  type UserSerializer = any;
1061
597
  type UserSerializer1 = any;
@@ -1066,6 +602,119 @@ type ValidateSizeGuide = any;
1066
602
  type VerifiedBy = any;
1067
603
  type WeightResponse = any;
1068
604
  type WeightResponse1 = any;
605
+ type Application = any;
606
+ type ApplicationAuth = any;
607
+ type ApplicationCors = any;
608
+ type ApplicationMeta = any;
609
+ type ApplicationRedirections = any;
610
+ type ApplicationResponse = any;
611
+ type ApplicationWebsite = any;
612
+ type Currency = any;
613
+ type Domain = any;
614
+ type LocationCountry = any;
615
+ type LocationDefaultCurrency = any;
616
+ type LocationDefaultLanguage = any;
617
+ type Locations = any;
618
+ type NotFound = any;
619
+ type SecureUrl = any;
620
+ type Audience = any;
621
+ type AudienceReq = any;
622
+ type Audiences = any;
623
+ type BadRequestSchema = any;
624
+ type BigqueryHeadersReq = any;
625
+ type BigqueryHeadersRes = any;
626
+ type BigqueryHeadersResHeaders = any;
627
+ type Campaign = any;
628
+ type CampaignEmail = any;
629
+ type CampaignEmailTemplate = any;
630
+ type CampaignReq = any;
631
+ type Campaigns = any;
632
+ type CampignEmailProvider = any;
633
+ type EmailProvider = any;
634
+ type EmailProviderReq = any;
635
+ type EmailProviderReqFrom = any;
636
+ type EmailProviders = any;
637
+ type EmailTemplate = any;
638
+ type EmailTemplateDeleteFailureRes = any;
639
+ type EmailTemplateDeleteSuccessRes = any;
640
+ type EmailTemplateHeaders = any;
641
+ type EmailTemplateKeys = any;
642
+ type EmailTemplateReq = any;
643
+ type EmailTemplateRes = any;
644
+ type EmailTemplates = any;
645
+ type EngineRequest = any;
646
+ type EngineResponse = any;
647
+ type EventSubscription = any;
648
+ type EventSubscriptions = any;
649
+ type EventSubscriptionTemplate = any;
650
+ type EventSubscriptionTemplateEmail = any;
651
+ type EventSubscriptionTemplateSms = any;
652
+ type GetNRecordsCsvReq = any;
653
+ type GetNRecordsCsvRes = any;
654
+ type GetNRecordsCsvResItems = any;
655
+ type GetStats = any;
656
+ type Job = any;
657
+ type JobLog = any;
658
+ type JobLogs = any;
659
+ type Jobs = any;
660
+ type Log = any;
661
+ type LogEmail = any;
662
+ type LogMeta = any;
663
+ type LogPushnotification = any;
664
+ type Logs = any;
665
+ type MetaStructure = any;
666
+ type Notification = any;
667
+ type PayloadEmailProviderStructure = any;
668
+ type PayloadEmailStructure = any;
669
+ type PayloadEmailTemplateStructure = any;
670
+ type PayloadSmsProviderStructure = any;
671
+ type PayloadSmsStructure = any;
672
+ type PayloadSmsTemplateStructure = any;
673
+ type PayloadStructure = any;
674
+ type PushtokenReq = any;
675
+ type PushtokenRes = any;
676
+ type RecipientHeaders = any;
677
+ type SendOtpCommsReq = any;
678
+ type SendOtpCommsReqData = any;
679
+ type SendOtpCommsReqEmail = any;
680
+ type SendOtpCommsReqSms = any;
681
+ type SendOtpCommsRes = any;
682
+ type SendOtpCommsResEmail = any;
683
+ type SendOtpCommsResSms = any;
684
+ type SendOtpEmailCommsProvider = any;
685
+ type SendOtpEmailCommsTemplate = any;
686
+ type SendOtpSmsCommsProvider = any;
687
+ type SendOtpSmsCommsTemplate = any;
688
+ type SmsProvider = any;
689
+ type SmsProviderReq = any;
690
+ type SmsProviders = any;
691
+ type SmsTemplate = any;
692
+ type SmsTemplateDeleteFailureRes = any;
693
+ type SmsTemplateDeleteSuccessRes = any;
694
+ type SmsTemplateMessage = any;
695
+ type SmsTemplateReq = any;
696
+ type SmsTemplateRes = any;
697
+ type SmsTemplates = any;
698
+ type Stats = any;
699
+ type StatsImported = any;
700
+ type StatsProcessed = any;
701
+ type StatsProcessedEmail = any;
702
+ type StatsProcessedSms = any;
703
+ type SystemEmailTemplate = any;
704
+ type SystemEmailTemplates = any;
705
+ type SystemNotification = any;
706
+ type SystemNotifications = any;
707
+ type SystemNotificationSettings = any;
708
+ type SystemNotificationsPage = any;
709
+ type SystemNotificationUser = any;
710
+ type SystemSmsTemplate = any;
711
+ type SystemSmsTemplates = any;
712
+ type TemplateAndType = any;
713
+ type TriggerJobRequest = any;
714
+ type TriggerJobResponse = any;
715
+ type VerifyOtpCommsErrorRes = any;
716
+ type VerifyOtpCommsReq = any;
717
+ type VerifyOtpCommsSuccessRes = any;
1069
718
  type AddressSerializer = any;
1070
719
  type BrandBannerSerializer = any;
1071
720
  type BulkLocationSerializer = any;
@@ -1074,10 +723,12 @@ type BusinessDetails = any;
1074
723
  type CompanyBrandListSerializer = any;
1075
724
  type CompanyBrandPostRequestSerializer = any;
1076
725
  type CompanyBrandSerializer = any;
726
+ type CompanyDetails = any;
1077
727
  type CompanySerializer = any;
1078
728
  type CompanySocialAccounts = any;
1079
729
  type CompanyTaxesSerializer = any;
1080
730
  type CompanyTaxesSerializer1 = any;
731
+ type ContactDetails = any;
1081
732
  type CreateUpdateAddressSerializer = any;
1082
733
  type CreateUpdateBrandRequestSerializer = any;
1083
734
  type DocumentsObj = any;
@@ -1090,94 +741,6 @@ type MetricsSerializer = any;
1090
741
  type ProfileSuccessResponse = any;
1091
742
  type UpdateCompany = any;
1092
743
  type Website = any;
1093
- type BrowseResponse = any;
1094
- type BulkRequest = any;
1095
- type BulkUploadResponse = any;
1096
- type CDN = any;
1097
- type CompleteResponse = any;
1098
- type CopyFileTask = any;
1099
- type DbRecord = any;
1100
- type Destination = any;
1101
- type FailedResponse = any;
1102
- type Opts = any;
1103
- type ReqConfiguration = any;
1104
- type SignUrlRequest = any;
1105
- type SignUrlResponse = any;
1106
- type StartRequest = any;
1107
- type StartResponse = any;
1108
- type Upload = any;
1109
- type Urls = any;
1110
- type Attribution = any;
1111
- type CampaignShortLink = any;
1112
- type ClickStatsItem = any;
1113
- type ClickStatsResponse = any;
1114
- type ErrorRes = any;
1115
- type RedirectDevice = any;
1116
- type Redirects = any;
1117
- type ShortLinkList = any;
1118
- type ShortLinkReq = any;
1119
- type ShortLinkRes = any;
1120
- type SocialMediaTags = any;
1121
- type UrlInfo = any;
1122
- type WebRedirect = any;
1123
- type ArchiveConfig = any;
1124
- type Audit = any;
1125
- type AWSS3config = any;
1126
- type CatalogMasterConfig = any;
1127
- type CompanyConfig = any;
1128
- type DataTresholdDTO = any;
1129
- type DBConfig = any;
1130
- type DBConnectionProfile = any;
1131
- type DBParamConfig = any;
1132
- type DefaultHeadersDTO = any;
1133
- type DocMappingConfig = any;
1134
- type EmailConfig = any;
1135
- type FileConfig = any;
1136
- type FTPConfig = any;
1137
- type GCompany = any;
1138
- type GenericDTO = any;
1139
- type GoogleSpreadSheetConfig = any;
1140
- type GStore = any;
1141
- type HttpConfig = any;
1142
- type JobConfig = any;
1143
- type JobConfigDTO = any;
1144
- type JobConfigListDTO = any;
1145
- type JobConfigRawDTO = any;
1146
- type JobHistoryDto = any;
1147
- type JobMetricsDto = any;
1148
- type JobStepsDTO = any;
1149
- type JsonDocConfig = any;
1150
- type KafkaMetaModel = any;
1151
- type KafkaResponse = any;
1152
- type LocalFileConfig = any;
1153
- type Metum = any;
1154
- type MongoDocConfig = any;
1155
- type OAuthConfig = any;
1156
- type ProcessConfig = any;
1157
- type PropBeanConfig = any;
1158
- type PropBeanDTO = any;
1159
- type ResponseEnvelopeJobConfigDTO = any;
1160
- type ResponseEnvelopeJobMetricsDto = any;
1161
- type ResponseEnvelopeKafkaResponse = any;
1162
- type ResponseEnvelopeListJobConfigDTO = any;
1163
- type ResponseEnvelopeListJobConfigListDTO = any;
1164
- type ResponseEnvelopeListJobConfigRawDTO = any;
1165
- type ResponseEnvelopeListJobStepsDTO = any;
1166
- type ResponseEnvelopeListSlingshotConfigurationDetail = any;
1167
- type ResponseEnvelopeString = any;
1168
- type Send = any;
1169
- type SFTPConfig = any;
1170
- type SlingshotConfigurationDetail = any;
1171
- type SlingshotIntegration = any;
1172
- type StoreConfig = any;
1173
- type StoreData = any;
1174
- type StoreFilter = any;
1175
- type SuppressStoreModel = any;
1176
- type SuppressStorePayload = any;
1177
- type TaskConfig = any;
1178
- type TaskDTO = any;
1179
- type TaskParam = any;
1180
- type TaskStepConfig = any;
1181
744
  type Android = any;
1182
745
  type App = any;
1183
746
  type AppCartConfig = any;
@@ -1213,7 +776,6 @@ type BuildVersionHistory = any;
1213
776
  type BusinessHighlights = any;
1214
777
  type CallbackUrl = any;
1215
778
  type CartFeature = any;
1216
- type Charges = any;
1217
779
  type CommonFeature = any;
1218
780
  type CommsConfig = any;
1219
781
  type CommunicationConfig = any;
@@ -1234,7 +796,6 @@ type CurrencyConfig = any;
1234
796
  type CurrencyFeature = any;
1235
797
  type Debit = any;
1236
798
  type DefaultCurrency = any;
1237
- type DeliveryCharges = any;
1238
799
  type DeploymentMeta = any;
1239
800
  type DeploymentStoreSelectionFeature = any;
1240
801
  type DomainAdd = any;
@@ -1315,8 +876,8 @@ type OtherEntityData = any;
1315
876
  type OtherSellerApplication = any;
1316
877
  type OtherSellerApplications = any;
1317
878
  type OtherSellerCompany = any;
879
+ type PanCardConfig = any;
1318
880
  type PaymentModeConfig = any;
1319
- type PaymentSelectionLock = any;
1320
881
  type PcrFeature = any;
1321
882
  type PinterestLink = any;
1322
883
  type ProductDetailFeature = any;
@@ -1348,108 +909,640 @@ type UpdateDomainTypeRequest = any;
1348
909
  type UpdateIntegrationLevelRequest = any;
1349
910
  type UserEmail = any;
1350
911
  type UserPhoneNumber = any;
912
+ type ValidationFailedResponse = any;
1351
913
  type Validators = any;
1352
914
  type VimeoLink = any;
1353
915
  type YoutubeLink = any;
1354
- type AbandonedCart = any;
1355
- type AbandonedCartResponse = any;
1356
- type ActionQuery = any;
1357
- type AddCartDetailResponse = any;
1358
- type AddCartRequest = any;
1359
- type AddProductCart = any;
1360
- type AppliedPromotion = any;
1361
- type ArticlePriceInfo = any;
1362
- type BaseInfo = any;
1363
- type BasePrice = any;
1364
- type BulkBundleRestriction = any;
1365
- type CartBreakup = any;
1366
- type CartCurrency = any;
1367
- type CartDetailResponse = any;
1368
- type CartItem = any;
1369
- type CartItemMeta = any;
1370
- type CartMetaConfigAdd = any;
1371
- type CartMetaConfigUpdate = any;
1372
- type CartProduct = any;
1373
- type CartProductIdentifer = any;
1374
- type CartProductInfo = any;
1375
- type CategoryInfo = any;
1376
- type CompareObject = any;
1377
- type CouponAction = any;
1378
- type CouponAdd = any;
1379
- type CouponAuthor = any;
1380
- type CouponBreakup = any;
1381
- type CouponDateMeta = any;
1382
- type CouponPartialUpdate = any;
1383
- type CouponSchedule = any;
1384
- type CouponsResponse = any;
1385
- type CouponUpdate = any;
1386
- type DiscountOffer = any;
1387
- type DiscountRule = any;
1388
- type DisplayBreakup = any;
1389
- type DisplayMeta = any;
1390
- type DisplayMeta1 = any;
1391
- type DisplayMetaDict = any;
1392
- type ItemCriteria = any;
1393
- type LoyaltyPoints = any;
1394
- type OpenapiCartDetailsRequest = any;
1395
- type OpenapiCartDetailsResponse = any;
1396
- type OpenApiCartServiceabilityRequest = any;
1397
- type OpenApiCartServiceabilityResponse = any;
1398
- type OpenApiCheckoutResponse = any;
1399
- type OpenApiErrorResponse = any;
1400
- type OpenApiFiles = any;
1401
- type OpenApiOrderItem = any;
1402
- type OpenApiPlatformCheckoutReq = any;
1403
- type OperationErrorResponse = any;
1404
- type Ownership = any;
1405
- type Ownership1 = any;
1406
- type Ownership2 = any;
1407
- type PaymentAllowValue = any;
1408
- type PaymentAllowValue1 = any;
1409
- type PaymentModes = any;
1410
- type PostOrder = any;
1411
- type PostOrder1 = any;
1412
- type PriceRange = any;
1413
- type ProductAction = any;
1414
- type ProductArticle = any;
1415
- type ProductAvailability = any;
1416
- type ProductAvailabilitySize = any;
1417
- type ProductImage = any;
1418
- type ProductPrice = any;
1419
- type ProductPriceInfo = any;
1420
- type PromiseFormatted = any;
1421
- type PromiseTimestamp = any;
1422
- type PromoMeta = any;
1423
- type PromotionAction = any;
1424
- type PromotionAdd = any;
1425
- type PromotionAuthor = any;
1426
- type PromotionDateMeta = any;
1427
- type PromotionListItem = any;
1428
- type PromotionPartialUpdate = any;
1429
- type PromotionPaymentModes = any;
1430
- type PromotionSchedule = any;
1431
- type PromotionsResponse = any;
1432
- type PromotionUpdate = any;
1433
- type RawBreakup = any;
1434
- type Restrictions = any;
1435
- type Restrictions1 = any;
1436
- type Rule = any;
1437
- type RuleDefinition = any;
1438
- type ShipmentPromise = any;
1439
- type ShippingAddress = any;
1440
- type State = any;
1441
- type SuccessMessage = any;
1442
- type UpdateCartDetailResponse = any;
1443
- type UpdateCartRequest = any;
1444
- type UpdateProductCart = any;
1445
- type UserRegistered = any;
1446
- type UsesRemaining = any;
1447
- type UsesRemaining1 = any;
1448
- type UsesRestriction = any;
1449
- type UsesRestriction1 = any;
1450
- type Validation = any;
1451
- type Validity = any;
1452
- type Visibility = any;
916
+ type AdminAnnouncementSchema = any;
917
+ type AnnouncementAuthorSchema = any;
918
+ type AnnouncementPageSchema = any;
919
+ type AnnouncementSchema = any;
920
+ type AnnouncementsResponseSchema = any;
921
+ type ApplicationLegal = any;
922
+ type ApplicationLegalFAQ = any;
923
+ type Asset = any;
924
+ type Author = any;
925
+ type BlogGetResponse = any;
926
+ type BlogRequest = any;
927
+ type BlogSchema = any;
928
+ type CategoryRequestSchema = any;
929
+ type CategorySchema = any;
930
+ type ChildrenSchema = any;
931
+ type CommonError = any;
932
+ type ConfigurationSchema = any;
933
+ type ContactSchema = any;
934
+ type ContentAPIError = any;
935
+ type ContentSchema = any;
936
+ type CreateAnnouncementSchema = any;
937
+ type CreatedBySchema = any;
938
+ type CreateFaqCategoryRequestSchema = any;
939
+ type CreateFaqCategorySchema = any;
940
+ type CreateFaqResponseSchema = any;
941
+ type CreateFaqSchema = any;
942
+ type CreateTagRequestSchema = any;
943
+ type CreateTagSchema = any;
944
+ type CronSchedule = any;
945
+ type CustomMetaTag = any;
946
+ type CustomPage = any;
947
+ type CustomPageSchema = any;
948
+ type DataLoaderResetResponseSchema = any;
949
+ type DataLoaderResponseSchema = any;
950
+ type DataLoaderSchema = any;
951
+ type DataLoaderSourceSchema = any;
952
+ type DataLoadersSchema = any;
953
+ type DefaultNavigationResponse = any;
954
+ type Detail = any;
955
+ type EditorMeta = any;
956
+ type EmailProperties = any;
957
+ type EmailSchema = any;
958
+ type FAQ = any;
959
+ type FAQCategorySchema = any;
960
+ type FaqResponseSchema = any;
961
+ type FaqSchema = any;
962
+ type FeatureImage = any;
963
+ type GeneratedSEOContent = any;
964
+ type GenerateSEOContent = any;
965
+ type GetAnnouncementListSchema = any;
966
+ type GetFaqCategoriesSchema = any;
967
+ type GetFaqCategoryBySlugSchema = any;
968
+ type GetFaqSchema = any;
969
+ type HandpickedTagSchema = any;
970
+ type LandingPage = any;
971
+ type LandingPageGetResponse = any;
972
+ type LandingPageSchema = any;
973
+ type Language = any;
974
+ type LocaleLanguage = any;
975
+ type Navigation = any;
976
+ type NavigationGetResponse = any;
977
+ type NavigationReference = any;
978
+ type NavigationRequest = any;
979
+ type NavigationSchema = any;
980
+ type Orientation = any;
981
+ type PageContent = any;
982
+ type PageGetResponse = any;
983
+ type PageMeta = any;
984
+ type PageMetaSchema = any;
985
+ type PagePublishRequest = any;
986
+ type PageRequest = any;
987
+ type PageSchema = any;
988
+ type PageSpec = any;
989
+ type PageSpecItem = any;
990
+ type PageSpecParam = any;
991
+ type PathMappingSchema = any;
992
+ type PathSourceSchema = any;
993
+ type PhoneProperties = any;
994
+ type PhoneSchema = any;
995
+ type RemoveHandpickedSchema = any;
996
+ type ResourceContent = any;
997
+ type ScheduleSchema = any;
998
+ type ScheduleStartSchema = any;
999
+ type SEO = any;
1000
+ type SeoComponent = any;
1001
+ type SEOImage = any;
1002
+ type SeoSchema = any;
1003
+ type Slideshow = any;
1004
+ type SlideshowGetResponse = any;
1005
+ type SlideshowMedia = any;
1006
+ type SlideshowRequest = any;
1007
+ type SlideshowSchema = any;
1008
+ type Support = any;
1009
+ type TagDeleteSuccessResponse = any;
1010
+ type TagSchema = any;
1011
+ type TagSourceSchema = any;
1012
+ type TagsSchema = any;
1013
+ type UpdateFaqCategoryRequestSchema = any;
1014
+ type UpdateHandpickedSchema = any;
1015
+ type BadRequestObject = any;
1016
+ type BulkDiscount = any;
1017
+ type CancelJobResponse = any;
1018
+ type CreateUpdateDiscount = any;
1019
+ type DiscountItems = any;
1020
+ type DiscountJob = any;
1021
+ type DownloadFileJob = any;
1022
+ type FileJobRequest = any;
1023
+ type FileJobResponse = any;
1024
+ type ListOrCalender = any;
1025
+ type UserDetails = any;
1026
+ type ValidityObject = any;
1027
+ type BrowseResponse = any;
1028
+ type BulkRequest = any;
1029
+ type BulkUploadResponse = any;
1030
+ type CDN = any;
1031
+ type CompleteResponse = any;
1032
+ type CopyFileTask = any;
1033
+ type DbRecord = any;
1034
+ type Destination = any;
1035
+ type FailedResponse = any;
1036
+ type Opts = any;
1037
+ type ReqConfiguration = any;
1038
+ type SignUrlRequest = any;
1039
+ type SignUrlResponse = any;
1040
+ type StartRequest = any;
1041
+ type StartResponse = any;
1042
+ type Upload = any;
1043
+ type Urls = any;
1044
+ type CreditlineDataPlatformPayload = any;
1045
+ type CreditlineDataPlatformRequest = any;
1046
+ type CreditlineDataPlatformResponse = any;
1047
+ type DownloadCreditDebitNote = any;
1048
+ type DownloadCreditDebitNoteRequest = any;
1049
+ type DownloadCreditDebitNoteResponse = any;
1050
+ type DownloadCreditDebitNoteResponseData = any;
1051
+ type DownloadReport = any;
1052
+ type DownloadReportItems = any;
1053
+ type DownloadReportList = any;
1054
+ type Error = any;
1055
+ type GenerateReportFilters = any;
1056
+ type GenerateReportJson = any;
1057
+ type GenerateReportMeta = any;
1058
+ type GenerateReportPlatform = any;
1059
+ type GenerateReportRequest = any;
1060
+ type GetAffiliate = any;
1061
+ type GetAffiliateResponse = any;
1062
+ type GetDocs = any;
1063
+ type GetEngineData = any;
1064
+ type GetEngineFilters = any;
1065
+ type GetEngineRequest = any;
1066
+ type GetEngineResponse = any;
1067
+ type GetReason = any;
1068
+ type GetReasonRequest = any;
1069
+ type GetReasonResponse = any;
1070
+ type GetReportListData = any;
1071
+ type GetReportListRequest = any;
1072
+ type InoviceListingPayloadDataFilters = any;
1073
+ type InvoiceListingPayloadData = any;
1074
+ type InvoiceListingRequest = any;
1075
+ type InvoiceListingResponse = any;
1076
+ type InvoiceListingResponseItems = any;
1077
+ type InvoicePdfPayloadData = any;
1078
+ type InvoicePdfRequest = any;
1079
+ type InvoicePdfResponse = any;
1080
+ type InvoiceTypePayloadData = any;
1081
+ type InvoiceTypeRequest = any;
1082
+ type InvoiceTypeResponse = any;
1083
+ type InvoiceTypeResponseItems = any;
1084
+ type IsCreditlinePayload = any;
1085
+ type IsCreditlinePlatformRequest = any;
1086
+ type IsCreditlinePlatformResponse = any;
1087
+ type PaymentProcessPayload = any;
1088
+ type PaymentProcessRequest = any;
1089
+ type PaymentProcessResponse = any;
1090
+ type UnpaidInvoiceDataItems = any;
1091
+ type ArchiveConfig = any;
1092
+ type Audit = any;
1093
+ type AWSS3config = any;
1094
+ type CatalogMasterConfig = any;
1095
+ type CompanyConfig = any;
1096
+ type DataTresholdDTO = any;
1097
+ type DBConfig = any;
1098
+ type DBConnectionProfile = any;
1099
+ type DBParamConfig = any;
1100
+ type DefaultHeadersDTO = any;
1101
+ type DocMappingConfig = any;
1102
+ type EmailConfig = any;
1103
+ type FileConfig = any;
1104
+ type FTPConfig = any;
1105
+ type GCompany = any;
1106
+ type GenericDTO = any;
1107
+ type GoogleSpreadSheetConfig = any;
1108
+ type GStore = any;
1109
+ type HttpConfig = any;
1110
+ type JobConfig = any;
1111
+ type JobConfigDTO = any;
1112
+ type JobConfigListDTO = any;
1113
+ type JobConfigRawDTO = any;
1114
+ type JobHistoryDto = any;
1115
+ type JobMetricsDto = any;
1116
+ type JobStepsDTO = any;
1117
+ type JsonDocConfig = any;
1118
+ type KafkaMetaModel = any;
1119
+ type KafkaResponse = any;
1120
+ type LocalFileConfig = any;
1121
+ type Metum = any;
1122
+ type MongoDocConfig = any;
1123
+ type OAuthConfig = any;
1124
+ type ProcessConfig = any;
1125
+ type PropBeanConfig = any;
1126
+ type PropBeanDTO = any;
1127
+ type ResponseEnvelopeJobConfigDTO = any;
1128
+ type ResponseEnvelopeJobMetricsDto = any;
1129
+ type ResponseEnvelopeKafkaResponse = any;
1130
+ type ResponseEnvelopeListJobConfigDTO = any;
1131
+ type ResponseEnvelopeListJobConfigListDTO = any;
1132
+ type ResponseEnvelopeListJobConfigRawDTO = any;
1133
+ type ResponseEnvelopeListJobStepsDTO = any;
1134
+ type ResponseEnvelopeListSlingshotConfigurationDetail = any;
1135
+ type ResponseEnvelopeString = any;
1136
+ type Send = any;
1137
+ type SFTPConfig = any;
1138
+ type SlingshotConfigurationDetail = any;
1139
+ type SlingshotIntegration = any;
1140
+ type StoreConfig = any;
1141
+ type StoreData = any;
1142
+ type StoreFilter = any;
1143
+ type SuppressStoreModel = any;
1144
+ type SuppressStorePayload = any;
1145
+ type TaskConfig = any;
1146
+ type TaskDTO = any;
1147
+ type TaskParam = any;
1148
+ type TaskStepConfig = any;
1149
+ type AddTicketPayload = any;
1150
+ type AgentChangePayload = any;
1151
+ type CategoryData = any;
1152
+ type CloseVideoRoomResponse = any;
1153
+ type CommunicationDetails = any;
1154
+ type CreateCustomFormPayload = any;
1155
+ type CreatedOn = any;
1156
+ type CreateVideoRoomPayload = any;
1157
+ type CreateVideoRoomResponse = any;
1158
+ type CustomForm = any;
1159
+ type CustomFormList = any;
1160
+ type CustomFormSubmissionPayload = any;
1161
+ type Debug = any;
1162
+ type EditCustomFormPayload = any;
1163
+ type EditTicketPayload = any;
1164
+ type Email = any;
1165
+ type FeedbackForm = any;
1166
+ type FeedbackResponseItem = any;
1167
+ type Filter = any;
1168
+ type GetParticipantsInsideVideoRoomResponse = any;
1169
+ type GetTokenForVideoRoomResponse = any;
1170
+ type IntegrationConfig = any;
1171
+ type NotifyUser = any;
1172
+ type Participant = any;
1173
+ type PhoneNumber = any;
1174
+ type PollForAssignment = any;
1175
+ type Priority = any;
1176
+ type Status = any;
1177
+ type SubmitButton = any;
1178
+ type SubmitCustomFormResponse = any;
1179
+ type SupportGeneralConfig = any;
1180
+ type Ticket = any;
1181
+ type TicketAsset = any;
1182
+ type TicketCategory = any;
1183
+ type TicketContent = any;
1184
+ type TicketContext = any;
1185
+ type TicketFeedback = any;
1186
+ type TicketFeedbackForm = any;
1187
+ type TicketFeedbackList = any;
1188
+ type TicketFeedbackPayload = any;
1189
+ type TicketHistory = any;
1190
+ type TicketHistoryList = any;
1191
+ type TicketHistoryPayload = any;
1192
+ type TicketList = any;
1193
+ type TicketSubCategory = any;
1194
+ type UserSchema = any;
1195
+ type ActionInfo = any;
1196
+ type AdvanceFilterInfo = any;
1197
+ type Affiliate = any;
1198
+ type AffiliateAppConfig = any;
1199
+ type AffiliateAppConfigMeta = any;
1200
+ type AffiliateBag = any;
1201
+ type AffiliateBagDetails = any;
1202
+ type AffiliateBagsDetails = any;
1203
+ type AffiliateConfig = any;
1204
+ type AffiliateDetails = any;
1205
+ type AffiliateInventoryArticleAssignmentConfig = any;
1206
+ type AffiliateInventoryConfig = any;
1207
+ type AffiliateInventoryLogisticsConfig = any;
1208
+ type AffiliateInventoryOrderConfig = any;
1209
+ type AffiliateInventoryPaymentConfig = any;
1210
+ type AffiliateInventoryStoreConfig = any;
1211
+ type AffiliateMeta = any;
1212
+ type AffiliateStoreIdMapping = any;
1213
+ type AnnouncementResponse = any;
1214
+ type AnnouncementsResponse = any;
1215
+ type AppliedPromos = any;
1216
+ type Article = any;
1217
+ type ArticleDetails = any;
1218
+ type ArticleDetails1 = any;
1219
+ type AttachOrderUser = any;
1220
+ type AttachOrderUserResponse = any;
1221
+ type AttachUserInfo = any;
1222
+ type AttachUserOtpData = any;
1223
+ type Attributes = any;
1224
+ type B2BPODetails = any;
1225
+ type BagConfigs = any;
1226
+ type BagDetailsPlatformResponse = any;
1227
+ type BagGST = any;
1228
+ type BagGSTDetails = any;
1229
+ type BagMeta = any;
1230
+ type BagPaymentMethods = any;
1231
+ type BagReturnableCancelableStatus = any;
1232
+ type BagReturnableCancelableStatus1 = any;
1233
+ type Bags = any;
1234
+ type BagsPage = any;
1235
+ type BagStateMapper = any;
1236
+ type BagStateTransitionMap = any;
1237
+ type BagStatusHistory = any;
1238
+ type BagUnit = any;
1239
+ type BaseResponse = any;
1240
+ type BillingInfo = any;
1241
+ type BillingStaffDetails = any;
1242
+ type BulkActionTemplate = any;
1243
+ type BulkActionTemplateResponse = any;
1244
+ type BuyerDetails = any;
1245
+ type Charge = any;
1246
+ type CheckResponse = any;
1247
+ type Click2CallResponse = any;
1248
+ type CreateChannelConfig = any;
1249
+ type CreateChannelConfigData = any;
1250
+ type CreateChannelConfigResponse = any;
1251
+ type CreateChannelConifgErrorResponse = any;
1252
+ type CreateChannelPaymentInfo = any;
1253
+ type CreateOrderAPI = any;
1254
+ type CreateOrderErrorReponse = any;
1255
+ type CreateOrderPayload = any;
1256
+ type CreateOrderResponse = any;
1257
+ type CreditBalanceInfo = any;
1258
+ type CurrentStatus = any;
1259
+ type DataUpdates = any;
1260
+ type Dates = any;
1261
+ type DebugInfo = any;
1262
+ type Dimension = any;
1263
+ type Dimensions = any;
1264
+ type DiscountRules = any;
1265
+ type DispatchManifest = any;
1266
+ type DpConfiguration = any;
1267
+ type DPDetailsData = any;
1268
+ type EinvoiceInfo = any;
1269
+ type EInvoicePortalDetails = any;
1270
+ type Entities = any;
1271
+ type EntitiesDataUpdates = any;
1272
+ type EntitiesReasons = any;
1273
+ type EntityReasonData = any;
1274
+ type ErrorDetail = any;
1275
+ type ErrorResponse1 = any;
1276
+ type FetchCreditBalanceRequestPayload = any;
1277
+ type FetchCreditBalanceResponsePayload = any;
1278
+ type FileResponse = any;
1279
+ type FilterInfoOption = any;
1280
+ type FiltersInfo = any;
1281
+ type FiltersResponse = any;
1282
+ type FinancialBreakup = any;
1283
+ type Formatted = any;
1284
+ type FulfillingStore = any;
1285
+ type FyndOrderIdList = any;
1286
+ type GeneratePosOrderReceiptResponse = any;
1287
+ type GetActionsResponse = any;
1288
+ type GetBagsPlatformResponse = any;
1289
+ type GiftCard = any;
1290
+ type GSTDetailsData = any;
1291
+ type HistoryDict = any;
1292
+ type HistoryMeta = any;
1293
+ type HistoryReason = any;
1294
+ type InvalidateShipmentCacheNestedResponse = any;
1295
+ type InvalidateShipmentCachePayload = any;
1296
+ type InvalidateShipmentCacheResponse = any;
1297
+ type InvoiceInfo = any;
1298
+ type Item = any;
1299
+ type ItemCriterias = any;
1300
+ type LaneConfigResponse = any;
1301
+ type LineItem = any;
1302
+ type LocationDetails = any;
1303
+ type LockData = any;
1304
+ type MarketPlacePdf = any;
1305
+ type OrderBagArticle = any;
1306
+ type OrderBags = any;
1307
+ type OrderBrandName = any;
1308
+ type OrderConfig = any;
1309
+ type OrderData = any;
1310
+ type OrderDetails = any;
1311
+ type OrderDetailsData = any;
1312
+ type OrderDetailsResponse = any;
1313
+ type OrderInfo = any;
1314
+ type OrderingStoreDetails = any;
1315
+ type OrderItemDataUpdates = any;
1316
+ type OrderListingResponse = any;
1317
+ type OrderMeta = any;
1318
+ type OrderPriority = any;
1319
+ type OrderStatus = any;
1320
+ type OrderStatusData = any;
1321
+ type OrderStatusResult = any;
1322
+ type OrderUser = any;
1323
+ type OriginalFilter = any;
1324
+ type PaymentInfo = any;
1325
+ type PaymentMethods = any;
1326
+ type PDFLinks = any;
1327
+ type PhoneDetails = any;
1328
+ type PlatformArticleAttributes = any;
1329
+ type PlatformBreakupValues = any;
1330
+ type PlatformChannel = any;
1331
+ type PlatformDeliveryAddress = any;
1332
+ type PlatformItem = any;
1333
+ type PlatformOrderItems = any;
1334
+ type PlatformOrderUpdate = any;
1335
+ type PlatformShipment = any;
1336
+ type PlatformShipmentReasonsResponse = any;
1337
+ type PlatformShipmentTrack = any;
1338
+ type PlatformTrack = any;
1339
+ type PlatformUserDetails = any;
1340
+ type PointBlankOtpData = any;
1341
+ type PostActivityHistory = any;
1342
+ type PostHistoryData = any;
1343
+ type PostHistoryDict = any;
1344
+ type PostHistoryFilters = any;
1345
+ type PostShipmentHistory = any;
1346
+ type Prices = any;
1347
+ type ProcessingDates = any;
1348
+ type Products = any;
1349
+ type ProductsDataUpdates = any;
1350
+ type ProductsDataUpdatesFilters = any;
1351
+ type ProductsReasons = any;
1352
+ type ProductsReasonsData = any;
1353
+ type ProductsReasonsFilters = any;
1354
+ type QuestionSet = any;
1355
+ type Reason = any;
1356
+ type ReasonsData = any;
1357
+ type RefundModeConfigRequestPayload = any;
1358
+ type RefundModeConfigResponsePayload = any;
1359
+ type RefundModeInfo = any;
1360
+ type RefundOption = any;
1361
+ type ReplacementDetails = any;
1362
+ type ResponseDetail = any;
1363
+ type SendSmsPayload = any;
1364
+ type SendUserMobileOTP = any;
1365
+ type SendUserMobileOtpResponse = any;
1366
+ type Shipment = any;
1367
+ type ShipmentConfig = any;
1368
+ type ShipmentData = any;
1369
+ type ShipmentDetail = any;
1370
+ type ShipmentDetails = any;
1371
+ type ShipmentDetails1 = any;
1372
+ type ShipmentHistoryResponse = any;
1373
+ type ShipmentInfoResponse = any;
1374
+ type ShipmentInternalPlatformViewResponse = any;
1375
+ type ShipmentItem = any;
1376
+ type ShipmentItemFulFillingStore = any;
1377
+ type ShipmentItemMeta = any;
1378
+ type ShipmentListingBrand = any;
1379
+ type ShipmentListingChannel = any;
1380
+ type ShipmentMeta = any;
1381
+ type ShipmentPayments = any;
1382
+ type ShipmentReasonsResponse = any;
1383
+ type ShipmentResponseReasons = any;
1384
+ type ShipmentsRequest = any;
1385
+ type ShipmentsResponse = any;
1386
+ type ShipmentStatus = any;
1387
+ type ShipmentStatusData = any;
1388
+ type ShipmentTags = any;
1389
+ type ShipmentTimeStamp = any;
1390
+ type ShippingInfo = any;
1391
+ type SmsDataPayload = any;
1392
+ type StatuesRequest = any;
1393
+ type StatuesResponse = any;
1394
+ type Store = any;
1395
+ type StoreAddress = any;
1396
+ type StoreDocuments = any;
1397
+ type StoreEinvoice = any;
1398
+ type StoreEwaybill = any;
1399
+ type StoreGstCredentials = any;
1400
+ type StoreReassign = any;
1401
+ type StoreReassignResponse = any;
1402
+ type SubLane = any;
1403
+ type SuperLane = any;
1404
+ type Tax = any;
1405
+ type TaxDetails = any;
1406
+ type TaxInfo = any;
1407
+ type TrackingList = any;
1408
+ type TransactionData = any;
1409
+ type UpdatePackagingDimensionsPayload = any;
1410
+ type UpdatePackagingDimensionsResponse = any;
1411
+ type UpdateShipmentLockPayload = any;
1412
+ type UpdateShipmentLockResponse = any;
1413
+ type UpdateShipmentStatusRequest = any;
1414
+ type UpdateShipmentStatusResponseBody = any;
1415
+ type UploadConsent = any;
1416
+ type URL = any;
1417
+ type UserData = any;
1418
+ type UserDataInfo = any;
1419
+ type UserDetailsData = any;
1420
+ type VerifyMobileOTP = any;
1421
+ type VerifyOtpData = any;
1422
+ type VerifyOtpResponse = any;
1423
+ type VerifyOtpResponseData = any;
1424
+ type Weight = any;
1425
+ type AddProxyReq = any;
1426
+ type AddProxyResponse = any;
1427
+ type APIError = any;
1428
+ type ApplicationPermissions = any;
1429
+ type ApprovedPermissions = any;
1430
+ type ApprovedPermissionsInfo = any;
1431
+ type Benefits = any;
1432
+ type Callback = any;
1433
+ type CategoryL1 = any;
1434
+ type CategoryL2 = any;
1435
+ type CommingSoon = any;
1436
+ type ContactInfo = any;
1437
+ type ExtensionCommon = any;
1438
+ type ExtensionDetails = any;
1439
+ type ExtensionItems = any;
1440
+ type ExtensionList = any;
1441
+ type ExtensionListItems = any;
1442
+ type ExtensionResponse = any;
1443
+ type ExtensionSuggestion = any;
1444
+ type ExtensionSuggestionList = any;
1445
+ type getProxyPathRes = any;
1446
+ type ListingInfo = any;
1447
+ type ModifyPartnerReq = any;
1448
+ type OrganizationBasicInfo = any;
1449
+ type Pagination = any;
1450
+ type PartnerInviteDetails = any;
1451
+ type PartnerList = any;
1452
+ type PartnerRequestList = any;
1453
+ type Plans = any;
1454
+ type PublicExtension = any;
1455
+ type RemoveProxyResponse = any;
1456
+ type RequestedPermissions = any;
1457
+ type Scope = any;
1458
+ type Screenshots = any;
1459
+ type SetupProductRes = any;
1460
+ type SubscriptionRequest = any;
1461
+ type SubscriptionRes = any;
1462
+ type UninstallExtension = any;
1463
+ type AddBeneficiaryDetailsOTPRequest = any;
1464
+ type BankDetailsForOTP = any;
1465
+ type CancelOrResendPaymentLinkRequest = any;
1466
+ type CancelPaymentLinkResponse = any;
1467
+ type CODdata = any;
1468
+ type Code = any;
1469
+ type CreatePaymentLinkMeta = any;
1470
+ type CreatePaymentLinkRequest = any;
1471
+ type CreatePaymentLinkResponse = any;
1472
+ type DeletePayoutResponse = any;
1473
+ type DeleteSubscriptionPaymentMethodResponse = any;
1474
+ type EdcAddRequest = any;
1475
+ type EdcAggregatorAndModelListResponse = any;
1476
+ type EdcDevice = any;
1477
+ type EdcDeviceAddResponse = any;
1478
+ type EdcDeviceDetailsResponse = any;
1479
+ type EdcDeviceListResponse = any;
1480
+ type EdcDeviceStatsResponse = any;
1481
+ type EdcDeviceUpdateResponse = any;
1482
+ type EdcModelData = any;
1483
+ type EdcUpdateRequest = any;
1484
+ type ErrorCodeAndDescription = any;
1485
+ type ErrorCodeDescription = any;
1486
+ type ErrorDescription = any;
1487
+ type GetOauthUrlResponse = any;
1488
+ type GetPaymentCode = any;
1489
+ type GetPaymentCodeResponse = any;
1490
+ type GetPaymentLinkResponse = any;
1491
+ type GetUserCODLimitResponse = any;
1492
+ type HttpErrorCodeAndResponse = any;
1493
+ type IfscCodeResponse = any;
1494
+ type IntentApp = any;
1495
+ type IntentAppErrorList = any;
1496
+ type LinkStatus = any;
1497
+ type MerchantOnBoardingRequest = any;
1498
+ type MerchantOnBoardingResponse = any;
1499
+ type NotFoundResourceError = any;
1500
+ type OrderBeneficiaryDetails = any;
1501
+ type OrderBeneficiaryResponse = any;
1502
+ type PaymentCode = any;
1503
+ type PaymentConfirmationRequest = any;
1504
+ type PaymentConfirmationResponse = any;
1505
+ type PaymentGatewayConfig = any;
1506
+ type PaymentGatewayConfigRequest = any;
1507
+ type PaymentGatewayConfigResponse = any;
1508
+ type PaymentGatewayToBeReviewed = any;
1509
+ type PaymentInitializationRequest = any;
1510
+ type PaymentInitializationResponse = any;
1511
+ type PaymentModeList = any;
1512
+ type PaymentModeLogo = any;
1513
+ type PaymentObjectListSerializer = any;
1514
+ type PaymentOptions = any;
1515
+ type PaymentOptionsResponse = any;
1516
+ type PaymentStatusBulkHandlerRequest = any;
1517
+ type PaymentStatusBulkHandlerResponse = any;
1518
+ type PaymentStatusObject = any;
1519
+ type PaymentStatusUpdateRequest = any;
1520
+ type PaymentStatusUpdateResponse = any;
1521
+ type PayoutBankDetails = any;
1522
+ type PayoutRequest = any;
1523
+ type PayoutResponse = any;
1524
+ type PayoutsResponse = any;
1525
+ type PollingPaymentLinkResponse = any;
1526
+ type RefundAccountResponse = any;
1527
+ type RepaymentDetailsSerialiserPayAll = any;
1528
+ type RepaymentRequestDetails = any;
1529
+ type RepaymentResponse = any;
1530
+ type ResendOrCancelPaymentRequest = any;
1531
+ type ResendOrCancelPaymentResponse = any;
1532
+ type ResendPaymentLinkResponse = any;
1533
+ type RevokeOAuthToken = any;
1534
+ type RootPaymentMode = any;
1535
+ type SaveSubscriptionSetupIntentRequest = any;
1536
+ type SaveSubscriptionSetupIntentResponse = any;
1537
+ type SetCODForUserRequest = any;
1538
+ type SetCODOptionResponse = any;
1539
+ type StatisticsData = any;
1540
+ type SubscriptionConfigResponse = any;
1541
+ type SubscriptionPaymentMethodResponse = any;
1542
+ type UpdatePayoutRequest = any;
1543
+ type UpdatePayoutResponse = any;
1544
+ type ValidateCustomerRequest = any;
1545
+ type ValidateCustomerResponse = any;
1453
1546
  type AppUser = any;
1454
1547
  type ConfigurationRequest = any;
1455
1548
  type ConfigurationRes = any;
@@ -1469,22 +1562,160 @@ type Schedule = any;
1469
1562
  type SetConfigurationRes = any;
1470
1563
  type ShareMessages = any;
1471
1564
  type UserRes = any;
1472
- type BadRequestObject = any;
1473
- type BulkDiscount = any;
1474
- type CancelJobResponse = any;
1475
- type CreateUpdateDiscount = any;
1476
- type DiscountItems = any;
1477
- type DiscountJob = any;
1478
- type DownloadFileJob = any;
1479
- type FileJobRequest = any;
1480
- type FileJobResponse = any;
1481
- type ListOrCalender = any;
1482
- type UserDetails = any;
1483
- type ValidityObject = any;
1484
- type AddProxyReq = any;
1485
- type AddProxyResponse = any;
1486
- type APIError = any;
1487
- type RemoveProxyResponse = any;
1565
+ type Attribution = any;
1566
+ type CampaignShortLink = any;
1567
+ type ClickStatsItem = any;
1568
+ type ClickStatsResponse = any;
1569
+ type ErrorRes = any;
1570
+ type RedirectDevice = any;
1571
+ type Redirects = any;
1572
+ type ShortLinkList = any;
1573
+ type ShortLinkReq = any;
1574
+ type ShortLinkRes = any;
1575
+ type SocialMediaTags = any;
1576
+ type UrlInfo = any;
1577
+ type WebRedirect = any;
1578
+ type AddThemeRequestSchema = any;
1579
+ type AllAvailablePageSchema = any;
1580
+ type AssetsSchema = any;
1581
+ type AvailablePagePredicate = any;
1582
+ type AvailablePageRoutePredicate = any;
1583
+ type AvailablePageSchema = any;
1584
+ type AvailablePageSchemaSections = any;
1585
+ type AvailablePageScreenPredicate = any;
1586
+ type AvailablePageSectionMetaAttributes = any;
1587
+ type AvailablePageSeo = any;
1588
+ type AvailablePageUserPredicate = any;
1589
+ type availableSectionSchema = any;
1590
+ type BlitzkriegApiErrorSchema = any;
1591
+ type BlitzkriegInternalServerErrorSchema = any;
1592
+ type BlitzkriegNotFoundSchema = any;
1593
+ type Blocks = any;
1594
+ type BlocksProps = any;
1595
+ type Bold = any;
1596
+ type Colors = any;
1597
+ type CommonJs = any;
1598
+ type Config = any;
1599
+ type ConfigPage = any;
1600
+ type Css = any;
1601
+ type Custom = any;
1602
+ type Font = any;
1603
+ type FontsSchema = any;
1604
+ type FontsSchemaItems = any;
1605
+ type FontsSchemaItemsFiles = any;
1606
+ type GlobalSchema = any;
1607
+ type GlobalSchemaProps = any;
1608
+ type Images = any;
1609
+ type Information = any;
1610
+ type Light = any;
1611
+ type ListSchemaItem = any;
1612
+ type Medium = any;
1613
+ type PaginationSchema = any;
1614
+ type Preset = any;
1615
+ type Regular = any;
1616
+ type Sections = any;
1617
+ type SemiBold = any;
1618
+ type Src = any;
1619
+ type ThemesListingResponseSchema = any;
1620
+ type ThemesSchema = any;
1621
+ type UmdJs = any;
1622
+ type UpgradableThemeSchema = any;
1623
+ type Variants = any;
1624
+ type Accountkit = any;
1625
+ type ArchiveUserRequestSchema = any;
1626
+ type ArchiveUserSuccess = any;
1627
+ type AuthenticationApiErrorSchema = any;
1628
+ type AuthenticationInternalServerErrorSchema = any;
1629
+ type AuthSuccess = any;
1630
+ type AuthSuccessUser = any;
1631
+ type AuthSuccessUserDebug = any;
1632
+ type AuthSuccessUserEmails = any;
1633
+ type BlockUserRequestSchema = any;
1634
+ type BlockUserSuccess = any;
1635
+ type CodeRequestBodySchema = any;
1636
+ type CreateUserGroupSchema = any;
1637
+ type CreateUserRequestSchema = any;
1638
+ type CreateUserResponseSchema = any;
1639
+ type CreateUserSessionRequestSchema = any;
1640
+ type CreateUserSessionResponseSchema = any;
1641
+ type CustomerListResponseSchema = any;
1642
+ type DeleteAccountConsent = any;
1643
+ type DeleteAccountReasons = any;
1644
+ type DeleteApplicationUserRequestSchema = any;
1645
+ type DeleteUserSuccess = any;
1646
+ type EditEmailRequestSchema = any;
1647
+ type EditMobileRequestSchema = any;
1648
+ type EditProfileMobileSchema = any;
1649
+ type EditProfileRequestSchema = any;
1650
+ type EmailOtpSuccess = any;
1651
+ type Facebook = any;
1652
+ type FlashCard = any;
1653
+ type ForgotPasswordRequestSchema = any;
1654
+ type FormRegisterRequestSchema = any;
1655
+ type FormRegisterRequestSchemaPhone = any;
1656
+ type Google = any;
1657
+ type HasPasswordSuccess = any;
1658
+ type Login = any;
1659
+ type LoginSuccess = any;
1660
+ type LogoutSuccess = any;
1661
+ type LookAndFeel = any;
1662
+ type MetaSchema = any;
1663
+ type NotFoundSchema = any;
1664
+ type OAuthRequestAppleSchema = any;
1665
+ type OAuthRequestAppleSchemaOauth = any;
1666
+ type OAuthRequestAppleSchemaProfile = any;
1667
+ type OAuthRequestSchema = any;
1668
+ type OAuthRequestSchemaOauth2 = any;
1669
+ type OAuthRequestSchemaProfile = any;
1670
+ type OtpSuccess = any;
1671
+ type PasswordLoginRequestSchema = any;
1672
+ type PlatformEmail = any;
1673
+ type PlatformMobile = any;
1674
+ type PlatformSchema = any;
1675
+ type ProfileEditSuccess = any;
1676
+ type ProfileEditSuccessSchema = any;
1677
+ type RegisterFormSuccess = any;
1678
+ type RegisterRequiredFields = any;
1679
+ type RegisterRequiredFieldsEmail = any;
1680
+ type RegisterRequiredFieldsMobile = any;
1681
+ type RequiredFields = any;
1682
+ type ResetPasswordSuccess = any;
1683
+ type SendEmailOtpRequestSchema = any;
1684
+ type SendEmailVerifyLinkSuccess = any;
1685
+ type SendMobileOtpRequestSchema = any;
1686
+ type SendMobileVerifyLinkSuccess = any;
1687
+ type SendOtpRequestSchema = any;
1688
+ type SendOtpResponse = any;
1689
+ type SendResetPasswordEmailRequestSchema = any;
1690
+ type SendResetPasswordMobileRequestSchema = any;
1691
+ type SendVerificationLinkMobileRequestSchema = any;
1692
+ type SessionDeleteResponseSchema = any;
1693
+ type SessionExpiry = any;
1694
+ type SessionListResponseInfo = any;
1695
+ type SessionListResponseSchema = any;
1696
+ type SessionListSuccess = any;
1697
+ type Social = any;
1698
+ type SocialTokens = any;
1699
+ type TokenRequestBodySchema = any;
1700
+ type UnauthenticatedSchema = any;
1701
+ type UnauthorizedSchema = any;
1702
+ type UnDeleteUserRequestSchema = any;
1703
+ type UnDeleteUserSuccess = any;
1704
+ type UpdatePasswordRequestSchema = any;
1705
+ type UpdateUserGroupSchema = any;
1706
+ type UpdateUserRequestSchema = any;
1707
+ type UserEmails = any;
1708
+ type UserGroupListResponseSchema = any;
1709
+ type UserGroupResponseSchema = any;
1710
+ type UserObjectSchema = any;
1711
+ type UserPhoneNumbers = any;
1712
+ type UserSearchResponseSchema = any;
1713
+ type VerifyEmailOtpRequestSchema = any;
1714
+ type VerifyEmailOTPSuccess = any;
1715
+ type VerifyEmailSuccess = any;
1716
+ type VerifyMobileOTPSuccess = any;
1717
+ type VerifyOtpRequestSchema = any;
1718
+ type VerifyOtpSuccess = any;
1488
1719
  type Association = any;
1489
1720
  type AuthMeta = any;
1490
1721
  type EventConfig = any;
@@ -1497,15 +1728,3 @@ type SubscriberConfig = any;
1497
1728
  type SubscriberConfigList = any;
1498
1729
  type SubscriberEvent = any;
1499
1730
  type SubscriberResponse = any;
1500
- type CreateLogResponse = any;
1501
- type DeviceInfo = any;
1502
- type EntityObj = any;
1503
- type EntityObject = any;
1504
- type EntityTypeObj = any;
1505
- type EntityTypesResponse = any;
1506
- type Location = any;
1507
- type LogDocs = any;
1508
- type LogMetaObj = any;
1509
- type LogSchemaResponse = any;
1510
- type Modifier = any;
1511
- type RequestBodyAuditLog = any;