@gofynd/fdk-client-javascript 1.1.2 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/index.d.ts +7 -7
- package/index.js +12 -12
- package/package.json +1 -1
- package/sdk/application/ApplicationClient.d.ts +20 -20
- package/sdk/application/ApplicationClient.js +26 -26
- package/sdk/application/Cart/CartApplicationClient.d.ts +36 -6
- package/sdk/application/Cart/CartApplicationClient.js +105 -10
- package/sdk/application/Cart/CartApplicationModel.d.ts +9 -0
- package/sdk/application/Cart/CartApplicationModel.js +105 -1
- package/sdk/application/Cart/CartApplicationValidator.d.ts +1 -0
- package/sdk/application/Cart/CartApplicationValidator.js +15 -1
- package/sdk/application/Catalog/CatalogApplicationModel.d.ts +1 -0
- package/sdk/application/Catalog/CatalogApplicationModel.js +13 -0
- package/sdk/application/Common/CommonApplicationModel.js +4 -0
- package/sdk/application/Configuration/ConfigurationApplicationClient.d.ts +14 -10
- package/sdk/application/Configuration/ConfigurationApplicationClient.js +16 -10
- package/sdk/application/Configuration/ConfigurationApplicationModel.js +6 -5
- package/sdk/application/Configuration/ConfigurationApplicationValidator.js +1 -0
- package/sdk/application/Content/ContentApplicationModel.js +3 -1
- package/sdk/application/Lead/LeadApplicationModel.js +4 -1
- package/sdk/application/Logistic/LogisticApplicationModel.js +3 -2
- package/sdk/application/Order/OrderApplicationClient.d.ts +2 -2
- package/sdk/application/Order/OrderApplicationClient.js +2 -2
- package/sdk/application/Order/OrderApplicationModel.js +18 -8
- package/sdk/application/Payment/PaymentApplicationClient.d.ts +35 -0
- package/sdk/application/Payment/PaymentApplicationClient.js +200 -0
- package/sdk/application/Payment/PaymentApplicationModel.d.ts +4 -0
- package/sdk/application/Payment/PaymentApplicationModel.js +58 -7
- package/sdk/application/Payment/PaymentApplicationValidator.d.ts +3 -0
- package/sdk/application/Payment/PaymentApplicationValidator.js +19 -0
- package/sdk/application/PosCart/PosCartApplicationClient.d.ts +16 -3
- package/sdk/application/PosCart/PosCartApplicationClient.js +39 -6
- package/sdk/application/PosCart/PosCartApplicationModel.d.ts +6 -0
- package/sdk/application/PosCart/PosCartApplicationModel.js +63 -1
- package/sdk/application/PosCart/PosCartApplicationValidator.js +6 -0
- package/sdk/application/index.d.ts +10 -10
- package/sdk/application/index.js +13 -13
- package/sdk/common/Constant.d.ts +5 -0
- package/sdk/common/Constant.js +5 -0
- package/sdk/partner/OAuthClient.js +1 -1
- package/sdk/platform/Billing/BillingPlatformModel.js +6 -1
- package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +491 -2
- package/sdk/platform/Cart/CartPlatformApplicationClient.js +2661 -337
- package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +32 -0
- package/sdk/platform/Cart/CartPlatformApplicationValidator.js +269 -0
- package/sdk/platform/Cart/CartPlatformModel.d.ts +58 -0
- package/sdk/platform/Cart/CartPlatformModel.js +652 -3
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +8 -2
- package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +10 -0
- package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +1 -0
- package/sdk/platform/Catalog/CatalogPlatformClient.js +2 -2
- package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +1 -0
- package/sdk/platform/Catalog/CatalogPlatformModel.js +43 -31
- package/sdk/platform/Common/CommonPlatformModel.js +4 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +1 -0
- package/sdk/platform/Communication/CommunicationPlatformModel.js +9 -0
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +2 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +2 -2
- package/sdk/platform/CompanyProfile/CompanyProfilePlatformModel.js +5 -4
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.d.ts +99 -78
- package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +99 -78
- package/sdk/platform/Configuration/ConfigurationPlatformClient.d.ts +87 -71
- package/sdk/platform/Configuration/ConfigurationPlatformClient.js +87 -71
- package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +2 -0
- package/sdk/platform/Configuration/ConfigurationPlatformModel.js +34 -7
- package/sdk/platform/Content/ContentPlatformModel.js +3 -1
- package/sdk/platform/Finance/FinancePlatformClient.d.ts +135 -0
- package/sdk/platform/Finance/FinancePlatformClient.js +853 -0
- package/sdk/platform/Finance/FinancePlatformModel.d.ts +51 -0
- package/sdk/platform/Finance/FinancePlatformModel.js +342 -0
- package/sdk/platform/Finance/FinancePlatformValidator.d.ts +16 -0
- package/sdk/platform/Finance/FinancePlatformValidator.js +84 -0
- package/sdk/platform/Order/OrderPlatformApplicationClient.d.ts +11 -1
- package/sdk/platform/Order/OrderPlatformApplicationClient.js +66 -2
- package/sdk/platform/Order/OrderPlatformApplicationValidator.d.ts +1 -0
- package/sdk/platform/Order/OrderPlatformApplicationValidator.js +6 -0
- package/sdk/platform/Order/OrderPlatformClient.d.ts +161 -79
- package/sdk/platform/Order/OrderPlatformClient.js +546 -114
- package/sdk/platform/Order/OrderPlatformModel.d.ts +42 -6
- package/sdk/platform/Order/OrderPlatformModel.js +569 -159
- package/sdk/platform/Order/OrderPlatformValidator.d.ts +6 -0
- package/sdk/platform/Order/OrderPlatformValidator.js +52 -9
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.d.ts +22 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +127 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.d.ts +2 -0
- package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +13 -0
- package/sdk/platform/Partner/PartnerPlatformClient.d.ts +145 -0
- package/sdk/platform/Partner/PartnerPlatformClient.js +799 -0
- package/sdk/platform/Partner/PartnerPlatformModel.d.ts +39 -0
- package/sdk/platform/Partner/PartnerPlatformModel.js +367 -0
- package/sdk/platform/Partner/PartnerPlatformValidator.d.ts +14 -0
- package/sdk/platform/Partner/PartnerPlatformValidator.js +87 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +221 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +1476 -190
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.d.ts +20 -0
- package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +126 -0
- package/sdk/platform/Payment/PaymentPlatformModel.d.ts +48 -0
- package/sdk/platform/Payment/PaymentPlatformModel.js +452 -7
- package/sdk/platform/PlatformApplicationClient.d.ts +1249 -937
- package/sdk/platform/PlatformApplicationClient.js +1366 -1033
- package/sdk/platform/PlatformClient.d.ts +10979 -8771
- package/sdk/platform/PlatformClient.js +11874 -9197
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +134 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +852 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +16 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +81 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +223 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +1296 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +97 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +778 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +21 -0
- package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +130 -0
- package/sdk/platform/index.d.ts +16 -14
- package/sdk/platform/index.js +22 -18
- package/sdk/public/Configuration/ConfigurationPublicModel.js +5 -0
- package/sdk/public/PublicClient.d.ts +2 -2
- package/sdk/public/PublicClient.js +4 -4
- package/sdk/public/index.d.ts +1 -1
- package/sdk/public/index.js +2 -2
|
@@ -4,387 +4,96 @@ declare class PlatformApplicationClient {
|
|
|
4
4
|
config: any;
|
|
5
5
|
companyId: any;
|
|
6
6
|
applicationId: any;
|
|
7
|
-
|
|
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
|
-
|
|
16
|
-
share: Share;
|
|
9
|
+
communication: Communication;
|
|
17
10
|
configuration: Configuration;
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
content: Content;
|
|
12
|
+
fileStorage: FileStorage;
|
|
13
|
+
lead: Lead;
|
|
14
|
+
order: Order;
|
|
20
15
|
partner: Partner;
|
|
16
|
+
payment: Payment;
|
|
17
|
+
rewards: Rewards;
|
|
18
|
+
serviceability: Serviceability;
|
|
19
|
+
share: Share;
|
|
20
|
+
theme: Theme;
|
|
21
|
+
user: User;
|
|
21
22
|
setExtraHeaders(header: any): void;
|
|
22
23
|
}
|
|
23
24
|
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, ActivePromosResponse, AddCartDetailResponse, AddCartRequest, AddProductCart, AppliedFreeArticles, 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, DiscountRulesApp, DisplayBreakup, DisplayMeta, DisplayMeta1, DisplayMetaDict, FreeGiftItem, ItemCriteria, LoyaltyPoints, OpenapiCartDetailsRequest, OpenapiCartDetailsResponse, OpenApiCartServiceabilityRequest, OpenApiCartServiceabilityResponse, OpenApiCheckoutResponse, OpenApiErrorResponse, OpenApiFiles, OpenApiOrderItem, OpenApiPlatformCheckoutReq, OperationErrorResponse, OverrideCartItem, OverrideCartItemPromo, OverrideCheckoutReq, OverrideCheckoutResponse, 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 };
|
|
25
|
+
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, Article, ArticlePriceInfo, BaseInfo, BasePrice, BulkBundleRestriction, BuyRules, CartBreakup, CartCheckoutResponse, CartCurrency, CartDeliveryModesResponse, CartDetailResponse, CartItem, CartItemCountResponse, CartItemMeta, CartList, CartMetaConfigAdd, CartMetaConfigUpdate, CartMetaMissingResponse, CartMetaResponse, CartProduct, CartProductIdentifer, CartProductInfo, CategoryInfo, Charges, CheckCart, Collection, 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, PriceAdjustment, PriceAdjustmentAdd, PriceAdjustmentResponse, PriceAdjustmentUpdate, 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, 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, Payout, PayoutAggregator, PayoutBankDetails, PayoutCustomer, PayoutMoreAttributes, 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, AddressResponse, ApplicationCompanyDpViewRequest, ApplicationCompanyDpViewResponse, ApplicationSelfShipConfig, ApplicationSelfShipConfigResponse, ApplicationServiceabilityConfig, ApplicationServiceabilityConfigResponse, CompanyDpAccountListResponse, CompanyDpAccountRequest, CompanyDpAccountResponse, CompanyStoreView_PageItems, CompanyStoreView_Response, ContactNumberResponse, CreatedByResponse, CreateZoneData, DocumentsResponse, Dp, Dp1, DpAccountFailureResponse, DPApplicationRuleRequest, DPApplicationRuleResponse, DPCompanyRuleRequest, DPCompanyRuleResponse, DpIds, DpMultipleRuleSuccessResponse, DpRule, DpRuleRequest, DpRuleResponse, DpRuleSuccessResponse, DpRulesUpdateRequest, DpRuleUpdateSuccessResponse, DpSchemaInRuleListing, EinvoiceResponse, EntityRegionView_Error, EntityRegionView_Items, EntityRegionView_page, EntityRegionView_Request, EntityRegionView_Response, EwayBillResponse, FailureResponse, GetSingleZoneDataViewResponse, GetStoresViewResponse, GetZoneDataViewChannels, GetZoneDataViewItems, GetZoneFromApplicationIdViewResponse, GetZoneFromPincodeViewRequest, GetZoneFromPincodeViewResponse, GstCredentialsResponse, IntegrationTypeResponse, ItemResponse, ListViewChannels, ListViewItems, ListViewProduct, ListViewResponse, ListViewSummary, LogisticsResponse, ManagerResponse, MobileNo, ModifiedByResponse, OpeningClosing, PincodeBulkViewResponse, PincodeCodStatusListingPage, PincodeCodStatusListingRequest, PincodeCodStatusListingResponse, PincodeCodStatusListingSummary, PincodeMopBulkData, PincodeMopData, PincodeMOPresponse, PincodeMopUpdateAuditHistoryPaging, PincodeMopUpdateAuditHistoryRequest, PincodeMopUpdateAuditHistoryResponse, PincodeMopUpdateAuditHistoryResponseData, PincodeMopUpdateResponse, ProductReturnConfigResponse, ReAssignStoreRequest, ReAssignStoreResponse, SelfShipResponse, ServiceabilityErrorResponse, ServiceabilityPageResponse, TimmingResponse, UpdateZoneData, WarningsResponse, Zone, ZoneDataItem, ZoneMappingType, ZoneProductTypes, ZoneRequest, ZoneResponse, ZoneSuccessResponse, ZoneUpdateRequest, 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
26
|
}
|
|
26
|
-
import
|
|
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");
|
|
27
|
+
import Cart = require("./Cart/CartPlatformApplicationClient");
|
|
33
28
|
import Catalog = require("./Catalog/CatalogPlatformApplicationClient");
|
|
34
|
-
import
|
|
35
|
-
import Share = require("./Share/SharePlatformApplicationClient");
|
|
29
|
+
import Communication = require("./Communication/CommunicationPlatformApplicationClient");
|
|
36
30
|
import Configuration = require("./Configuration/ConfigurationPlatformApplicationClient");
|
|
37
|
-
import
|
|
38
|
-
import
|
|
31
|
+
import Content = require("./Content/ContentPlatformApplicationClient");
|
|
32
|
+
import FileStorage = require("./FileStorage/FileStoragePlatformApplicationClient");
|
|
33
|
+
import Lead = require("./Lead/LeadPlatformApplicationClient");
|
|
34
|
+
import Order = require("./Order/OrderPlatformApplicationClient");
|
|
39
35
|
import Partner = require("./Partner/PartnerPlatformApplicationClient");
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
type ApplicationWebsite = any;
|
|
36
|
+
import Payment = require("./Payment/PaymentPlatformApplicationClient");
|
|
37
|
+
import Rewards = require("./Rewards/RewardsPlatformApplicationClient");
|
|
38
|
+
import Serviceability = require("./Serviceability/ServiceabilityPlatformApplicationClient");
|
|
39
|
+
import Share = require("./Share/SharePlatformApplicationClient");
|
|
40
|
+
import Theme = require("./Theme/ThemePlatformApplicationClient");
|
|
41
|
+
import User = require("./User/UserPlatformApplicationClient");
|
|
47
42
|
type BadRequest = any;
|
|
48
|
-
type
|
|
49
|
-
type
|
|
50
|
-
type
|
|
51
|
-
type
|
|
52
|
-
type
|
|
53
|
-
type
|
|
54
|
-
type
|
|
43
|
+
type CreateLogResponse = any;
|
|
44
|
+
type DeviceInfo = any;
|
|
45
|
+
type EntityObj = any;
|
|
46
|
+
type EntityObject = any;
|
|
47
|
+
type EntityTypeObj = any;
|
|
48
|
+
type EntityTypesResponse = any;
|
|
49
|
+
type InternalServerError = any;
|
|
50
|
+
type Location = any;
|
|
51
|
+
type LogDocs = any;
|
|
52
|
+
type LogMetaObj = any;
|
|
53
|
+
type LogSchemaResponse = any;
|
|
54
|
+
type Modifier = any;
|
|
55
|
+
type RequestBodyAuditLog = any;
|
|
56
|
+
type ResourceNotFound = any;
|
|
57
|
+
type CancelSubscriptionReq = any;
|
|
58
|
+
type CancelSubscriptionRes = any;
|
|
59
|
+
type ChargeLineItem = any;
|
|
60
|
+
type CheckValidityResponse = any;
|
|
61
|
+
type CreateOneTimeCharge = any;
|
|
62
|
+
type CreateOneTimeChargeResponse = any;
|
|
63
|
+
type CreateSubscriptionCharge = any;
|
|
64
|
+
type CreateSubscriptionResponse = any;
|
|
65
|
+
type CurrentPeriod = any;
|
|
66
|
+
type DetailedPlan = any;
|
|
67
|
+
type DetailedPlanComponents = any;
|
|
68
|
+
type EntityChargePrice = any;
|
|
69
|
+
type EntityChargeRecurring = any;
|
|
70
|
+
type EntitySubscription = any;
|
|
71
|
+
type Invoice = any;
|
|
72
|
+
type InvoiceDetails = any;
|
|
73
|
+
type InvoiceDetailsClient = any;
|
|
74
|
+
type InvoiceDetailsPaymentMethods = any;
|
|
75
|
+
type InvoiceDetailsPaymentMethodsData = any;
|
|
76
|
+
type InvoiceDetailsPaymentMethodsDataChecks = any;
|
|
77
|
+
type InvoiceDetailsPaymentMethodsDataNetworks = any;
|
|
78
|
+
type InvoiceDetailsPaymentMethodsDataThreeDSecureUsage = any;
|
|
79
|
+
type InvoiceDetailsPeriod = any;
|
|
80
|
+
type InvoiceDetailsStatusTrail = any;
|
|
81
|
+
type InvoiceItems = any;
|
|
82
|
+
type InvoiceItemsPeriod = any;
|
|
83
|
+
type InvoiceItemsPlan = any;
|
|
84
|
+
type InvoiceItemsPlanRecurring = any;
|
|
85
|
+
type InvoicePaymentMethod = any;
|
|
86
|
+
type Invoices = any;
|
|
87
|
+
type InvoicesData = any;
|
|
88
|
+
type InvoicesDataClient = any;
|
|
89
|
+
type InvoicesDataPaymentMethod = any;
|
|
90
|
+
type InvoicesDataPeriod = any;
|
|
91
|
+
type OneTimeChargeEntity = any;
|
|
92
|
+
type OneTimeChargeItem = any;
|
|
55
93
|
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
94
|
type Phone = any;
|
|
385
95
|
type Plan = any;
|
|
386
96
|
type PlanRecurring = any;
|
|
387
|
-
type ResourceNotFound = any;
|
|
388
97
|
type Subscription = any;
|
|
389
98
|
type SubscriptionActivateReq = any;
|
|
390
99
|
type SubscriptionActivateRes = any;
|
|
@@ -408,354 +117,180 @@ type SubscriptionTrial = any;
|
|
|
408
117
|
type SubscriptionTrialPeriod = any;
|
|
409
118
|
type UnauthenticatedApplication = any;
|
|
410
119
|
type UnauthenticatedUser = any;
|
|
411
|
-
type
|
|
412
|
-
type
|
|
413
|
-
type
|
|
414
|
-
type
|
|
415
|
-
type
|
|
416
|
-
type
|
|
417
|
-
type
|
|
418
|
-
type
|
|
419
|
-
type
|
|
420
|
-
type
|
|
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;
|
|
120
|
+
type AbandonedCart = any;
|
|
121
|
+
type AbandonedCartResponse = any;
|
|
122
|
+
type ActionQuery = any;
|
|
123
|
+
type ActivePromosResponse = any;
|
|
124
|
+
type AddCartDetailResponse = any;
|
|
125
|
+
type AddCartRequest = any;
|
|
126
|
+
type AddProductCart = any;
|
|
127
|
+
type AppliedFreeArticles = any;
|
|
128
|
+
type AppliedPromotion = any;
|
|
129
|
+
type ApplyCouponRequest = any;
|
|
570
130
|
type Article = any;
|
|
571
|
-
type
|
|
572
|
-
type
|
|
573
|
-
type
|
|
574
|
-
type
|
|
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;
|
|
131
|
+
type ArticlePriceInfo = any;
|
|
132
|
+
type BaseInfo = any;
|
|
133
|
+
type BasePrice = any;
|
|
134
|
+
type BulkBundleRestriction = any;
|
|
593
135
|
type BuyRules = any;
|
|
594
|
-
type
|
|
595
|
-
type
|
|
596
|
-
type
|
|
597
|
-
type
|
|
598
|
-
type
|
|
599
|
-
type
|
|
600
|
-
type
|
|
601
|
-
type
|
|
602
|
-
type
|
|
603
|
-
type
|
|
604
|
-
type
|
|
605
|
-
type
|
|
606
|
-
type
|
|
607
|
-
type
|
|
608
|
-
type
|
|
609
|
-
type
|
|
610
|
-
type
|
|
611
|
-
type
|
|
612
|
-
type
|
|
613
|
-
type
|
|
614
|
-
type
|
|
615
|
-
type
|
|
616
|
-
type
|
|
617
|
-
type
|
|
618
|
-
type
|
|
619
|
-
type
|
|
620
|
-
type
|
|
621
|
-
type
|
|
622
|
-
type
|
|
623
|
-
type
|
|
624
|
-
type
|
|
625
|
-
type
|
|
626
|
-
type
|
|
627
|
-
type
|
|
628
|
-
type
|
|
629
|
-
type
|
|
630
|
-
type
|
|
631
|
-
type
|
|
632
|
-
type
|
|
633
|
-
type
|
|
634
|
-
type
|
|
635
|
-
type
|
|
636
|
-
type
|
|
637
|
-
type
|
|
638
|
-
type
|
|
639
|
-
type
|
|
640
|
-
type
|
|
136
|
+
type CartBreakup = any;
|
|
137
|
+
type CartCheckoutResponse = any;
|
|
138
|
+
type CartCurrency = any;
|
|
139
|
+
type CartDeliveryModesResponse = any;
|
|
140
|
+
type CartDetailResponse = any;
|
|
141
|
+
type CartItem = any;
|
|
142
|
+
type CartItemCountResponse = any;
|
|
143
|
+
type CartItemMeta = any;
|
|
144
|
+
type CartList = any;
|
|
145
|
+
type CartMetaConfigAdd = any;
|
|
146
|
+
type CartMetaConfigUpdate = any;
|
|
147
|
+
type CartMetaMissingResponse = any;
|
|
148
|
+
type CartMetaResponse = any;
|
|
149
|
+
type CartProduct = any;
|
|
150
|
+
type CartProductIdentifer = any;
|
|
151
|
+
type CartProductInfo = any;
|
|
152
|
+
type CategoryInfo = any;
|
|
153
|
+
type Charges = any;
|
|
154
|
+
type CheckCart = any;
|
|
155
|
+
type Collection = any;
|
|
156
|
+
type CompareObject = any;
|
|
157
|
+
type Coupon = any;
|
|
158
|
+
type CouponAction = any;
|
|
159
|
+
type CouponAdd = any;
|
|
160
|
+
type CouponAuthor = any;
|
|
161
|
+
type CouponBreakup = any;
|
|
162
|
+
type CouponDateMeta = any;
|
|
163
|
+
type CouponDetails = any;
|
|
164
|
+
type CouponPartialUpdate = any;
|
|
165
|
+
type CouponSchedule = any;
|
|
166
|
+
type CouponsResponse = any;
|
|
167
|
+
type CouponUpdate = any;
|
|
168
|
+
type CouponValidity = any;
|
|
169
|
+
type DeleteAddressResponse = any;
|
|
170
|
+
type DeleteCartDetailResponse = any;
|
|
171
|
+
type DeleteCartRequest = any;
|
|
172
|
+
type DeliveryCharges = any;
|
|
173
|
+
type DiscountOffer = any;
|
|
174
|
+
type DiscountRule = any;
|
|
175
|
+
type DiscountRulesApp = any;
|
|
176
|
+
type DisplayBreakup = any;
|
|
177
|
+
type DisplayMeta = any;
|
|
178
|
+
type DisplayMeta1 = any;
|
|
179
|
+
type DisplayMetaDict = any;
|
|
180
|
+
type Files = any;
|
|
181
|
+
type FreeGiftItem = any;
|
|
182
|
+
type GeoLocation = any;
|
|
183
|
+
type GetCouponResponse = any;
|
|
184
|
+
type GetShareCartLinkRequest = any;
|
|
185
|
+
type GetShareCartLinkResponse = any;
|
|
641
186
|
type Identifier = any;
|
|
642
|
-
type
|
|
643
|
-
type
|
|
644
|
-
type
|
|
645
|
-
type
|
|
646
|
-
type
|
|
647
|
-
type
|
|
648
|
-
type
|
|
649
|
-
type
|
|
650
|
-
type
|
|
651
|
-
type
|
|
652
|
-
type
|
|
653
|
-
type
|
|
654
|
-
type
|
|
655
|
-
type
|
|
656
|
-
type
|
|
657
|
-
type
|
|
658
|
-
type
|
|
659
|
-
type
|
|
660
|
-
type
|
|
661
|
-
type
|
|
662
|
-
type
|
|
663
|
-
type
|
|
664
|
-
type
|
|
665
|
-
type
|
|
666
|
-
type
|
|
667
|
-
type
|
|
668
|
-
type
|
|
669
|
-
type OrderStatusResult = any;
|
|
670
|
-
type OrderUser = any;
|
|
671
|
-
type OriginalFilter = any;
|
|
672
|
-
type Page1 = any;
|
|
673
|
-
type PaymentInfo = any;
|
|
187
|
+
type ItemCriteria = any;
|
|
188
|
+
type LoyaltyPoints = any;
|
|
189
|
+
type MultiCartResponse = any;
|
|
190
|
+
type MultiTenderPaymentMeta = any;
|
|
191
|
+
type MultiTenderPaymentMethod = any;
|
|
192
|
+
type OpenapiCartDetailsRequest = any;
|
|
193
|
+
type OpenapiCartDetailsResponse = any;
|
|
194
|
+
type OpenApiCartServiceabilityRequest = any;
|
|
195
|
+
type OpenApiCartServiceabilityResponse = any;
|
|
196
|
+
type OpenApiCheckoutResponse = any;
|
|
197
|
+
type OpenApiErrorResponse = any;
|
|
198
|
+
type OpenApiFiles = any;
|
|
199
|
+
type OpenApiOrderItem = any;
|
|
200
|
+
type OpenApiPlatformCheckoutReq = any;
|
|
201
|
+
type OperationErrorResponse = any;
|
|
202
|
+
type OverrideCartItem = any;
|
|
203
|
+
type OverrideCartItemPromo = any;
|
|
204
|
+
type OverrideCheckoutReq = any;
|
|
205
|
+
type OverrideCheckoutResponse = any;
|
|
206
|
+
type Ownership = any;
|
|
207
|
+
type Ownership1 = any;
|
|
208
|
+
type Ownership2 = any;
|
|
209
|
+
type PageCoupon = any;
|
|
210
|
+
type PaymentAllowValue = any;
|
|
211
|
+
type PaymentAllowValue1 = any;
|
|
212
|
+
type PaymentCouponValidate = any;
|
|
213
|
+
type PaymentMeta = any;
|
|
674
214
|
type PaymentMethod = any;
|
|
675
|
-
type
|
|
676
|
-
type
|
|
677
|
-
type
|
|
678
|
-
type
|
|
679
|
-
type
|
|
680
|
-
type
|
|
681
|
-
type
|
|
682
|
-
type
|
|
683
|
-
type
|
|
684
|
-
type
|
|
685
|
-
type
|
|
686
|
-
type
|
|
687
|
-
type
|
|
688
|
-
type
|
|
689
|
-
type
|
|
690
|
-
type
|
|
691
|
-
type
|
|
692
|
-
type
|
|
693
|
-
type
|
|
694
|
-
type
|
|
695
|
-
type
|
|
696
|
-
type
|
|
697
|
-
type
|
|
698
|
-
type
|
|
699
|
-
type
|
|
700
|
-
type
|
|
701
|
-
type
|
|
702
|
-
type
|
|
703
|
-
type
|
|
704
|
-
type
|
|
705
|
-
type
|
|
706
|
-
type
|
|
707
|
-
type
|
|
708
|
-
type
|
|
709
|
-
type
|
|
710
|
-
type
|
|
711
|
-
type
|
|
712
|
-
type
|
|
713
|
-
type
|
|
714
|
-
type
|
|
715
|
-
type
|
|
716
|
-
type
|
|
717
|
-
type
|
|
718
|
-
type
|
|
719
|
-
type
|
|
720
|
-
type
|
|
721
|
-
type
|
|
722
|
-
type
|
|
723
|
-
type
|
|
724
|
-
type
|
|
725
|
-
type
|
|
726
|
-
type
|
|
727
|
-
type
|
|
728
|
-
type
|
|
729
|
-
type
|
|
730
|
-
type
|
|
731
|
-
type
|
|
732
|
-
type
|
|
733
|
-
type
|
|
734
|
-
type
|
|
735
|
-
type
|
|
736
|
-
type
|
|
737
|
-
type
|
|
738
|
-
type
|
|
739
|
-
type
|
|
740
|
-
type
|
|
741
|
-
type
|
|
742
|
-
type
|
|
743
|
-
type
|
|
744
|
-
type
|
|
745
|
-
type
|
|
746
|
-
type
|
|
747
|
-
type
|
|
748
|
-
type
|
|
749
|
-
type
|
|
750
|
-
type
|
|
751
|
-
type
|
|
752
|
-
type
|
|
753
|
-
type
|
|
754
|
-
type URL = any;
|
|
755
|
-
type UserData = any;
|
|
756
|
-
type UserDataInfo = any;
|
|
757
|
-
type UserDetailsData = any;
|
|
758
|
-
type Weight = any;
|
|
215
|
+
type PaymentModes = any;
|
|
216
|
+
type PaymentSelectionLock = any;
|
|
217
|
+
type PickupStoreDetail = any;
|
|
218
|
+
type PlatformAddCartRequest = any;
|
|
219
|
+
type PlatformAddress = any;
|
|
220
|
+
type PlatformCartCheckoutDetailRequest = any;
|
|
221
|
+
type PlatformCartCheckoutDetailV2Request = any;
|
|
222
|
+
type PlatformCartMetaRequest = any;
|
|
223
|
+
type PlatformCartShipmentsResponse = any;
|
|
224
|
+
type PlatformGetAddressesResponse = any;
|
|
225
|
+
type PlatformSelectCartAddressRequest = any;
|
|
226
|
+
type PlatformShipmentResponse = any;
|
|
227
|
+
type PlatformUpdateCartRequest = any;
|
|
228
|
+
type PostOrder = any;
|
|
229
|
+
type PostOrder1 = any;
|
|
230
|
+
type PriceAdjustment = any;
|
|
231
|
+
type PriceAdjustmentAdd = any;
|
|
232
|
+
type PriceAdjustmentResponse = any;
|
|
233
|
+
type PriceAdjustmentUpdate = any;
|
|
234
|
+
type PriceRange = any;
|
|
235
|
+
type ProductAction = any;
|
|
236
|
+
type ProductArticle = any;
|
|
237
|
+
type ProductAvailability = any;
|
|
238
|
+
type ProductAvailabilitySize = any;
|
|
239
|
+
type ProductImage = any;
|
|
240
|
+
type ProductPrice = any;
|
|
241
|
+
type ProductPriceInfo = any;
|
|
242
|
+
type PromiseFormatted = any;
|
|
243
|
+
type PromiseTimestamp = any;
|
|
244
|
+
type PromoMeta = any;
|
|
245
|
+
type PromotionAction = any;
|
|
246
|
+
type PromotionAdd = any;
|
|
247
|
+
type PromotionAuthor = any;
|
|
248
|
+
type PromotionDateMeta = any;
|
|
249
|
+
type PromotionListItem = any;
|
|
250
|
+
type PromotionPartialUpdate = any;
|
|
251
|
+
type PromotionPaymentModes = any;
|
|
252
|
+
type PromotionSchedule = any;
|
|
253
|
+
type PromotionsResponse = any;
|
|
254
|
+
type PromotionUpdate = any;
|
|
255
|
+
type RawBreakup = any;
|
|
256
|
+
type Restrictions = any;
|
|
257
|
+
type Restrictions1 = any;
|
|
258
|
+
type Rule = any;
|
|
259
|
+
type RuleDefinition = any;
|
|
260
|
+
type SaveAddressResponse = any;
|
|
261
|
+
type SharedCart = any;
|
|
262
|
+
type SharedCartDetails = any;
|
|
263
|
+
type SharedCartResponse = any;
|
|
264
|
+
type ShipmentArticle = any;
|
|
265
|
+
type ShipmentPromise = any;
|
|
266
|
+
type ShippingAddress = any;
|
|
267
|
+
type StaffCheckout = any;
|
|
268
|
+
type State = any;
|
|
269
|
+
type StoreDetailsResponse = any;
|
|
270
|
+
type StoreInfo = any;
|
|
271
|
+
type SuccessMessage = any;
|
|
272
|
+
type Tags = any;
|
|
273
|
+
type UpdateAddressResponse = any;
|
|
274
|
+
type UpdateCartDetailResponse = any;
|
|
275
|
+
type UpdateCartPaymentRequest = any;
|
|
276
|
+
type UpdateCartPaymentRequestV2 = any;
|
|
277
|
+
type UpdateCartRequest = any;
|
|
278
|
+
type UpdateCartShipmentItem = any;
|
|
279
|
+
type UpdateCartShipmentRequest = any;
|
|
280
|
+
type UpdateProductCart = any;
|
|
281
|
+
type UpdateUserCartMapping = any;
|
|
282
|
+
type UserCartMappingResponse = any;
|
|
283
|
+
type UserInfo = any;
|
|
284
|
+
type UserRegistered = any;
|
|
285
|
+
type UsesRemaining = any;
|
|
286
|
+
type UsesRemaining1 = any;
|
|
287
|
+
type UsesRestriction = any;
|
|
288
|
+
type UsesRestriction1 = any;
|
|
289
|
+
type Validation = any;
|
|
290
|
+
type Validity = any;
|
|
291
|
+
type Visibility = any;
|
|
292
|
+
type Action = any;
|
|
293
|
+
type ActionPage = any;
|
|
759
294
|
type AllowSingleRequest = any;
|
|
760
295
|
type AllSizes = any;
|
|
761
296
|
type AppCatalogConfiguration = any;
|
|
@@ -787,9 +322,11 @@ type AttributeMasterMeta = any;
|
|
|
787
322
|
type AttributeMasterSerializer = any;
|
|
788
323
|
type AttributeSchemaRange = any;
|
|
789
324
|
type AutocompleteAction = any;
|
|
325
|
+
type AutoCompleteMedia = any;
|
|
790
326
|
type AutocompletePageAction = any;
|
|
791
327
|
type AutocompleteResult = any;
|
|
792
328
|
type BannerImage = any;
|
|
329
|
+
type Brand = any;
|
|
793
330
|
type BrandItem = any;
|
|
794
331
|
type BrandListingResponse = any;
|
|
795
332
|
type BrandMeta = any;
|
|
@@ -853,6 +390,7 @@ type CreateSearchKeyword = any;
|
|
|
853
390
|
type CrossSellingData = any;
|
|
854
391
|
type CrossSellingResponse = any;
|
|
855
392
|
type CustomOrder = any;
|
|
393
|
+
type DateMeta = any;
|
|
856
394
|
type DefaultKeyRequest = any;
|
|
857
395
|
type DeleteResponse = any;
|
|
858
396
|
type Department = any;
|
|
@@ -867,7 +405,9 @@ type DepartmentResponse = any;
|
|
|
867
405
|
type DepartmentsResponse = any;
|
|
868
406
|
type DimensionResponse = any;
|
|
869
407
|
type DimensionResponse1 = any;
|
|
408
|
+
type Document = any;
|
|
870
409
|
type EntityConfiguration = any;
|
|
410
|
+
type ErrorResponse = any;
|
|
871
411
|
type FilerList = any;
|
|
872
412
|
type GenderDetail = any;
|
|
873
413
|
type GetAddressSerializer = any;
|
|
@@ -956,6 +496,7 @@ type ManufacturerResponse1 = any;
|
|
|
956
496
|
type Media = any;
|
|
957
497
|
type Media1 = any;
|
|
958
498
|
type Media2 = any;
|
|
499
|
+
type Meta = any;
|
|
959
500
|
type MetaDataListingFilterMetaResponse = any;
|
|
960
501
|
type MetaDataListingFilterResponse = any;
|
|
961
502
|
type MetaDataListingResponse = any;
|
|
@@ -965,6 +506,7 @@ type MetaFields = any;
|
|
|
965
506
|
type MOQData = any;
|
|
966
507
|
type NetQuantity = any;
|
|
967
508
|
type NetQuantityResponse = any;
|
|
509
|
+
type NextSchedule = any;
|
|
968
510
|
type OptinCompanyBrandDetailsView = any;
|
|
969
511
|
type OptinCompanyDetail = any;
|
|
970
512
|
type OptinCompanyMetrics = any;
|
|
@@ -1022,6 +564,7 @@ type Quantities = any;
|
|
|
1022
564
|
type QuantitiesArticle = any;
|
|
1023
565
|
type Quantity = any;
|
|
1024
566
|
type QuantityBase = any;
|
|
567
|
+
type ReturnConfig = any;
|
|
1025
568
|
type ReturnConfig1 = any;
|
|
1026
569
|
type ReturnConfig2 = any;
|
|
1027
570
|
type ReturnConfigResponse = any;
|
|
@@ -1038,6 +581,8 @@ type SizeDistribution = any;
|
|
|
1038
581
|
type SizeGuideResponse = any;
|
|
1039
582
|
type StoreAssignResponse = any;
|
|
1040
583
|
type StoreDetail = any;
|
|
584
|
+
type StoreMeta = any;
|
|
585
|
+
type SuccessResponse = any;
|
|
1041
586
|
type SuccessResponse1 = any;
|
|
1042
587
|
type TaxIdentifier = any;
|
|
1043
588
|
type TaxSlab = any;
|
|
@@ -1055,7 +600,6 @@ type UpdatedResponse = any;
|
|
|
1055
600
|
type UserCommon = any;
|
|
1056
601
|
type UserDetail = any;
|
|
1057
602
|
type UserDetail1 = any;
|
|
1058
|
-
type UserInfo = any;
|
|
1059
603
|
type UserInfo1 = any;
|
|
1060
604
|
type UserSerializer = any;
|
|
1061
605
|
type UserSerializer1 = any;
|
|
@@ -1066,6 +610,119 @@ type ValidateSizeGuide = any;
|
|
|
1066
610
|
type VerifiedBy = any;
|
|
1067
611
|
type WeightResponse = any;
|
|
1068
612
|
type WeightResponse1 = any;
|
|
613
|
+
type Application = any;
|
|
614
|
+
type ApplicationAuth = any;
|
|
615
|
+
type ApplicationCors = any;
|
|
616
|
+
type ApplicationMeta = any;
|
|
617
|
+
type ApplicationRedirections = any;
|
|
618
|
+
type ApplicationResponse = any;
|
|
619
|
+
type ApplicationWebsite = any;
|
|
620
|
+
type Currency = any;
|
|
621
|
+
type Domain = any;
|
|
622
|
+
type LocationCountry = any;
|
|
623
|
+
type LocationDefaultCurrency = any;
|
|
624
|
+
type LocationDefaultLanguage = any;
|
|
625
|
+
type Locations = any;
|
|
626
|
+
type NotFound = any;
|
|
627
|
+
type SecureUrl = any;
|
|
628
|
+
type Audience = any;
|
|
629
|
+
type AudienceReq = any;
|
|
630
|
+
type Audiences = any;
|
|
631
|
+
type BadRequestSchema = any;
|
|
632
|
+
type BigqueryHeadersReq = any;
|
|
633
|
+
type BigqueryHeadersRes = any;
|
|
634
|
+
type BigqueryHeadersResHeaders = any;
|
|
635
|
+
type Campaign = any;
|
|
636
|
+
type CampaignEmail = any;
|
|
637
|
+
type CampaignEmailTemplate = any;
|
|
638
|
+
type CampaignReq = any;
|
|
639
|
+
type Campaigns = any;
|
|
640
|
+
type CampignEmailProvider = any;
|
|
641
|
+
type EmailProvider = any;
|
|
642
|
+
type EmailProviderReq = any;
|
|
643
|
+
type EmailProviderReqFrom = any;
|
|
644
|
+
type EmailProviders = any;
|
|
645
|
+
type EmailTemplate = any;
|
|
646
|
+
type EmailTemplateDeleteFailureRes = any;
|
|
647
|
+
type EmailTemplateDeleteSuccessRes = any;
|
|
648
|
+
type EmailTemplateHeaders = any;
|
|
649
|
+
type EmailTemplateKeys = any;
|
|
650
|
+
type EmailTemplateReq = any;
|
|
651
|
+
type EmailTemplateRes = any;
|
|
652
|
+
type EmailTemplates = any;
|
|
653
|
+
type EngineRequest = any;
|
|
654
|
+
type EngineResponse = any;
|
|
655
|
+
type EventSubscription = any;
|
|
656
|
+
type EventSubscriptions = any;
|
|
657
|
+
type EventSubscriptionTemplate = any;
|
|
658
|
+
type EventSubscriptionTemplateEmail = any;
|
|
659
|
+
type EventSubscriptionTemplateSms = any;
|
|
660
|
+
type GetNRecordsCsvReq = any;
|
|
661
|
+
type GetNRecordsCsvRes = any;
|
|
662
|
+
type GetNRecordsCsvResItems = any;
|
|
663
|
+
type GetStats = any;
|
|
664
|
+
type Job = any;
|
|
665
|
+
type JobLog = any;
|
|
666
|
+
type JobLogs = any;
|
|
667
|
+
type Jobs = any;
|
|
668
|
+
type Log = any;
|
|
669
|
+
type LogEmail = any;
|
|
670
|
+
type LogMeta = any;
|
|
671
|
+
type LogPushnotification = any;
|
|
672
|
+
type Logs = any;
|
|
673
|
+
type MetaStructure = any;
|
|
674
|
+
type Notification = any;
|
|
675
|
+
type PayloadEmailProviderStructure = any;
|
|
676
|
+
type PayloadEmailStructure = any;
|
|
677
|
+
type PayloadEmailTemplateStructure = any;
|
|
678
|
+
type PayloadSmsProviderStructure = any;
|
|
679
|
+
type PayloadSmsStructure = any;
|
|
680
|
+
type PayloadSmsTemplateStructure = any;
|
|
681
|
+
type PayloadStructure = any;
|
|
682
|
+
type PushtokenReq = any;
|
|
683
|
+
type PushtokenRes = any;
|
|
684
|
+
type RecipientHeaders = any;
|
|
685
|
+
type SendOtpCommsReq = any;
|
|
686
|
+
type SendOtpCommsReqData = any;
|
|
687
|
+
type SendOtpCommsReqEmail = any;
|
|
688
|
+
type SendOtpCommsReqSms = any;
|
|
689
|
+
type SendOtpCommsRes = any;
|
|
690
|
+
type SendOtpCommsResEmail = any;
|
|
691
|
+
type SendOtpCommsResSms = any;
|
|
692
|
+
type SendOtpEmailCommsProvider = any;
|
|
693
|
+
type SendOtpEmailCommsTemplate = any;
|
|
694
|
+
type SendOtpSmsCommsProvider = any;
|
|
695
|
+
type SendOtpSmsCommsTemplate = any;
|
|
696
|
+
type SmsProvider = any;
|
|
697
|
+
type SmsProviderReq = any;
|
|
698
|
+
type SmsProviders = any;
|
|
699
|
+
type SmsTemplate = any;
|
|
700
|
+
type SmsTemplateDeleteFailureRes = any;
|
|
701
|
+
type SmsTemplateDeleteSuccessRes = any;
|
|
702
|
+
type SmsTemplateMessage = any;
|
|
703
|
+
type SmsTemplateReq = any;
|
|
704
|
+
type SmsTemplateRes = any;
|
|
705
|
+
type SmsTemplates = any;
|
|
706
|
+
type Stats = any;
|
|
707
|
+
type StatsImported = any;
|
|
708
|
+
type StatsProcessed = any;
|
|
709
|
+
type StatsProcessedEmail = any;
|
|
710
|
+
type StatsProcessedSms = any;
|
|
711
|
+
type SystemEmailTemplate = any;
|
|
712
|
+
type SystemEmailTemplates = any;
|
|
713
|
+
type SystemNotification = any;
|
|
714
|
+
type SystemNotifications = any;
|
|
715
|
+
type SystemNotificationSettings = any;
|
|
716
|
+
type SystemNotificationsPage = any;
|
|
717
|
+
type SystemNotificationUser = any;
|
|
718
|
+
type SystemSmsTemplate = any;
|
|
719
|
+
type SystemSmsTemplates = any;
|
|
720
|
+
type TemplateAndType = any;
|
|
721
|
+
type TriggerJobRequest = any;
|
|
722
|
+
type TriggerJobResponse = any;
|
|
723
|
+
type VerifyOtpCommsErrorRes = any;
|
|
724
|
+
type VerifyOtpCommsReq = any;
|
|
725
|
+
type VerifyOtpCommsSuccessRes = any;
|
|
1069
726
|
type AddressSerializer = any;
|
|
1070
727
|
type BrandBannerSerializer = any;
|
|
1071
728
|
type BulkLocationSerializer = any;
|
|
@@ -1074,10 +731,12 @@ type BusinessDetails = any;
|
|
|
1074
731
|
type CompanyBrandListSerializer = any;
|
|
1075
732
|
type CompanyBrandPostRequestSerializer = any;
|
|
1076
733
|
type CompanyBrandSerializer = any;
|
|
734
|
+
type CompanyDetails = any;
|
|
1077
735
|
type CompanySerializer = any;
|
|
1078
736
|
type CompanySocialAccounts = any;
|
|
1079
737
|
type CompanyTaxesSerializer = any;
|
|
1080
738
|
type CompanyTaxesSerializer1 = any;
|
|
739
|
+
type ContactDetails = any;
|
|
1081
740
|
type CreateUpdateAddressSerializer = any;
|
|
1082
741
|
type CreateUpdateBrandRequestSerializer = any;
|
|
1083
742
|
type DocumentsObj = any;
|
|
@@ -1090,94 +749,6 @@ type MetricsSerializer = any;
|
|
|
1090
749
|
type ProfileSuccessResponse = any;
|
|
1091
750
|
type UpdateCompany = any;
|
|
1092
751
|
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
752
|
type Android = any;
|
|
1182
753
|
type App = any;
|
|
1183
754
|
type AppCartConfig = any;
|
|
@@ -1213,7 +784,6 @@ type BuildVersionHistory = any;
|
|
|
1213
784
|
type BusinessHighlights = any;
|
|
1214
785
|
type CallbackUrl = any;
|
|
1215
786
|
type CartFeature = any;
|
|
1216
|
-
type Charges = any;
|
|
1217
787
|
type CommonFeature = any;
|
|
1218
788
|
type CommsConfig = any;
|
|
1219
789
|
type CommunicationConfig = any;
|
|
@@ -1234,7 +804,6 @@ type CurrencyConfig = any;
|
|
|
1234
804
|
type CurrencyFeature = any;
|
|
1235
805
|
type Debit = any;
|
|
1236
806
|
type DefaultCurrency = any;
|
|
1237
|
-
type DeliveryCharges = any;
|
|
1238
807
|
type DeploymentMeta = any;
|
|
1239
808
|
type DeploymentStoreSelectionFeature = any;
|
|
1240
809
|
type DomainAdd = any;
|
|
@@ -1315,8 +884,8 @@ type OtherEntityData = any;
|
|
|
1315
884
|
type OtherSellerApplication = any;
|
|
1316
885
|
type OtherSellerApplications = any;
|
|
1317
886
|
type OtherSellerCompany = any;
|
|
887
|
+
type PanCardConfig = any;
|
|
1318
888
|
type PaymentModeConfig = any;
|
|
1319
|
-
type PaymentSelectionLock = any;
|
|
1320
889
|
type PcrFeature = any;
|
|
1321
890
|
type PinterestLink = any;
|
|
1322
891
|
type ProductDetailFeature = any;
|
|
@@ -1348,116 +917,643 @@ type UpdateDomainTypeRequest = any;
|
|
|
1348
917
|
type UpdateIntegrationLevelRequest = any;
|
|
1349
918
|
type UserEmail = any;
|
|
1350
919
|
type UserPhoneNumber = any;
|
|
920
|
+
type ValidationFailedResponse = any;
|
|
1351
921
|
type Validators = any;
|
|
1352
922
|
type VimeoLink = any;
|
|
1353
923
|
type YoutubeLink = any;
|
|
1354
|
-
type
|
|
1355
|
-
type
|
|
1356
|
-
type
|
|
1357
|
-
type
|
|
1358
|
-
type
|
|
1359
|
-
type
|
|
1360
|
-
type
|
|
1361
|
-
type
|
|
1362
|
-
type
|
|
1363
|
-
type
|
|
1364
|
-
type
|
|
1365
|
-
type
|
|
1366
|
-
type
|
|
1367
|
-
type
|
|
1368
|
-
type
|
|
1369
|
-
type
|
|
1370
|
-
type
|
|
1371
|
-
type
|
|
1372
|
-
type
|
|
1373
|
-
type
|
|
1374
|
-
type
|
|
1375
|
-
type
|
|
1376
|
-
type
|
|
1377
|
-
type
|
|
1378
|
-
type
|
|
1379
|
-
type
|
|
1380
|
-
type
|
|
1381
|
-
type
|
|
1382
|
-
type
|
|
1383
|
-
type
|
|
1384
|
-
type
|
|
1385
|
-
type
|
|
1386
|
-
type
|
|
1387
|
-
type
|
|
1388
|
-
type
|
|
1389
|
-
type
|
|
1390
|
-
type
|
|
1391
|
-
type
|
|
1392
|
-
type
|
|
1393
|
-
type
|
|
1394
|
-
type
|
|
1395
|
-
type
|
|
1396
|
-
type
|
|
1397
|
-
type
|
|
1398
|
-
type
|
|
1399
|
-
type
|
|
1400
|
-
type
|
|
1401
|
-
type
|
|
1402
|
-
type
|
|
1403
|
-
type
|
|
1404
|
-
type
|
|
1405
|
-
type
|
|
1406
|
-
type
|
|
1407
|
-
type
|
|
1408
|
-
type
|
|
1409
|
-
type
|
|
1410
|
-
type
|
|
1411
|
-
type
|
|
1412
|
-
type
|
|
1413
|
-
type
|
|
1414
|
-
type
|
|
1415
|
-
type
|
|
1416
|
-
type
|
|
1417
|
-
type
|
|
1418
|
-
type
|
|
1419
|
-
type
|
|
1420
|
-
type
|
|
1421
|
-
type
|
|
1422
|
-
type
|
|
1423
|
-
type
|
|
1424
|
-
type
|
|
1425
|
-
type
|
|
1426
|
-
type
|
|
1427
|
-
type
|
|
1428
|
-
type
|
|
1429
|
-
type
|
|
1430
|
-
type
|
|
1431
|
-
type
|
|
1432
|
-
type
|
|
1433
|
-
type
|
|
1434
|
-
type
|
|
1435
|
-
type
|
|
1436
|
-
type
|
|
1437
|
-
type
|
|
1438
|
-
type
|
|
1439
|
-
type
|
|
1440
|
-
type
|
|
1441
|
-
type
|
|
1442
|
-
type
|
|
1443
|
-
type
|
|
1444
|
-
type
|
|
1445
|
-
type
|
|
1446
|
-
type
|
|
1447
|
-
type
|
|
1448
|
-
type
|
|
1449
|
-
type
|
|
1450
|
-
type
|
|
1451
|
-
type
|
|
1452
|
-
type
|
|
1453
|
-
type
|
|
1454
|
-
type
|
|
1455
|
-
type
|
|
1456
|
-
type
|
|
1457
|
-
type
|
|
1458
|
-
type
|
|
1459
|
-
type
|
|
1460
|
-
type
|
|
924
|
+
type AdminAnnouncementSchema = any;
|
|
925
|
+
type AnnouncementAuthorSchema = any;
|
|
926
|
+
type AnnouncementPageSchema = any;
|
|
927
|
+
type AnnouncementSchema = any;
|
|
928
|
+
type AnnouncementsResponseSchema = any;
|
|
929
|
+
type ApplicationLegal = any;
|
|
930
|
+
type ApplicationLegalFAQ = any;
|
|
931
|
+
type Asset = any;
|
|
932
|
+
type Author = any;
|
|
933
|
+
type BlogGetResponse = any;
|
|
934
|
+
type BlogRequest = any;
|
|
935
|
+
type BlogSchema = any;
|
|
936
|
+
type CategoryRequestSchema = any;
|
|
937
|
+
type CategorySchema = any;
|
|
938
|
+
type ChildrenSchema = any;
|
|
939
|
+
type CommonError = any;
|
|
940
|
+
type ConfigurationSchema = any;
|
|
941
|
+
type ContactSchema = any;
|
|
942
|
+
type ContentAPIError = any;
|
|
943
|
+
type ContentSchema = any;
|
|
944
|
+
type CreateAnnouncementSchema = any;
|
|
945
|
+
type CreatedBySchema = any;
|
|
946
|
+
type CreateFaqCategoryRequestSchema = any;
|
|
947
|
+
type CreateFaqCategorySchema = any;
|
|
948
|
+
type CreateFaqResponseSchema = any;
|
|
949
|
+
type CreateFaqSchema = any;
|
|
950
|
+
type CreateTagRequestSchema = any;
|
|
951
|
+
type CreateTagSchema = any;
|
|
952
|
+
type CronSchedule = any;
|
|
953
|
+
type CustomMetaTag = any;
|
|
954
|
+
type CustomPage = any;
|
|
955
|
+
type CustomPageSchema = any;
|
|
956
|
+
type DataLoaderResetResponseSchema = any;
|
|
957
|
+
type DataLoaderResponseSchema = any;
|
|
958
|
+
type DataLoaderSchema = any;
|
|
959
|
+
type DataLoaderSourceSchema = any;
|
|
960
|
+
type DataLoadersSchema = any;
|
|
961
|
+
type DefaultNavigationResponse = any;
|
|
962
|
+
type Detail = any;
|
|
963
|
+
type EditorMeta = any;
|
|
964
|
+
type EmailProperties = any;
|
|
965
|
+
type EmailSchema = any;
|
|
966
|
+
type FAQ = any;
|
|
967
|
+
type FAQCategorySchema = any;
|
|
968
|
+
type FaqResponseSchema = any;
|
|
969
|
+
type FaqSchema = any;
|
|
970
|
+
type FeatureImage = any;
|
|
971
|
+
type GeneratedSEOContent = any;
|
|
972
|
+
type GenerateSEOContent = any;
|
|
973
|
+
type GetAnnouncementListSchema = any;
|
|
974
|
+
type GetFaqCategoriesSchema = any;
|
|
975
|
+
type GetFaqCategoryBySlugSchema = any;
|
|
976
|
+
type GetFaqSchema = any;
|
|
977
|
+
type HandpickedTagSchema = any;
|
|
978
|
+
type LandingPage = any;
|
|
979
|
+
type LandingPageGetResponse = any;
|
|
980
|
+
type LandingPageSchema = any;
|
|
981
|
+
type Language = any;
|
|
982
|
+
type LocaleLanguage = any;
|
|
983
|
+
type Navigation = any;
|
|
984
|
+
type NavigationGetResponse = any;
|
|
985
|
+
type NavigationReference = any;
|
|
986
|
+
type NavigationRequest = any;
|
|
987
|
+
type NavigationSchema = any;
|
|
988
|
+
type Orientation = any;
|
|
989
|
+
type PageContent = any;
|
|
990
|
+
type PageGetResponse = any;
|
|
991
|
+
type PageMeta = any;
|
|
992
|
+
type PageMetaSchema = any;
|
|
993
|
+
type PagePublishRequest = any;
|
|
994
|
+
type PageRequest = any;
|
|
995
|
+
type PageSchema = any;
|
|
996
|
+
type PageSpec = any;
|
|
997
|
+
type PageSpecItem = any;
|
|
998
|
+
type PageSpecParam = any;
|
|
999
|
+
type PathMappingSchema = any;
|
|
1000
|
+
type PathSourceSchema = any;
|
|
1001
|
+
type PhoneProperties = any;
|
|
1002
|
+
type PhoneSchema = any;
|
|
1003
|
+
type RemoveHandpickedSchema = any;
|
|
1004
|
+
type ResourceContent = any;
|
|
1005
|
+
type ScheduleSchema = any;
|
|
1006
|
+
type ScheduleStartSchema = any;
|
|
1007
|
+
type SEO = any;
|
|
1008
|
+
type SeoComponent = any;
|
|
1009
|
+
type SEOImage = any;
|
|
1010
|
+
type SeoSchema = any;
|
|
1011
|
+
type Slideshow = any;
|
|
1012
|
+
type SlideshowGetResponse = any;
|
|
1013
|
+
type SlideshowMedia = any;
|
|
1014
|
+
type SlideshowRequest = any;
|
|
1015
|
+
type SlideshowSchema = any;
|
|
1016
|
+
type Support = any;
|
|
1017
|
+
type TagDeleteSuccessResponse = any;
|
|
1018
|
+
type TagSchema = any;
|
|
1019
|
+
type TagSourceSchema = any;
|
|
1020
|
+
type TagsSchema = any;
|
|
1021
|
+
type UpdateFaqCategoryRequestSchema = any;
|
|
1022
|
+
type UpdateHandpickedSchema = any;
|
|
1023
|
+
type BadRequestObject = any;
|
|
1024
|
+
type BulkDiscount = any;
|
|
1025
|
+
type CancelJobResponse = any;
|
|
1026
|
+
type CreateUpdateDiscount = any;
|
|
1027
|
+
type DiscountItems = any;
|
|
1028
|
+
type DiscountJob = any;
|
|
1029
|
+
type DownloadFileJob = any;
|
|
1030
|
+
type FileJobRequest = any;
|
|
1031
|
+
type FileJobResponse = any;
|
|
1032
|
+
type ListOrCalender = any;
|
|
1033
|
+
type UserDetails = any;
|
|
1034
|
+
type ValidityObject = any;
|
|
1035
|
+
type BrowseResponse = any;
|
|
1036
|
+
type BulkRequest = any;
|
|
1037
|
+
type BulkUploadResponse = any;
|
|
1038
|
+
type CDN = any;
|
|
1039
|
+
type CompleteResponse = any;
|
|
1040
|
+
type CopyFileTask = any;
|
|
1041
|
+
type DbRecord = any;
|
|
1042
|
+
type Destination = any;
|
|
1043
|
+
type FailedResponse = any;
|
|
1044
|
+
type Opts = any;
|
|
1045
|
+
type ReqConfiguration = any;
|
|
1046
|
+
type SignUrlRequest = any;
|
|
1047
|
+
type SignUrlResponse = any;
|
|
1048
|
+
type StartRequest = any;
|
|
1049
|
+
type StartResponse = any;
|
|
1050
|
+
type Upload = any;
|
|
1051
|
+
type Urls = any;
|
|
1052
|
+
type CreditlineDataPlatformPayload = any;
|
|
1053
|
+
type CreditlineDataPlatformRequest = any;
|
|
1054
|
+
type CreditlineDataPlatformResponse = any;
|
|
1055
|
+
type DownloadCreditDebitNote = any;
|
|
1056
|
+
type DownloadCreditDebitNoteRequest = any;
|
|
1057
|
+
type DownloadCreditDebitNoteResponse = any;
|
|
1058
|
+
type DownloadCreditDebitNoteResponseData = any;
|
|
1059
|
+
type DownloadReport = any;
|
|
1060
|
+
type DownloadReportItems = any;
|
|
1061
|
+
type DownloadReportList = any;
|
|
1062
|
+
type Error = any;
|
|
1063
|
+
type GenerateReportFilters = any;
|
|
1064
|
+
type GenerateReportJson = any;
|
|
1065
|
+
type GenerateReportMeta = any;
|
|
1066
|
+
type GenerateReportPlatform = any;
|
|
1067
|
+
type GenerateReportRequest = any;
|
|
1068
|
+
type GetAffiliate = any;
|
|
1069
|
+
type GetAffiliateResponse = any;
|
|
1070
|
+
type GetDocs = any;
|
|
1071
|
+
type GetEngineData = any;
|
|
1072
|
+
type GetEngineFilters = any;
|
|
1073
|
+
type GetEngineRequest = any;
|
|
1074
|
+
type GetEngineResponse = any;
|
|
1075
|
+
type GetReason = any;
|
|
1076
|
+
type GetReasonRequest = any;
|
|
1077
|
+
type GetReasonResponse = any;
|
|
1078
|
+
type GetReportListData = any;
|
|
1079
|
+
type GetReportListRequest = any;
|
|
1080
|
+
type InoviceListingPayloadDataFilters = any;
|
|
1081
|
+
type InvoiceListingPayloadData = any;
|
|
1082
|
+
type InvoiceListingRequest = any;
|
|
1083
|
+
type InvoiceListingResponse = any;
|
|
1084
|
+
type InvoiceListingResponseItems = any;
|
|
1085
|
+
type InvoicePdfPayloadData = any;
|
|
1086
|
+
type InvoicePdfRequest = any;
|
|
1087
|
+
type InvoicePdfResponse = any;
|
|
1088
|
+
type InvoiceTypePayloadData = any;
|
|
1089
|
+
type InvoiceTypeRequest = any;
|
|
1090
|
+
type InvoiceTypeResponse = any;
|
|
1091
|
+
type InvoiceTypeResponseItems = any;
|
|
1092
|
+
type IsCreditlinePayload = any;
|
|
1093
|
+
type IsCreditlinePlatformRequest = any;
|
|
1094
|
+
type IsCreditlinePlatformResponse = any;
|
|
1095
|
+
type PaymentProcessPayload = any;
|
|
1096
|
+
type PaymentProcessRequest = any;
|
|
1097
|
+
type PaymentProcessResponse = any;
|
|
1098
|
+
type UnpaidInvoiceDataItems = any;
|
|
1099
|
+
type ArchiveConfig = any;
|
|
1100
|
+
type Audit = any;
|
|
1101
|
+
type AWSS3config = any;
|
|
1102
|
+
type CatalogMasterConfig = any;
|
|
1103
|
+
type CompanyConfig = any;
|
|
1104
|
+
type DataTresholdDTO = any;
|
|
1105
|
+
type DBConfig = any;
|
|
1106
|
+
type DBConnectionProfile = any;
|
|
1107
|
+
type DBParamConfig = any;
|
|
1108
|
+
type DefaultHeadersDTO = any;
|
|
1109
|
+
type DocMappingConfig = any;
|
|
1110
|
+
type EmailConfig = any;
|
|
1111
|
+
type FileConfig = any;
|
|
1112
|
+
type FTPConfig = any;
|
|
1113
|
+
type GCompany = any;
|
|
1114
|
+
type GenericDTO = any;
|
|
1115
|
+
type GoogleSpreadSheetConfig = any;
|
|
1116
|
+
type GStore = any;
|
|
1117
|
+
type HttpConfig = any;
|
|
1118
|
+
type JobConfig = any;
|
|
1119
|
+
type JobConfigDTO = any;
|
|
1120
|
+
type JobConfigListDTO = any;
|
|
1121
|
+
type JobConfigRawDTO = any;
|
|
1122
|
+
type JobHistoryDto = any;
|
|
1123
|
+
type JobMetricsDto = any;
|
|
1124
|
+
type JobStepsDTO = any;
|
|
1125
|
+
type JsonDocConfig = any;
|
|
1126
|
+
type KafkaMetaModel = any;
|
|
1127
|
+
type KafkaResponse = any;
|
|
1128
|
+
type LocalFileConfig = any;
|
|
1129
|
+
type Metum = any;
|
|
1130
|
+
type MongoDocConfig = any;
|
|
1131
|
+
type OAuthConfig = any;
|
|
1132
|
+
type ProcessConfig = any;
|
|
1133
|
+
type PropBeanConfig = any;
|
|
1134
|
+
type PropBeanDTO = any;
|
|
1135
|
+
type ResponseEnvelopeJobConfigDTO = any;
|
|
1136
|
+
type ResponseEnvelopeJobMetricsDto = any;
|
|
1137
|
+
type ResponseEnvelopeKafkaResponse = any;
|
|
1138
|
+
type ResponseEnvelopeListJobConfigDTO = any;
|
|
1139
|
+
type ResponseEnvelopeListJobConfigListDTO = any;
|
|
1140
|
+
type ResponseEnvelopeListJobConfigRawDTO = any;
|
|
1141
|
+
type ResponseEnvelopeListJobStepsDTO = any;
|
|
1142
|
+
type ResponseEnvelopeListSlingshotConfigurationDetail = any;
|
|
1143
|
+
type ResponseEnvelopeString = any;
|
|
1144
|
+
type Send = any;
|
|
1145
|
+
type SFTPConfig = any;
|
|
1146
|
+
type SlingshotConfigurationDetail = any;
|
|
1147
|
+
type SlingshotIntegration = any;
|
|
1148
|
+
type StoreConfig = any;
|
|
1149
|
+
type StoreData = any;
|
|
1150
|
+
type StoreFilter = any;
|
|
1151
|
+
type SuppressStoreModel = any;
|
|
1152
|
+
type SuppressStorePayload = any;
|
|
1153
|
+
type TaskConfig = any;
|
|
1154
|
+
type TaskDTO = any;
|
|
1155
|
+
type TaskParam = any;
|
|
1156
|
+
type TaskStepConfig = any;
|
|
1157
|
+
type AddTicketPayload = any;
|
|
1158
|
+
type AgentChangePayload = any;
|
|
1159
|
+
type CategoryData = any;
|
|
1160
|
+
type CloseVideoRoomResponse = any;
|
|
1161
|
+
type CommunicationDetails = any;
|
|
1162
|
+
type CreateCustomFormPayload = any;
|
|
1163
|
+
type CreatedOn = any;
|
|
1164
|
+
type CreateVideoRoomPayload = any;
|
|
1165
|
+
type CreateVideoRoomResponse = any;
|
|
1166
|
+
type CustomForm = any;
|
|
1167
|
+
type CustomFormList = any;
|
|
1168
|
+
type CustomFormSubmissionPayload = any;
|
|
1169
|
+
type Debug = any;
|
|
1170
|
+
type EditCustomFormPayload = any;
|
|
1171
|
+
type EditTicketPayload = any;
|
|
1172
|
+
type Email = any;
|
|
1173
|
+
type FeedbackForm = any;
|
|
1174
|
+
type FeedbackResponseItem = any;
|
|
1175
|
+
type Filter = any;
|
|
1176
|
+
type GetParticipantsInsideVideoRoomResponse = any;
|
|
1177
|
+
type GetTokenForVideoRoomResponse = any;
|
|
1178
|
+
type IntegrationConfig = any;
|
|
1179
|
+
type NotifyUser = any;
|
|
1180
|
+
type Participant = any;
|
|
1181
|
+
type PhoneNumber = any;
|
|
1182
|
+
type PollForAssignment = any;
|
|
1183
|
+
type Priority = any;
|
|
1184
|
+
type Status = any;
|
|
1185
|
+
type SubmitButton = any;
|
|
1186
|
+
type SubmitCustomFormResponse = any;
|
|
1187
|
+
type SupportGeneralConfig = any;
|
|
1188
|
+
type Ticket = any;
|
|
1189
|
+
type TicketAsset = any;
|
|
1190
|
+
type TicketCategory = any;
|
|
1191
|
+
type TicketContent = any;
|
|
1192
|
+
type TicketContext = any;
|
|
1193
|
+
type TicketFeedback = any;
|
|
1194
|
+
type TicketFeedbackForm = any;
|
|
1195
|
+
type TicketFeedbackList = any;
|
|
1196
|
+
type TicketFeedbackPayload = any;
|
|
1197
|
+
type TicketHistory = any;
|
|
1198
|
+
type TicketHistoryList = any;
|
|
1199
|
+
type TicketHistoryPayload = any;
|
|
1200
|
+
type TicketList = any;
|
|
1201
|
+
type TicketSubCategory = any;
|
|
1202
|
+
type UserSchema = any;
|
|
1203
|
+
type ActionInfo = any;
|
|
1204
|
+
type AdvanceFilterInfo = any;
|
|
1205
|
+
type Affiliate = any;
|
|
1206
|
+
type AffiliateAppConfig = any;
|
|
1207
|
+
type AffiliateAppConfigMeta = any;
|
|
1208
|
+
type AffiliateBag = any;
|
|
1209
|
+
type AffiliateBagDetails = any;
|
|
1210
|
+
type AffiliateBagsDetails = any;
|
|
1211
|
+
type AffiliateConfig = any;
|
|
1212
|
+
type AffiliateDetails = any;
|
|
1213
|
+
type AffiliateInventoryArticleAssignmentConfig = any;
|
|
1214
|
+
type AffiliateInventoryConfig = any;
|
|
1215
|
+
type AffiliateInventoryLogisticsConfig = any;
|
|
1216
|
+
type AffiliateInventoryOrderConfig = any;
|
|
1217
|
+
type AffiliateInventoryPaymentConfig = any;
|
|
1218
|
+
type AffiliateInventoryStoreConfig = any;
|
|
1219
|
+
type AffiliateMeta = any;
|
|
1220
|
+
type AffiliateStoreIdMapping = any;
|
|
1221
|
+
type AnnouncementResponse = any;
|
|
1222
|
+
type AnnouncementsResponse = any;
|
|
1223
|
+
type AppliedPromos = any;
|
|
1224
|
+
type ArticleDetails = any;
|
|
1225
|
+
type ArticleDetails1 = any;
|
|
1226
|
+
type AttachOrderUser = any;
|
|
1227
|
+
type AttachOrderUserResponse = any;
|
|
1228
|
+
type AttachUserInfo = any;
|
|
1229
|
+
type AttachUserOtpData = any;
|
|
1230
|
+
type Attributes = any;
|
|
1231
|
+
type B2BPODetails = any;
|
|
1232
|
+
type BagConfigs = any;
|
|
1233
|
+
type BagDetailsPlatformResponse = any;
|
|
1234
|
+
type BagGST = any;
|
|
1235
|
+
type BagGSTDetails = any;
|
|
1236
|
+
type BagMeta = any;
|
|
1237
|
+
type BagPaymentMethods = any;
|
|
1238
|
+
type BagReturnableCancelableStatus = any;
|
|
1239
|
+
type BagReturnableCancelableStatus1 = any;
|
|
1240
|
+
type Bags = any;
|
|
1241
|
+
type BagsPage = any;
|
|
1242
|
+
type BagStateMapper = any;
|
|
1243
|
+
type BagStateTransitionMap = any;
|
|
1244
|
+
type BagStatusHistory = any;
|
|
1245
|
+
type BagUnit = any;
|
|
1246
|
+
type BaseResponse = any;
|
|
1247
|
+
type BillingInfo = any;
|
|
1248
|
+
type BillingStaffDetails = any;
|
|
1249
|
+
type BulkActionTemplate = any;
|
|
1250
|
+
type BulkActionTemplateResponse = any;
|
|
1251
|
+
type BuyerDetails = any;
|
|
1252
|
+
type Charge = any;
|
|
1253
|
+
type CheckResponse = any;
|
|
1254
|
+
type Click2CallResponse = any;
|
|
1255
|
+
type CreateChannelConfig = any;
|
|
1256
|
+
type CreateChannelConfigData = any;
|
|
1257
|
+
type CreateChannelConfigResponse = any;
|
|
1258
|
+
type CreateChannelConifgErrorResponse = any;
|
|
1259
|
+
type CreateChannelPaymentInfo = any;
|
|
1260
|
+
type CreateOrderAPI = any;
|
|
1261
|
+
type CreateOrderErrorReponse = any;
|
|
1262
|
+
type CreateOrderPayload = any;
|
|
1263
|
+
type CreateOrderResponse = any;
|
|
1264
|
+
type CreditBalanceInfo = any;
|
|
1265
|
+
type CurrentStatus = any;
|
|
1266
|
+
type DataUpdates = any;
|
|
1267
|
+
type Dates = any;
|
|
1268
|
+
type DebugInfo = any;
|
|
1269
|
+
type Dimension = any;
|
|
1270
|
+
type Dimensions = any;
|
|
1271
|
+
type DiscountRules = any;
|
|
1272
|
+
type DispatchManifest = any;
|
|
1273
|
+
type DpConfiguration = any;
|
|
1274
|
+
type DPDetailsData = any;
|
|
1275
|
+
type EinvoiceInfo = any;
|
|
1276
|
+
type EInvoicePortalDetails = any;
|
|
1277
|
+
type Entities = any;
|
|
1278
|
+
type EntitiesDataUpdates = any;
|
|
1279
|
+
type EntitiesReasons = any;
|
|
1280
|
+
type EntityReasonData = any;
|
|
1281
|
+
type ErrorDetail = any;
|
|
1282
|
+
type ErrorResponse1 = any;
|
|
1283
|
+
type FetchCreditBalanceRequestPayload = any;
|
|
1284
|
+
type FetchCreditBalanceResponsePayload = any;
|
|
1285
|
+
type FileResponse = any;
|
|
1286
|
+
type FilterInfoOption = any;
|
|
1287
|
+
type FiltersInfo = any;
|
|
1288
|
+
type FiltersResponse = any;
|
|
1289
|
+
type FinancialBreakup = any;
|
|
1290
|
+
type Formatted = any;
|
|
1291
|
+
type FulfillingStore = any;
|
|
1292
|
+
type FyndOrderIdList = any;
|
|
1293
|
+
type GeneratePosOrderReceiptResponse = any;
|
|
1294
|
+
type GetActionsResponse = any;
|
|
1295
|
+
type GetBagsPlatformResponse = any;
|
|
1296
|
+
type GiftCard = any;
|
|
1297
|
+
type GSTDetailsData = any;
|
|
1298
|
+
type HistoryDict = any;
|
|
1299
|
+
type HistoryMeta = any;
|
|
1300
|
+
type HistoryReason = any;
|
|
1301
|
+
type InvalidateShipmentCacheNestedResponse = any;
|
|
1302
|
+
type InvalidateShipmentCachePayload = any;
|
|
1303
|
+
type InvalidateShipmentCacheResponse = any;
|
|
1304
|
+
type InvoiceInfo = any;
|
|
1305
|
+
type Item = any;
|
|
1306
|
+
type ItemCriterias = any;
|
|
1307
|
+
type LaneConfigResponse = any;
|
|
1308
|
+
type LineItem = any;
|
|
1309
|
+
type LocationDetails = any;
|
|
1310
|
+
type LockData = any;
|
|
1311
|
+
type MarketPlacePdf = any;
|
|
1312
|
+
type OrderBagArticle = any;
|
|
1313
|
+
type OrderBags = any;
|
|
1314
|
+
type OrderBrandName = any;
|
|
1315
|
+
type OrderConfig = any;
|
|
1316
|
+
type OrderData = any;
|
|
1317
|
+
type OrderDetails = any;
|
|
1318
|
+
type OrderDetailsData = any;
|
|
1319
|
+
type OrderDetailsResponse = any;
|
|
1320
|
+
type OrderInfo = any;
|
|
1321
|
+
type OrderingStoreDetails = any;
|
|
1322
|
+
type OrderItemDataUpdates = any;
|
|
1323
|
+
type OrderListingResponse = any;
|
|
1324
|
+
type OrderMeta = any;
|
|
1325
|
+
type OrderPriority = any;
|
|
1326
|
+
type OrderStatus = any;
|
|
1327
|
+
type OrderStatusData = any;
|
|
1328
|
+
type OrderStatusResult = any;
|
|
1329
|
+
type OrderUser = any;
|
|
1330
|
+
type OriginalFilter = any;
|
|
1331
|
+
type PaymentInfo = any;
|
|
1332
|
+
type PaymentMethods = any;
|
|
1333
|
+
type PDFLinks = any;
|
|
1334
|
+
type PhoneDetails = any;
|
|
1335
|
+
type PlatformArticleAttributes = any;
|
|
1336
|
+
type PlatformBreakupValues = any;
|
|
1337
|
+
type PlatformChannel = any;
|
|
1338
|
+
type PlatformDeliveryAddress = any;
|
|
1339
|
+
type PlatformItem = any;
|
|
1340
|
+
type PlatformOrderItems = any;
|
|
1341
|
+
type PlatformOrderUpdate = any;
|
|
1342
|
+
type PlatformShipment = any;
|
|
1343
|
+
type PlatformShipmentReasonsResponse = any;
|
|
1344
|
+
type PlatformShipmentTrack = any;
|
|
1345
|
+
type PlatformTrack = any;
|
|
1346
|
+
type PlatformUserDetails = any;
|
|
1347
|
+
type PointBlankOtpData = any;
|
|
1348
|
+
type PostActivityHistory = any;
|
|
1349
|
+
type PostHistoryData = any;
|
|
1350
|
+
type PostHistoryDict = any;
|
|
1351
|
+
type PostHistoryFilters = any;
|
|
1352
|
+
type PostShipmentHistory = any;
|
|
1353
|
+
type Prices = any;
|
|
1354
|
+
type ProcessingDates = any;
|
|
1355
|
+
type Products = any;
|
|
1356
|
+
type ProductsDataUpdates = any;
|
|
1357
|
+
type ProductsDataUpdatesFilters = any;
|
|
1358
|
+
type ProductsReasons = any;
|
|
1359
|
+
type ProductsReasonsData = any;
|
|
1360
|
+
type ProductsReasonsFilters = any;
|
|
1361
|
+
type QuestionSet = any;
|
|
1362
|
+
type Reason = any;
|
|
1363
|
+
type ReasonsData = any;
|
|
1364
|
+
type RefundModeConfigRequestPayload = any;
|
|
1365
|
+
type RefundModeConfigResponsePayload = any;
|
|
1366
|
+
type RefundModeInfo = any;
|
|
1367
|
+
type RefundOption = any;
|
|
1368
|
+
type ReplacementDetails = any;
|
|
1369
|
+
type ResponseDetail = any;
|
|
1370
|
+
type SendSmsPayload = any;
|
|
1371
|
+
type SendUserMobileOTP = any;
|
|
1372
|
+
type SendUserMobileOtpResponse = any;
|
|
1373
|
+
type Shipment = any;
|
|
1374
|
+
type ShipmentConfig = any;
|
|
1375
|
+
type ShipmentData = any;
|
|
1376
|
+
type ShipmentDetail = any;
|
|
1377
|
+
type ShipmentDetails = any;
|
|
1378
|
+
type ShipmentDetails1 = any;
|
|
1379
|
+
type ShipmentHistoryResponse = any;
|
|
1380
|
+
type ShipmentInfoResponse = any;
|
|
1381
|
+
type ShipmentInternalPlatformViewResponse = any;
|
|
1382
|
+
type ShipmentItem = any;
|
|
1383
|
+
type ShipmentItemFulFillingStore = any;
|
|
1384
|
+
type ShipmentItemMeta = any;
|
|
1385
|
+
type ShipmentListingBrand = any;
|
|
1386
|
+
type ShipmentListingChannel = any;
|
|
1387
|
+
type ShipmentMeta = any;
|
|
1388
|
+
type ShipmentPayments = any;
|
|
1389
|
+
type ShipmentReasonsResponse = any;
|
|
1390
|
+
type ShipmentResponseReasons = any;
|
|
1391
|
+
type ShipmentsRequest = any;
|
|
1392
|
+
type ShipmentsResponse = any;
|
|
1393
|
+
type ShipmentStatus = any;
|
|
1394
|
+
type ShipmentStatusData = any;
|
|
1395
|
+
type ShipmentTags = any;
|
|
1396
|
+
type ShipmentTimeStamp = any;
|
|
1397
|
+
type ShippingInfo = any;
|
|
1398
|
+
type SmsDataPayload = any;
|
|
1399
|
+
type StatuesRequest = any;
|
|
1400
|
+
type StatuesResponse = any;
|
|
1401
|
+
type Store = any;
|
|
1402
|
+
type StoreAddress = any;
|
|
1403
|
+
type StoreDocuments = any;
|
|
1404
|
+
type StoreEinvoice = any;
|
|
1405
|
+
type StoreEwaybill = any;
|
|
1406
|
+
type StoreGstCredentials = any;
|
|
1407
|
+
type StoreReassign = any;
|
|
1408
|
+
type StoreReassignResponse = any;
|
|
1409
|
+
type SubLane = any;
|
|
1410
|
+
type SuperLane = any;
|
|
1411
|
+
type Tax = any;
|
|
1412
|
+
type TaxDetails = any;
|
|
1413
|
+
type TaxInfo = any;
|
|
1414
|
+
type TrackingList = any;
|
|
1415
|
+
type TransactionData = any;
|
|
1416
|
+
type UpdatePackagingDimensionsPayload = any;
|
|
1417
|
+
type UpdatePackagingDimensionsResponse = any;
|
|
1418
|
+
type UpdateShipmentLockPayload = any;
|
|
1419
|
+
type UpdateShipmentLockResponse = any;
|
|
1420
|
+
type UpdateShipmentStatusRequest = any;
|
|
1421
|
+
type UpdateShipmentStatusResponseBody = any;
|
|
1422
|
+
type UploadConsent = any;
|
|
1423
|
+
type URL = any;
|
|
1424
|
+
type UserData = any;
|
|
1425
|
+
type UserDataInfo = any;
|
|
1426
|
+
type UserDetailsData = any;
|
|
1427
|
+
type VerifyMobileOTP = any;
|
|
1428
|
+
type VerifyOtpData = any;
|
|
1429
|
+
type VerifyOtpResponse = any;
|
|
1430
|
+
type VerifyOtpResponseData = any;
|
|
1431
|
+
type Weight = any;
|
|
1432
|
+
type AddProxyReq = any;
|
|
1433
|
+
type AddProxyResponse = any;
|
|
1434
|
+
type APIError = any;
|
|
1435
|
+
type ApplicationPermissions = any;
|
|
1436
|
+
type ApprovedPermissions = any;
|
|
1437
|
+
type ApprovedPermissionsInfo = any;
|
|
1438
|
+
type Benefits = any;
|
|
1439
|
+
type Callback = any;
|
|
1440
|
+
type CategoryL1 = any;
|
|
1441
|
+
type CategoryL2 = any;
|
|
1442
|
+
type CommingSoon = any;
|
|
1443
|
+
type ContactInfo = any;
|
|
1444
|
+
type ExtensionCommon = any;
|
|
1445
|
+
type ExtensionDetails = any;
|
|
1446
|
+
type ExtensionItems = any;
|
|
1447
|
+
type ExtensionList = any;
|
|
1448
|
+
type ExtensionListItems = any;
|
|
1449
|
+
type ExtensionResponse = any;
|
|
1450
|
+
type ExtensionSuggestion = any;
|
|
1451
|
+
type ExtensionSuggestionList = any;
|
|
1452
|
+
type getProxyPathRes = any;
|
|
1453
|
+
type ListingInfo = any;
|
|
1454
|
+
type ModifyPartnerReq = any;
|
|
1455
|
+
type OrganizationBasicInfo = any;
|
|
1456
|
+
type Pagination = any;
|
|
1457
|
+
type PartnerInviteDetails = any;
|
|
1458
|
+
type PartnerList = any;
|
|
1459
|
+
type PartnerRequestList = any;
|
|
1460
|
+
type Plans = any;
|
|
1461
|
+
type PublicExtension = any;
|
|
1462
|
+
type RemoveProxyResponse = any;
|
|
1463
|
+
type RequestedPermissions = any;
|
|
1464
|
+
type Scope = any;
|
|
1465
|
+
type Screenshots = any;
|
|
1466
|
+
type SetupProductRes = any;
|
|
1467
|
+
type SubscriptionRequest = any;
|
|
1468
|
+
type SubscriptionRes = any;
|
|
1469
|
+
type UninstallExtension = any;
|
|
1470
|
+
type AddBeneficiaryDetailsOTPRequest = any;
|
|
1471
|
+
type BankDetailsForOTP = any;
|
|
1472
|
+
type CancelOrResendPaymentLinkRequest = any;
|
|
1473
|
+
type CancelPaymentLinkResponse = any;
|
|
1474
|
+
type CODdata = any;
|
|
1475
|
+
type Code = any;
|
|
1476
|
+
type CreatePaymentLinkMeta = any;
|
|
1477
|
+
type CreatePaymentLinkRequest = any;
|
|
1478
|
+
type CreatePaymentLinkResponse = any;
|
|
1479
|
+
type DeletePayoutResponse = any;
|
|
1480
|
+
type DeleteSubscriptionPaymentMethodResponse = any;
|
|
1481
|
+
type EdcAddRequest = any;
|
|
1482
|
+
type EdcAggregatorAndModelListResponse = any;
|
|
1483
|
+
type EdcDevice = any;
|
|
1484
|
+
type EdcDeviceAddResponse = any;
|
|
1485
|
+
type EdcDeviceDetailsResponse = any;
|
|
1486
|
+
type EdcDeviceListResponse = any;
|
|
1487
|
+
type EdcDeviceStatsResponse = any;
|
|
1488
|
+
type EdcDeviceUpdateResponse = any;
|
|
1489
|
+
type EdcModelData = any;
|
|
1490
|
+
type EdcUpdateRequest = any;
|
|
1491
|
+
type ErrorCodeAndDescription = any;
|
|
1492
|
+
type ErrorCodeDescription = any;
|
|
1493
|
+
type ErrorDescription = any;
|
|
1494
|
+
type GetOauthUrlResponse = any;
|
|
1495
|
+
type GetPaymentCode = any;
|
|
1496
|
+
type GetPaymentCodeResponse = any;
|
|
1497
|
+
type GetPaymentLinkResponse = any;
|
|
1498
|
+
type GetUserCODLimitResponse = any;
|
|
1499
|
+
type HttpErrorCodeAndResponse = any;
|
|
1500
|
+
type IfscCodeResponse = any;
|
|
1501
|
+
type IntentApp = any;
|
|
1502
|
+
type IntentAppErrorList = any;
|
|
1503
|
+
type LinkStatus = any;
|
|
1504
|
+
type MerchantOnBoardingRequest = any;
|
|
1505
|
+
type MerchantOnBoardingResponse = any;
|
|
1506
|
+
type NotFoundResourceError = any;
|
|
1507
|
+
type OrderBeneficiaryDetails = any;
|
|
1508
|
+
type OrderBeneficiaryResponse = any;
|
|
1509
|
+
type PaymentCode = any;
|
|
1510
|
+
type PaymentConfirmationRequest = any;
|
|
1511
|
+
type PaymentConfirmationResponse = any;
|
|
1512
|
+
type PaymentGatewayConfig = any;
|
|
1513
|
+
type PaymentGatewayConfigRequest = any;
|
|
1514
|
+
type PaymentGatewayConfigResponse = any;
|
|
1515
|
+
type PaymentGatewayToBeReviewed = any;
|
|
1516
|
+
type PaymentInitializationRequest = any;
|
|
1517
|
+
type PaymentInitializationResponse = any;
|
|
1518
|
+
type PaymentModeList = any;
|
|
1519
|
+
type PaymentModeLogo = any;
|
|
1520
|
+
type PaymentObjectListSerializer = any;
|
|
1521
|
+
type PaymentOptions = any;
|
|
1522
|
+
type PaymentOptionsResponse = any;
|
|
1523
|
+
type PaymentStatusBulkHandlerRequest = any;
|
|
1524
|
+
type PaymentStatusBulkHandlerResponse = any;
|
|
1525
|
+
type PaymentStatusObject = any;
|
|
1526
|
+
type PaymentStatusUpdateRequest = any;
|
|
1527
|
+
type PaymentStatusUpdateResponse = any;
|
|
1528
|
+
type Payout = any;
|
|
1529
|
+
type PayoutAggregator = any;
|
|
1530
|
+
type PayoutBankDetails = any;
|
|
1531
|
+
type PayoutCustomer = any;
|
|
1532
|
+
type PayoutMoreAttributes = any;
|
|
1533
|
+
type PayoutRequest = any;
|
|
1534
|
+
type PayoutResponse = any;
|
|
1535
|
+
type PayoutsResponse = any;
|
|
1536
|
+
type PollingPaymentLinkResponse = any;
|
|
1537
|
+
type RefundAccountResponse = any;
|
|
1538
|
+
type RepaymentDetailsSerialiserPayAll = any;
|
|
1539
|
+
type RepaymentRequestDetails = any;
|
|
1540
|
+
type RepaymentResponse = any;
|
|
1541
|
+
type ResendOrCancelPaymentRequest = any;
|
|
1542
|
+
type ResendOrCancelPaymentResponse = any;
|
|
1543
|
+
type ResendPaymentLinkResponse = any;
|
|
1544
|
+
type RevokeOAuthToken = any;
|
|
1545
|
+
type RootPaymentMode = any;
|
|
1546
|
+
type SaveSubscriptionSetupIntentRequest = any;
|
|
1547
|
+
type SaveSubscriptionSetupIntentResponse = any;
|
|
1548
|
+
type SetCODForUserRequest = any;
|
|
1549
|
+
type SetCODOptionResponse = any;
|
|
1550
|
+
type StatisticsData = any;
|
|
1551
|
+
type SubscriptionConfigResponse = any;
|
|
1552
|
+
type SubscriptionPaymentMethodResponse = any;
|
|
1553
|
+
type UpdatePayoutRequest = any;
|
|
1554
|
+
type UpdatePayoutResponse = any;
|
|
1555
|
+
type ValidateCustomerRequest = any;
|
|
1556
|
+
type ValidateCustomerResponse = any;
|
|
1461
1557
|
type AppUser = any;
|
|
1462
1558
|
type ConfigurationRequest = any;
|
|
1463
1559
|
type ConfigurationRes = any;
|
|
@@ -1477,22 +1573,250 @@ type Schedule = any;
|
|
|
1477
1573
|
type SetConfigurationRes = any;
|
|
1478
1574
|
type ShareMessages = any;
|
|
1479
1575
|
type UserRes = any;
|
|
1480
|
-
type
|
|
1481
|
-
type
|
|
1482
|
-
type
|
|
1483
|
-
type
|
|
1484
|
-
type
|
|
1485
|
-
type
|
|
1486
|
-
type
|
|
1487
|
-
type
|
|
1488
|
-
type
|
|
1489
|
-
type
|
|
1490
|
-
type
|
|
1491
|
-
type
|
|
1492
|
-
type
|
|
1493
|
-
type
|
|
1494
|
-
type
|
|
1495
|
-
type
|
|
1576
|
+
type AddressResponse = any;
|
|
1577
|
+
type ApplicationCompanyDpViewRequest = any;
|
|
1578
|
+
type ApplicationCompanyDpViewResponse = any;
|
|
1579
|
+
type ApplicationSelfShipConfig = any;
|
|
1580
|
+
type ApplicationSelfShipConfigResponse = any;
|
|
1581
|
+
type ApplicationServiceabilityConfig = any;
|
|
1582
|
+
type ApplicationServiceabilityConfigResponse = any;
|
|
1583
|
+
type CompanyDpAccountListResponse = any;
|
|
1584
|
+
type CompanyDpAccountRequest = any;
|
|
1585
|
+
type CompanyDpAccountResponse = any;
|
|
1586
|
+
type CompanyStoreView_PageItems = any;
|
|
1587
|
+
type CompanyStoreView_Response = any;
|
|
1588
|
+
type ContactNumberResponse = any;
|
|
1589
|
+
type CreatedByResponse = any;
|
|
1590
|
+
type CreateZoneData = any;
|
|
1591
|
+
type DocumentsResponse = any;
|
|
1592
|
+
type Dp = any;
|
|
1593
|
+
type Dp1 = any;
|
|
1594
|
+
type DpAccountFailureResponse = any;
|
|
1595
|
+
type DPApplicationRuleRequest = any;
|
|
1596
|
+
type DPApplicationRuleResponse = any;
|
|
1597
|
+
type DPCompanyRuleRequest = any;
|
|
1598
|
+
type DPCompanyRuleResponse = any;
|
|
1599
|
+
type DpIds = any;
|
|
1600
|
+
type DpMultipleRuleSuccessResponse = any;
|
|
1601
|
+
type DpRule = any;
|
|
1602
|
+
type DpRuleRequest = any;
|
|
1603
|
+
type DpRuleResponse = any;
|
|
1604
|
+
type DpRuleSuccessResponse = any;
|
|
1605
|
+
type DpRulesUpdateRequest = any;
|
|
1606
|
+
type DpRuleUpdateSuccessResponse = any;
|
|
1607
|
+
type DpSchemaInRuleListing = any;
|
|
1608
|
+
type EinvoiceResponse = any;
|
|
1609
|
+
type EntityRegionView_Error = any;
|
|
1610
|
+
type EntityRegionView_Items = any;
|
|
1611
|
+
type EntityRegionView_page = any;
|
|
1612
|
+
type EntityRegionView_Request = any;
|
|
1613
|
+
type EntityRegionView_Response = any;
|
|
1614
|
+
type EwayBillResponse = any;
|
|
1615
|
+
type FailureResponse = any;
|
|
1616
|
+
type GetSingleZoneDataViewResponse = any;
|
|
1617
|
+
type GetStoresViewResponse = any;
|
|
1618
|
+
type GetZoneDataViewChannels = any;
|
|
1619
|
+
type GetZoneDataViewItems = any;
|
|
1620
|
+
type GetZoneFromApplicationIdViewResponse = any;
|
|
1621
|
+
type GetZoneFromPincodeViewRequest = any;
|
|
1622
|
+
type GetZoneFromPincodeViewResponse = any;
|
|
1623
|
+
type GstCredentialsResponse = any;
|
|
1624
|
+
type IntegrationTypeResponse = any;
|
|
1625
|
+
type ItemResponse = any;
|
|
1626
|
+
type ListViewChannels = any;
|
|
1627
|
+
type ListViewItems = any;
|
|
1628
|
+
type ListViewProduct = any;
|
|
1629
|
+
type ListViewResponse = any;
|
|
1630
|
+
type ListViewSummary = any;
|
|
1631
|
+
type LogisticsResponse = any;
|
|
1632
|
+
type ManagerResponse = any;
|
|
1633
|
+
type MobileNo = any;
|
|
1634
|
+
type ModifiedByResponse = any;
|
|
1635
|
+
type OpeningClosing = any;
|
|
1636
|
+
type PincodeBulkViewResponse = any;
|
|
1637
|
+
type PincodeCodStatusListingPage = any;
|
|
1638
|
+
type PincodeCodStatusListingRequest = any;
|
|
1639
|
+
type PincodeCodStatusListingResponse = any;
|
|
1640
|
+
type PincodeCodStatusListingSummary = any;
|
|
1641
|
+
type PincodeMopBulkData = any;
|
|
1642
|
+
type PincodeMopData = any;
|
|
1643
|
+
type PincodeMOPresponse = any;
|
|
1644
|
+
type PincodeMopUpdateAuditHistoryPaging = any;
|
|
1645
|
+
type PincodeMopUpdateAuditHistoryRequest = any;
|
|
1646
|
+
type PincodeMopUpdateAuditHistoryResponse = any;
|
|
1647
|
+
type PincodeMopUpdateAuditHistoryResponseData = any;
|
|
1648
|
+
type PincodeMopUpdateResponse = any;
|
|
1649
|
+
type ProductReturnConfigResponse = any;
|
|
1650
|
+
type ReAssignStoreRequest = any;
|
|
1651
|
+
type ReAssignStoreResponse = any;
|
|
1652
|
+
type SelfShipResponse = any;
|
|
1653
|
+
type ServiceabilityErrorResponse = any;
|
|
1654
|
+
type ServiceabilityPageResponse = any;
|
|
1655
|
+
type TimmingResponse = any;
|
|
1656
|
+
type UpdateZoneData = any;
|
|
1657
|
+
type WarningsResponse = any;
|
|
1658
|
+
type Zone = any;
|
|
1659
|
+
type ZoneDataItem = any;
|
|
1660
|
+
type ZoneMappingType = any;
|
|
1661
|
+
type ZoneProductTypes = any;
|
|
1662
|
+
type ZoneRequest = any;
|
|
1663
|
+
type ZoneResponse = any;
|
|
1664
|
+
type ZoneSuccessResponse = any;
|
|
1665
|
+
type ZoneUpdateRequest = any;
|
|
1666
|
+
type Attribution = any;
|
|
1667
|
+
type CampaignShortLink = any;
|
|
1668
|
+
type ClickStatsItem = any;
|
|
1669
|
+
type ClickStatsResponse = any;
|
|
1670
|
+
type ErrorRes = any;
|
|
1671
|
+
type RedirectDevice = any;
|
|
1672
|
+
type Redirects = any;
|
|
1673
|
+
type ShortLinkList = any;
|
|
1674
|
+
type ShortLinkReq = any;
|
|
1675
|
+
type ShortLinkRes = any;
|
|
1676
|
+
type SocialMediaTags = any;
|
|
1677
|
+
type UrlInfo = any;
|
|
1678
|
+
type WebRedirect = any;
|
|
1679
|
+
type AddThemeRequestSchema = any;
|
|
1680
|
+
type AllAvailablePageSchema = any;
|
|
1681
|
+
type AssetsSchema = any;
|
|
1682
|
+
type AvailablePagePredicate = any;
|
|
1683
|
+
type AvailablePageRoutePredicate = any;
|
|
1684
|
+
type AvailablePageSchema = any;
|
|
1685
|
+
type AvailablePageSchemaSections = any;
|
|
1686
|
+
type AvailablePageScreenPredicate = any;
|
|
1687
|
+
type AvailablePageSectionMetaAttributes = any;
|
|
1688
|
+
type AvailablePageSeo = any;
|
|
1689
|
+
type AvailablePageUserPredicate = any;
|
|
1690
|
+
type availableSectionSchema = any;
|
|
1691
|
+
type BlitzkriegApiErrorSchema = any;
|
|
1692
|
+
type BlitzkriegInternalServerErrorSchema = any;
|
|
1693
|
+
type BlitzkriegNotFoundSchema = any;
|
|
1694
|
+
type Blocks = any;
|
|
1695
|
+
type BlocksProps = any;
|
|
1696
|
+
type Bold = any;
|
|
1697
|
+
type Colors = any;
|
|
1698
|
+
type CommonJs = any;
|
|
1699
|
+
type Config = any;
|
|
1700
|
+
type ConfigPage = any;
|
|
1701
|
+
type Css = any;
|
|
1702
|
+
type Custom = any;
|
|
1703
|
+
type Font = any;
|
|
1704
|
+
type FontsSchema = any;
|
|
1705
|
+
type FontsSchemaItems = any;
|
|
1706
|
+
type FontsSchemaItemsFiles = any;
|
|
1707
|
+
type GlobalSchema = any;
|
|
1708
|
+
type GlobalSchemaProps = any;
|
|
1709
|
+
type Images = any;
|
|
1710
|
+
type Information = any;
|
|
1711
|
+
type Light = any;
|
|
1712
|
+
type ListSchemaItem = any;
|
|
1713
|
+
type Medium = any;
|
|
1714
|
+
type PaginationSchema = any;
|
|
1715
|
+
type Preset = any;
|
|
1716
|
+
type Regular = any;
|
|
1717
|
+
type Sections = any;
|
|
1718
|
+
type SemiBold = any;
|
|
1719
|
+
type Src = any;
|
|
1720
|
+
type ThemesListingResponseSchema = any;
|
|
1721
|
+
type ThemesSchema = any;
|
|
1722
|
+
type UmdJs = any;
|
|
1723
|
+
type UpgradableThemeSchema = any;
|
|
1724
|
+
type Variants = any;
|
|
1725
|
+
type Accountkit = any;
|
|
1726
|
+
type ArchiveUserRequestSchema = any;
|
|
1727
|
+
type ArchiveUserSuccess = any;
|
|
1728
|
+
type AuthenticationApiErrorSchema = any;
|
|
1729
|
+
type AuthenticationInternalServerErrorSchema = any;
|
|
1730
|
+
type AuthSuccess = any;
|
|
1731
|
+
type AuthSuccessUser = any;
|
|
1732
|
+
type AuthSuccessUserDebug = any;
|
|
1733
|
+
type AuthSuccessUserEmails = any;
|
|
1734
|
+
type BlockUserRequestSchema = any;
|
|
1735
|
+
type BlockUserSuccess = any;
|
|
1736
|
+
type CodeRequestBodySchema = any;
|
|
1737
|
+
type CreateUserGroupSchema = any;
|
|
1738
|
+
type CreateUserRequestSchema = any;
|
|
1739
|
+
type CreateUserResponseSchema = any;
|
|
1740
|
+
type CreateUserSessionRequestSchema = any;
|
|
1741
|
+
type CreateUserSessionResponseSchema = any;
|
|
1742
|
+
type CustomerListResponseSchema = any;
|
|
1743
|
+
type DeleteAccountConsent = any;
|
|
1744
|
+
type DeleteAccountReasons = any;
|
|
1745
|
+
type DeleteApplicationUserRequestSchema = any;
|
|
1746
|
+
type DeleteUserSuccess = any;
|
|
1747
|
+
type EditEmailRequestSchema = any;
|
|
1748
|
+
type EditMobileRequestSchema = any;
|
|
1749
|
+
type EditProfileMobileSchema = any;
|
|
1750
|
+
type EditProfileRequestSchema = any;
|
|
1751
|
+
type EmailOtpSuccess = any;
|
|
1752
|
+
type Facebook = any;
|
|
1753
|
+
type FlashCard = any;
|
|
1754
|
+
type ForgotPasswordRequestSchema = any;
|
|
1755
|
+
type FormRegisterRequestSchema = any;
|
|
1756
|
+
type FormRegisterRequestSchemaPhone = any;
|
|
1757
|
+
type Google = any;
|
|
1758
|
+
type HasPasswordSuccess = any;
|
|
1759
|
+
type Login = any;
|
|
1760
|
+
type LoginSuccess = any;
|
|
1761
|
+
type LogoutSuccess = any;
|
|
1762
|
+
type LookAndFeel = any;
|
|
1763
|
+
type MetaSchema = any;
|
|
1764
|
+
type NotFoundSchema = any;
|
|
1765
|
+
type OAuthRequestAppleSchema = any;
|
|
1766
|
+
type OAuthRequestAppleSchemaOauth = any;
|
|
1767
|
+
type OAuthRequestAppleSchemaProfile = any;
|
|
1768
|
+
type OAuthRequestSchema = any;
|
|
1769
|
+
type OAuthRequestSchemaOauth2 = any;
|
|
1770
|
+
type OAuthRequestSchemaProfile = any;
|
|
1771
|
+
type OtpSuccess = any;
|
|
1772
|
+
type PasswordLoginRequestSchema = any;
|
|
1773
|
+
type PlatformEmail = any;
|
|
1774
|
+
type PlatformMobile = any;
|
|
1775
|
+
type PlatformSchema = any;
|
|
1776
|
+
type ProfileEditSuccess = any;
|
|
1777
|
+
type ProfileEditSuccessSchema = any;
|
|
1778
|
+
type RegisterFormSuccess = any;
|
|
1779
|
+
type RegisterRequiredFields = any;
|
|
1780
|
+
type RegisterRequiredFieldsEmail = any;
|
|
1781
|
+
type RegisterRequiredFieldsMobile = any;
|
|
1782
|
+
type RequiredFields = any;
|
|
1783
|
+
type ResetPasswordSuccess = any;
|
|
1784
|
+
type SendEmailOtpRequestSchema = any;
|
|
1785
|
+
type SendEmailVerifyLinkSuccess = any;
|
|
1786
|
+
type SendMobileOtpRequestSchema = any;
|
|
1787
|
+
type SendMobileVerifyLinkSuccess = any;
|
|
1788
|
+
type SendOtpRequestSchema = any;
|
|
1789
|
+
type SendOtpResponse = any;
|
|
1790
|
+
type SendResetPasswordEmailRequestSchema = any;
|
|
1791
|
+
type SendResetPasswordMobileRequestSchema = any;
|
|
1792
|
+
type SendVerificationLinkMobileRequestSchema = any;
|
|
1793
|
+
type SessionDeleteResponseSchema = any;
|
|
1794
|
+
type SessionExpiry = any;
|
|
1795
|
+
type SessionListResponseInfo = any;
|
|
1796
|
+
type SessionListResponseSchema = any;
|
|
1797
|
+
type SessionListSuccess = any;
|
|
1798
|
+
type Social = any;
|
|
1799
|
+
type SocialTokens = any;
|
|
1800
|
+
type TokenRequestBodySchema = any;
|
|
1801
|
+
type UnauthenticatedSchema = any;
|
|
1802
|
+
type UnauthorizedSchema = any;
|
|
1803
|
+
type UnDeleteUserRequestSchema = any;
|
|
1804
|
+
type UnDeleteUserSuccess = any;
|
|
1805
|
+
type UpdatePasswordRequestSchema = any;
|
|
1806
|
+
type UpdateUserGroupSchema = any;
|
|
1807
|
+
type UpdateUserRequestSchema = any;
|
|
1808
|
+
type UserEmails = any;
|
|
1809
|
+
type UserGroupListResponseSchema = any;
|
|
1810
|
+
type UserGroupResponseSchema = any;
|
|
1811
|
+
type UserObjectSchema = any;
|
|
1812
|
+
type UserPhoneNumbers = any;
|
|
1813
|
+
type UserSearchResponseSchema = any;
|
|
1814
|
+
type VerifyEmailOtpRequestSchema = any;
|
|
1815
|
+
type VerifyEmailOTPSuccess = any;
|
|
1816
|
+
type VerifyEmailSuccess = any;
|
|
1817
|
+
type VerifyMobileOTPSuccess = any;
|
|
1818
|
+
type VerifyOtpRequestSchema = any;
|
|
1819
|
+
type VerifyOtpSuccess = any;
|
|
1496
1820
|
type Association = any;
|
|
1497
1821
|
type AuthMeta = any;
|
|
1498
1822
|
type EventConfig = any;
|
|
@@ -1505,15 +1829,3 @@ type SubscriberConfig = any;
|
|
|
1505
1829
|
type SubscriberConfigList = any;
|
|
1506
1830
|
type SubscriberEvent = any;
|
|
1507
1831
|
type SubscriberResponse = any;
|
|
1508
|
-
type CreateLogResponse = any;
|
|
1509
|
-
type DeviceInfo = any;
|
|
1510
|
-
type EntityObj = any;
|
|
1511
|
-
type EntityObject = any;
|
|
1512
|
-
type EntityTypeObj = any;
|
|
1513
|
-
type EntityTypesResponse = any;
|
|
1514
|
-
type Location = any;
|
|
1515
|
-
type LogDocs = any;
|
|
1516
|
-
type LogMetaObj = any;
|
|
1517
|
-
type LogSchemaResponse = any;
|
|
1518
|
-
type Modifier = any;
|
|
1519
|
-
type RequestBodyAuditLog = any;
|