@gofynd/fdk-client-javascript 3.0.0-beta.1 → 3.1.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/sdk/application/Cart/CartApplicationClient.d.ts +14 -14
  4. package/sdk/application/Cart/CartApplicationClient.js +14 -14
  5. package/sdk/application/Content/ContentApplicationClient.d.ts +10 -0
  6. package/sdk/application/Content/ContentApplicationClient.js +53 -0
  7. package/sdk/application/FileStorage/FileStorageApplicationClient.d.ts +6 -6
  8. package/sdk/application/FileStorage/FileStorageApplicationClient.js +3 -3
  9. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +34 -0
  10. package/sdk/application/Logistic/LogisticApplicationClient.js +136 -0
  11. package/sdk/partner/FileStorage/FileStoragePartnerClient.d.ts +12 -12
  12. package/sdk/partner/FileStorage/FileStoragePartnerClient.js +12 -12
  13. package/sdk/partner/FileStorage/FileStoragePartnerModel.d.ts +46 -33
  14. package/sdk/partner/FileStorage/FileStoragePartnerModel.js +41 -25
  15. package/sdk/partner/FileStorage/FileStoragePartnerValidator.js +4 -4
  16. package/sdk/platform/Billing/BillingPlatformClient.d.ts +6 -397
  17. package/sdk/platform/Billing/BillingPlatformClient.js +77 -3215
  18. package/sdk/platform/Billing/BillingPlatformModel.d.ts +417 -3811
  19. package/sdk/platform/Billing/BillingPlatformModel.js +292 -2544
  20. package/sdk/platform/Billing/BillingPlatformValidator.d.ts +12 -451
  21. package/sdk/platform/Billing/BillingPlatformValidator.js +8 -483
  22. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +34 -34
  23. package/sdk/platform/Cart/CartPlatformApplicationClient.js +34 -34
  24. package/sdk/platform/Cart/CartPlatformModel.d.ts +363 -29
  25. package/sdk/platform/Cart/CartPlatformModel.js +203 -31
  26. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.d.ts +57 -57
  27. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +220 -200
  28. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.d.ts +121 -91
  29. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +58 -46
  30. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +10 -51
  31. package/sdk/platform/Catalog/CatalogPlatformClient.js +79 -400
  32. package/sdk/platform/Catalog/CatalogPlatformModel.d.ts +22 -228
  33. package/sdk/platform/Catalog/CatalogPlatformModel.js +12 -163
  34. package/sdk/platform/Catalog/CatalogPlatformValidator.d.ts +15 -61
  35. package/sdk/platform/Catalog/CatalogPlatformValidator.js +13 -65
  36. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.d.ts +4 -8
  37. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +10 -14
  38. package/sdk/platform/Communication/CommunicationPlatformModel.d.ts +94 -30
  39. package/sdk/platform/Communication/CommunicationPlatformModel.js +110 -32
  40. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.d.ts +33 -1
  41. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +62 -0
  42. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.d.ts +11 -0
  43. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +5 -0
  44. package/sdk/platform/Configuration/ConfigurationPlatformModel.d.ts +12 -2
  45. package/sdk/platform/Configuration/ConfigurationPlatformModel.js +5 -1
  46. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +6 -4
  47. package/sdk/platform/Content/ContentPlatformApplicationClient.js +12 -10
  48. package/sdk/platform/Content/ContentPlatformModel.d.ts +42 -12
  49. package/sdk/platform/Content/ContentPlatformModel.js +43 -13
  50. package/sdk/platform/Finance/FinancePlatformClient.d.ts +28 -28
  51. package/sdk/platform/Finance/FinancePlatformClient.js +28 -28
  52. package/sdk/platform/Order/OrderPlatformClient.d.ts +21 -21
  53. package/sdk/platform/Order/OrderPlatformClient.js +21 -21
  54. package/sdk/platform/Order/OrderPlatformModel.d.ts +1010 -80
  55. package/sdk/platform/Order/OrderPlatformModel.js +665 -70
  56. package/sdk/platform/Payment/PaymentPlatformModel.d.ts +31 -4
  57. package/sdk/platform/Payment/PaymentPlatformModel.js +11 -4
  58. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.d.ts +1 -1
  59. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationClient.js +8 -0
  60. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.d.ts +14 -0
  61. package/sdk/platform/Serviceability/ServiceabilityPlatformApplicationValidator.js +6 -0
  62. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.d.ts +24 -0
  63. package/sdk/platform/Serviceability/ServiceabilityPlatformClient.js +119 -0
  64. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.d.ts +194 -23
  65. package/sdk/platform/Serviceability/ServiceabilityPlatformModel.js +116 -22
  66. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.d.ts +23 -1
  67. package/sdk/platform/Serviceability/ServiceabilityPlatformValidator.js +16 -0
  68. package/sdk/platform/Share/SharePlatformModel.d.ts +5 -0
  69. package/sdk/platform/Share/SharePlatformModel.js +2 -0
  70. package/sdk/platform/Theme/ThemePlatformApplicationClient.d.ts +10 -12
  71. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +45 -49
  72. package/sdk/platform/Theme/ThemePlatformApplicationValidator.d.ts +10 -10
  73. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +12 -12
  74. package/sdk/public/PublicClient.d.ts +0 -2
  75. package/sdk/public/PublicClient.js +0 -4
  76. package/sdk/public/index.d.ts +0 -1
  77. package/sdk/public/index.js +0 -2
  78. package/sdk/public/Billing/BillingPublicClient.d.ts +0 -56
  79. package/sdk/public/Billing/BillingPublicClient.js +0 -397
  80. package/sdk/public/Billing/BillingPublicModel.d.ts +0 -919
  81. package/sdk/public/Billing/BillingPublicModel.js +0 -560
  82. package/sdk/public/Billing/BillingPublicValidator.d.ts +0 -43
  83. package/sdk/public/Billing/BillingPublicValidator.js +0 -50
@@ -986,11 +986,6 @@ export = CatalogPlatformModel;
986
986
  * @property {boolean} [gst_required]
987
987
  * @property {string} [stage]
988
988
  */
989
- /**
990
- * @typedef CategoryCreateResponse
991
- * @property {string} [message] - It is the message of the response from the category.
992
- * @property {number} [uid] - It is the unique identifier of the category.
993
- */
994
989
  /**
995
990
  * @typedef CategoryItems
996
991
  * @property {Object} [_custom_json]
@@ -1018,33 +1013,11 @@ export = CatalogPlatformModel;
1018
1013
  * respective platform with Fynd Platform.
1019
1014
  * @property {string} name - It is the name of the Category in the respective platform.
1020
1015
  */
1021
- /**
1022
- * @typedef CategoryRequestBody
1023
- * @property {number[]} departments - It is the list of unique department the
1024
- * category belongs to.
1025
- * @property {Hierarchy[]} [hierarchy] - It is the list of category hierarchies
1026
- * for each department of an L3 category.
1027
- * @property {boolean} is_active - It is the flag indicating if the category is active.
1028
- * @property {number} level - It is the level of category
1029
- * @property {Object} [marketplaces] - It is the mapping of the category in
1030
- * different marketplaces.
1031
- * @property {Object} [media] - It is the details of the media such as banner and logo..
1032
- * @property {string} name - It is the name of the category
1033
- * @property {number} [priority] - It is the priority of the category.
1034
- * @property {string} [slug] - It is the slug of the category.
1035
- * @property {string[]} [synonyms] - It is the list of synonyms.
1036
- * @property {string[]} [tryouts] - It is the list of tryouts.
1037
- */
1038
1016
  /**
1039
1017
  * @typedef CategoryResponse
1040
1018
  * @property {Category[]} [items]
1041
1019
  * @property {Page} [page]
1042
1020
  */
1043
- /**
1044
- * @typedef CategoryUpdateResponse
1045
- * @property {string} [message] - It is the message of the response from the category.
1046
- * @property {boolean} [success] - It is the flag indication the success response.
1047
- */
1048
1021
  /**
1049
1022
  * @typedef Child
1050
1023
  * @property {Object} [_custom_json]
@@ -1552,32 +1525,10 @@ export = CatalogPlatformModel;
1552
1525
  * @typedef PollErrorResponse
1553
1526
  * @property {Object} [error]
1554
1527
  */
1555
- /**
1556
- * @typedef DepartmentCreateErrorResponse
1557
- * @property {Object} [error]
1558
- */
1559
1528
  /**
1560
1529
  * @typedef ProductBundleCreateErrorResponse
1561
1530
  * @property {Object} [error]
1562
1531
  */
1563
- /**
1564
- * @typedef DepartmentCreateResponse
1565
- * @property {string} message
1566
- * @property {number} uid
1567
- */
1568
- /**
1569
- * @typedef DepartmentCreateUpdate
1570
- * @property {string} [_cls]
1571
- * @property {Object} [_custom_json]
1572
- * @property {boolean} [is_active]
1573
- * @property {string} logo
1574
- * @property {string} name
1575
- * @property {Object} [platforms]
1576
- * @property {number} priority_order
1577
- * @property {string} [slug]
1578
- * @property {string[]} [tags]
1579
- * @property {number} [uid]
1580
- */
1581
1532
  /**
1582
1533
  * @typedef DepartmentErrorResponse
1583
1534
  * @property {string} [code]
@@ -1592,25 +1543,6 @@ export = CatalogPlatformModel;
1592
1543
  * @property {string} [slug]
1593
1544
  * @property {number} [uid]
1594
1545
  */
1595
- /**
1596
- * @typedef DepartmentModel
1597
- * @property {string} [_cls]
1598
- * @property {Object} [_custom_json]
1599
- * @property {string} [_id]
1600
- * @property {Object} [created_by] - User details of the creator of the document
1601
- * @property {boolean} [is_active] - Whether the department is currently active
1602
- * @property {string} logo - The URL of the department's logo
1603
- * @property {Object} [modified_by] - User details of the last modifier of the document
1604
- * @property {string} name - The name of the department
1605
- * @property {number} priority_order - The priority order of the department
1606
- * @property {string} [slug] - The unique slug identifier for the department
1607
- * @property {string[]} [synonyms] - A list of synonyms for the department name
1608
- * @property {number} uid - The unique ID for the department
1609
- * @property {Object} [verified_by] - User details of the verifier of the
1610
- * document, if applicable
1611
- * @property {string} [verified_on] - Timestamp of when the document was
1612
- * verified, if applicable
1613
- */
1614
1546
  /**
1615
1547
  * @typedef DepartmentResponse
1616
1548
  * @property {Department[]} [items]
@@ -1753,7 +1685,7 @@ export = CatalogPlatformModel;
1753
1685
  * @property {boolean} [primary]
1754
1686
  */
1755
1687
  /**
1756
- * @typedef GenderDetail
1688
+ * @typedef AttributeDetail
1757
1689
  * @property {string} [created_on] - It is Date and time when the attribute was created.
1758
1690
  * @property {string} [modified_on] - It is Date and time when the attribute was modified.
1759
1691
  * @property {Object} [created_by] - Details of the user who created the attribute.
@@ -2688,7 +2620,12 @@ export = CatalogPlatformModel;
2688
2620
  * @property {string} seller_identifier - The identifier of the seller.
2689
2621
  * @property {number} store_id - The ID of the store.
2690
2622
  * @property {string[]} [tags] - The tags associated with the inventory item.
2691
- * @property {number} [total_quantity] - The total quantity of the inventory item.
2623
+ * @property {number} [total_quantity] - The total quantity of the inventory
2624
+ * item. Any one quantity is allowed `sellable_quantity` or `total_quantity`,
2625
+ * the other one would be derived.
2626
+ * @property {number} [sellable_quantity] - The sellable quantity of the
2627
+ * inventory item. Any one quantity is allowed `sellable_quantity` or
2628
+ * `total_quantity`, the other one would be derived.
2692
2629
  * @property {string} [trace_id] - The trace ID of the inventory payload.
2693
2630
  */
2694
2631
  /**
@@ -4800,6 +4737,7 @@ export = CatalogPlatformModel;
4800
4737
  * @property {number} [total_records]
4801
4738
  * @property {number} [success_records]
4802
4739
  * @property {number} [failed_records]
4740
+ * @property {string} [job_type]
4803
4741
  */
4804
4742
  /**
4805
4743
  * @typedef CreateAppPriceFactoryProductExportJobPollResponse
@@ -5080,7 +5018,7 @@ export = CatalogPlatformModel;
5080
5018
  declare class CatalogPlatformModel {
5081
5019
  }
5082
5020
  declare namespace CatalogPlatformModel {
5083
- export { StoreTagsResponseSchema, DiscountMeta, ProductMinMaxPrice, ProductPrice, ProductPricesPage, ProductPriceItem, ProductPrices, ProductFiltersKeysOnly, GetQueryFiltersKeysResponse, GetQueryFiltersValuesResponse, GTINSchema, SetSizeSchema, SizeDistributionSchema, InventorySetSchema, InvSizeSchema, InventoryRequestSchema, ItemQuerySchema, SuccessResponseSchema, CompanyDRIListResponseSchema, CompanyDRIResponseSchema, SearchResponseSchema, MerchandisingQuery, MerchandisingSearchQuery, MerchandisingFilter, MerchandisingRuleQuery, MerchandisingRulesList, MerchDataItem, MerchSearchQuery, MerchQueryCondition, MerchFilter, SuccessResponseMerchandising, MerchandiseQueryResponse, Filter, MerchandisingRuleQueryPart, MerchandisingRuleQueryPost, MerchandisingRuleSave, PinItem, PinItemRequest, PinRequest, PinResponse, HideAttribute, HideAttributeRequest, HideResponse, HideRequest, PostBoostAttribute, BoostAttribute, GetMerchandisingRuleBoostAction, PostMerchandisingRuleBoostAction, GetMerchandisingRuleBuryAction, Action, AllSizes, AllowSingleRequest, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponse, AppConfiguration, AppConfigurationCreateDetail, AppConfigurationDetail, AppConfigurationsResponse, AppConfigurationsSort, ValueConfigType, AppConfigurationsFilter, AppConfigurationsFilterResponse, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMOQ, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductListingResponse, OperatorsResponse, ApplicationStoreJson, AppReturnConfigResponse, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponse, Brand, BrandLogo, BrandItem, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, ApplicationBrandListingSchema, ApplicationBrandListingItemSchema, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnDataResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, BulkInventoryGetItems, BulkProductUploadJob, BulkProductJob, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, ChannelListResponse, ChannelDetailResponse, ChannelItem, ChannelValidation, ProductValidation, BrandValidationItem, CompanyValidation, LocationValidation, CategoryCreateResponse, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryRequestBody, CategoryResponse, CategoryUpdateResponse, Child, CollectionBadge, CollectionBanner, CollectionBannerResponse, BadgeDetail, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionImageResponse, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductDetailsGroups, ConfigurationProductDetailsConfig, ConfigurationProductDetailsAttribute, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, RerankingBoostItems, GetSearchRerankDetailResponse, BoostItem, GetSearchRerankItemResponse, GetSearchRerankResponse, CreateSearchRerankResponse, UpdateSearchRerankResponse, UpdateSearchRerankRequest, CreateSearchRerankRequest, CreateSearchConfigurationRequest, CreateSearchConfigurationResponse, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponse, CustomOrder, DateMeta, DefaultKeyRequest, DeleteAppCategoryReturnConfig, DeleteResponse, DeleteSearchConfigurationResponse, DeleteSearchRerankConfigurationResponse, Department, DepartmentCategoryTree, PollErrorResponse, DepartmentCreateErrorResponse, ProductBundleCreateErrorResponse, DepartmentCreateResponse, DepartmentCreateUpdate, DepartmentErrorResponse, DepartmentIdentifier, DepartmentModel, DepartmentResponse, ValidationFailedResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, Document, EntityConfiguration, ErrorResponse, CategoryErrorResponse, FilerList, RawProduct, RawProductListingResponse, GTIN, GenderDetail, GetAddressSerializer, GetAllSizes, FilterResponse, ValueItem, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, FilterItem, CompareFilter, SimilarFilter, VariantFilter, DetailFilter, DetailFilterValues, DisplayType, SimilarItem, VariantItem, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponse, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponse, GetConfigMetadataValues, AttributeType, DataType, ListingValueConfigType, SizeLimitConfiguration, ListingDataType, GetListingConfigResponse, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetCollectionDetailResponse, CommonResponseSchemaCollection, GetQueryFiltersResponse, GetCollectionItemsResponseSchema, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponse, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, Guide, HSNCodesResponse, HSNData, HSNDataInsertV2, Hierarchy, HsnCode, SlabObject, UpdateHsnCodesObject, UpdateHsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJobResponse, InventoryExportItem, InventoryExportJob, InventoryExportJobListFilters, InventoryExportJobListStats, InventoryExportJobList, InventoryExportJobListResponse, InventoryExportQuantityFilter, ExportPatchRequest, InventoryExportRequest, EditInventoryDataDownloadsResponse, EditInventoryDownloadsResponse, InventoryExportFiltersResponse, Stats, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryIdentifier, InventoryGeoLocation, InventoryMobileNumber, InventoryAddress, InventoryManager, InventoryStore, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, ItemQuery, Items, PriceRange, ProductPriceRangeSchema, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, MOQData, ManufacturerResponse, ManufacturerResponse1, Media, Media1, Media2, Meta, GuideHeaders, GuideValues, Header, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, NetQuantity, NetQuantityResponse, NextSchedule, OptInPostRequest, OptinCompanyBrandDetailsView, OptinAddress, OptinDocument, OptinBusinessCountryInfo, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponse, PTErrorResponse, Page, PageResponse, PageResponse1, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, InventoryBulkJob, ProductBulkResponse, InventoryBulkResponse, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSizesSchema, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, PatchProductDownloadsDataResponse, PatchProductDownloadsResponse, ProductDownloadFilters, CreateProductDownloadsDataResponse, CreateProductDownloadsResponse, GetProductDownloadsResponse, ProductDownloadsResponse, ProductFilters, ProductFiltersKey, ProductFiltersValue, ApplicationCategoryAction, ApplicationCategoryItem, CategoryPageAction, CategoryQuery, CategoryImage, ProductListingDetail, PageAction, ActionObject, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductVerificationModel, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSerializer, ProductReturnConfigBaseSerializer, CategorySubSchema, CategoryProduct, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductSortOnv2, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, CompanyVerificationStats, CompanyVerificationResponse, ProductVariantsResponse, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, Sitemap, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, SitemapDetail, SeoDetail, SetSize, SingleCategoryResponse, VariantTypesResponse, VariantTypeItem, SingleProductResponse, Size, SizeDistribution, SizeGuideResponse, Time, Timing, StoreItem, UserSchemaCustom, Manager, MobileNo, IntegrationType, Address, StoreDetail, StoreMeta, SuccessResponse, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplateValidationData, TemplatesResponse, TemplatesValidationResponse, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdateSearchConfigurationRequest, UpdateSearchConfigurationResponse, UpdatedResponse, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, CreatedBy, ModifiedBy, Marketplaces, GetAllMarketplaces, CreateMarketplaceOptinRequest, UpdateMarketplaceOptinRequest, CreateMarketplaceOptinResponse, GetProductTemplateSlugItems, GetProductTemplateSlugResponse, UpdateMarketplaceOptinResponse, AutocompleteRequestSchema, AutocompleteUpsertResponseSchema, AutocompleteErrorResponseSchema, AutocompleteResponseSchema, ProductListingActionPage, ProductListingAction, AutocompleteItem, AutocompletePreviewResponseSchema, CreateAppPriceFactoryRequestSchema, CreateAppPriceFactoryResponse, ErrorDetails, AppPriceFactory, EditAppPriceFactoryRequestSchema, GetAppPriceFactoryResponse, CreateAppPriceFactoryProduct, PriceFactorySizes, CompanySizes, CreateAppPriceFactoryProductItem, CreatePriceFactoryProductRequest, CreateAppPriceFactoryProductResponse, UpdateAppPriceFactoryProductRequest, UpdateAppPriceFactoryProductResponse, CreateAppPriceFactoryProductRequest, FailedRecordsData, CreatePriceFactoryProductResponse, CreateAppPriceFactoryProductsResponse, CreateAppPriceFactoryProductBulkJobRequest, CreateAppPriceFactoryProductExportJobRequest, CreateAppPriceFactoryProductExportJobResponse, AppPriceFactoryProductExportPollJobResponse, CreateAppPriceFactoryProductExportJobPollResponse, CreateAppPriceFactoryProductBulkJobResponse, CreateAppPriceFactoryProductBulkJobValidateResponse, CreateAppPriceFactoryProductBulkJobPollResponse, SynonymListResponseSchema, SynonymResponseSchema, SynonymListErrorResponseSchema, SynonymCreateRequestSchema, SynonymCreateResponseSchema, SynonymUpdateResponseSchema, SynonymCreateErrorSchema, SynonymDeleteErrorSchema, SynonymDeleteResponseSchema, SynonymUploadRequestSchema, SynonymUploadResponseSchema, SynonymExportResponseSchema, SynonymUploadErrorSchema, SynonymBulkValidateRequestSchema, SynonymBulkValidateResponseSchema, SynonymBulkValidateErrorSchema, SynonymBulkProcessRequestSchema, SynonymBulkProcessResponseSchema, SynonymBulkProcessErrorSchema, SynonymBulkPollResponseSchema, SynonymBulkPollErrorSchema, PriceFactoryErrorSchema, PriceFactoryCreateErrorSchema, PriceGroupedByZone, AppPriceByIdResponse, ActionPage, PageType };
5021
+ export { StoreTagsResponseSchema, DiscountMeta, ProductMinMaxPrice, ProductPrice, ProductPricesPage, ProductPriceItem, ProductPrices, ProductFiltersKeysOnly, GetQueryFiltersKeysResponse, GetQueryFiltersValuesResponse, GTINSchema, SetSizeSchema, SizeDistributionSchema, InventorySetSchema, InvSizeSchema, InventoryRequestSchema, ItemQuerySchema, SuccessResponseSchema, CompanyDRIListResponseSchema, CompanyDRIResponseSchema, SearchResponseSchema, MerchandisingQuery, MerchandisingSearchQuery, MerchandisingFilter, MerchandisingRuleQuery, MerchandisingRulesList, MerchDataItem, MerchSearchQuery, MerchQueryCondition, MerchFilter, SuccessResponseMerchandising, MerchandiseQueryResponse, Filter, MerchandisingRuleQueryPart, MerchandisingRuleQueryPost, MerchandisingRuleSave, PinItem, PinItemRequest, PinRequest, PinResponse, HideAttribute, HideAttributeRequest, HideResponse, HideRequest, PostBoostAttribute, BoostAttribute, GetMerchandisingRuleBoostAction, PostMerchandisingRuleBoostAction, GetMerchandisingRuleBuryAction, Action, AllSizes, AllowSingleRequest, AppCatalogConfiguration, AppCategoryReturnConfig, AppCategoryReturnConfigResponse, AppConfiguration, AppConfigurationCreateDetail, AppConfigurationDetail, AppConfigurationsResponse, AppConfigurationsSort, ValueConfigType, AppConfigurationsFilter, AppConfigurationsFilterResponse, ApplicationBrandJson, ApplicationCategoryJson, ApplicationDepartment, ApplicationDepartmentJson, ApplicationDepartmentListingResponse, ApplicationItemMOQ, ApplicationItemMeta, ApplicationItemSeoSitemap, ApplicationItemSEO, ApplicationProductListingResponse, OperatorsResponse, ApplicationStoreJson, AppReturnConfigResponse, ArticleAssignment, ArticleAssignment1, ArticleQuery, ArticleStoreResponse, AssignStore, AssignStoreArticle, AttributeDetailsGroup, AttributeMaster, AttributeMasterDetails, AttributeMasterFilter, AttributeMasterMandatoryDetails, AttributeMasterMeta, AttributeMasterSerializer, AttributeSchemaRange, AutoCompleteMedia, AutocompleteAction, AutocompletePageAction, AutocompleteResult, BannerImage, BaseAppCategoryReturnConfig, BaseAppCategoryReturnConfigResponse, Brand, BrandLogo, BrandItem, ApplicationCategoryListingSchema, ApplicationCategoryListingItemSchema, ApplicationBrandListingSchema, ApplicationBrandListingItemSchema, BrandListingResponse, BrandMeta, BrandMeta1, BulkAssetResponse, BulkHsnDataResponse, BulkHsnResponse, BulkHsnUpsert, BulkInventoryGet, BulkInventoryGetItems, BulkProductUploadJob, BulkProductJob, BulkJob, BulkProductRequest, BulkResponse, CatalogInsightBrand, CatalogInsightItem, CatalogInsightResponse, CategoriesResponse, Category, ChannelListResponse, ChannelDetailResponse, ChannelItem, ChannelValidation, ProductValidation, BrandValidationItem, CompanyValidation, LocationValidation, CategoryItems, CategoryListingResponse, CategoryMapping, CategoryMappingValues, CategoryResponse, Child, CollectionBadge, CollectionBanner, CollectionBannerResponse, BadgeDetail, CollectionCreateResponse, CollectionDetailResponse, CollectionImage, CollectionImageResponse, CollectionItem, CollectionItemUpdate, CollectionListingFilter, CollectionListingFilterTag, CollectionListingFilterType, CollectionQuery, CollectionSchedule, CompanyBrandDetail, CompanyMeta, CompanyMeta1, CompanyOptIn, ConfigErrorResponse, ConfigSuccessResponse, ConfigurationBucketPoints, ConfigurationListing, ConfigurationListingFilter, ConfigurationListingFilterConfig, ConfigurationListingFilterValue, ConfigurationListingSort, ConfigurationListingSortConfig, ConfigurationProduct, ConfigurationProductDetailsGroups, ConfigurationProductDetailsConfig, ConfigurationProductDetailsAttribute, ConfigurationProductConfig, ConfigurationProductSimilar, ConfigurationProductVariant, ConfigurationProductVariantConfig, CreateAutocompleteKeyword, CreateAutocompleteWordsResponse, CreateCollection, RerankingBoostItems, GetSearchRerankDetailResponse, BoostItem, GetSearchRerankItemResponse, GetSearchRerankResponse, CreateSearchRerankResponse, UpdateSearchRerankResponse, UpdateSearchRerankRequest, CreateSearchRerankRequest, CreateSearchConfigurationRequest, CreateSearchConfigurationResponse, CreateSearchKeyword, CreateUpdateAppReturnConfig, CrossSellingData, CrossSellingResponse, CustomOrder, DateMeta, DefaultKeyRequest, DeleteAppCategoryReturnConfig, DeleteResponse, DeleteSearchConfigurationResponse, DeleteSearchRerankConfigurationResponse, Department, DepartmentCategoryTree, PollErrorResponse, ProductBundleCreateErrorResponse, DepartmentErrorResponse, DepartmentIdentifier, DepartmentResponse, ValidationFailedResponse, DepartmentsResponse, DimensionResponse, DimensionResponse1, Document, EntityConfiguration, ErrorResponse, CategoryErrorResponse, FilerList, RawProduct, RawProductListingResponse, GTIN, AttributeDetail, GetAddressSerializer, GetAllSizes, FilterResponse, ValueItem, GetAppCatalogConfiguration, GetAppCatalogEntityConfiguration, GetAutocompleteWordsData, GetAutocompleteWordsResponse, GetCatalogConfigurationDetailsProduct, FilterItem, CompareFilter, SimilarFilter, VariantFilter, DetailFilter, DetailFilterValues, DisplayType, SimilarItem, VariantItem, GetCatalogConfigurationDetailsSchemaListing, GetCatalogConfigurationMetaData, GetCollectionDetailNest, GetCollectionItemsResponse, GetCollectionListingResponse, GetCollectionQueryOptionResponse, GetCompanySerializer, ConditionItem, DataItem, ValueTypeItem, SortTypeItem, GetConfigMetadataResponse, GetConfigMetadataValues, AttributeType, DataType, ListingValueConfigType, SizeLimitConfiguration, ListingDataType, GetListingConfigResponse, GetConfigResponse, GetDepartment, GetInventories, GetInventoriesResponse, GetLocationSerializer, GetOptInPlatform, GetProductBundleCreateResponse, GetProductBundleListingResponse, GetProductBundleResponse, GetProducts, GetCollectionDetailResponse, CommonResponseSchemaCollection, GetQueryFiltersResponse, GetCollectionItemsResponseSchema, Page1, CollectionItemSchemaV2, CollectionItemUpdateSchema, CollectionQuerySchemaV2, ProductDetailV2, GetSearchConfigurationResponse, GetSearchWordsData, GetSearchWordsDetailResponse, GetSearchWordsResponse, GlobalValidation, Guide, HSNCodesResponse, HSNData, HSNDataInsertV2, Hierarchy, HsnCode, SlabObject, UpdateHsnCodesObject, UpdateHsnCode, HsnCodesListingResponseSchemaV2, HsnCodesObject, HsnUpsert, Image, ImageUrls, InvSize, InventoryBulkRequest, InventoryConfig, InventoryCreateRequest, InventoryExportAdvanceOption, InventoryExportFilter, InventoryExportJobResponse, InventoryExportItem, InventoryExportJob, InventoryExportJobListFilters, InventoryExportJobListStats, InventoryExportJobList, InventoryExportJobListResponse, InventoryExportQuantityFilter, ExportPatchRequest, InventoryExportRequest, EditInventoryDataDownloadsResponse, EditInventoryDownloadsResponse, InventoryExportFiltersResponse, Stats, InventoryExportResponse, InventoryFailedReason, InventoryJobDetailResponse, InventoryJobFilters, InventoryJobPayload, InventoryPage, InventoryPayload, InventoryRequest, InventoryRequestSchemaV2, InventoryIdentifier, InventoryGeoLocation, InventoryMobileNumber, InventoryAddress, InventoryManager, InventoryStore, InventoryResponse, InventoryResponseItem, InventoryResponsePaginated, InventorySellerIdentifierResponsePaginated, InventorySellerResponse, InventorySet, InventoryStockResponse, InventoryUpdateResponse, InventoryValidationResponse, InvoiceCredSerializer, InvoiceDetailsSerializer, ItemQuery, Items, PriceRange, ProductPriceRangeSchema, LimitedProductData, ListSizeGuide, LocationDayWiseSerializer, LocationIntegrationType, LocationListSerializer, LocationManagerSerializer, LocationTimingSerializer, Logo, MOQData, ManufacturerResponse, ManufacturerResponse1, Media, Media1, Media2, Meta, GuideHeaders, GuideValues, Header, MetaDataListingFilterMetaResponse, MetaDataListingFilterResponse, MetaDataListingResponse, MetaDataListingSortMetaResponse, MetaDataListingSortResponse, MetaFields, NetQuantity, NetQuantityResponse, NextSchedule, OptInPostRequest, OptinCompanyBrandDetailsView, OptinAddress, OptinDocument, OptinBusinessCountryInfo, OptinCompanyDetail, OptinCompanyMetrics, OptinStoreDetails, OwnerAppItemResponse, PTErrorResponse, Page, PageResponse, PageResponse1, PageResponseType, Price, Price1, PriceArticle, PriceMeta, ProdcutTemplateCategoriesResponse, Product, ProductAttributesResponse, ProductBrand, ProductBulkAssets, ProductBulkRequest, InventoryBulkJob, ProductBulkResponse, InventoryBulkResponse, ProductBulkRequestList, ProductBundleItem, ProductBundleRequest, ProductBundleUpdateRequest, ProductConfigurationDownloads, ProductCreateUpdateSizesSchema, ProductCreateUpdateSchemaV2, ProductDetail, ProductDetailAttribute, ProductDetailGroupedAttribute, PatchProductDownloadsDataResponse, PatchProductDownloadsResponse, ProductDownloadFilters, CreateProductDownloadsDataResponse, CreateProductDownloadsResponse, GetProductDownloadsResponse, ProductDownloadsResponse, ProductFilters, ProductFiltersKey, ProductFiltersValue, ApplicationCategoryAction, ApplicationCategoryItem, CategoryPageAction, CategoryQuery, CategoryImage, ProductListingDetail, PageAction, ActionObject, ProductListingPrice, ProductListingResponse, ProductListingResponseV2, ProductVerificationModel, ProductPublish, ProductPublish1, ProductPublished, ProductReturnConfigSerializer, ProductReturnConfigBaseSerializer, CategorySubSchema, CategoryProduct, ProductSchemaV2, ProductSize, ProductSizeDeleteDataResponse, ProductSizeDeleteResponse, ProductSortOn, ProductSortOnv2, ProductTagsViewResponse, ProductTemplate, ProductTemplateDownloadsExport, ProductTemplateExportFilterRequest, ProductTemplateExportResponse, ProductVariants, CompanyVerificationStats, CompanyVerificationResponse, ProductVariantsResponse, Properties, Quantities, QuantitiesArticle, Quantity, QuantityBase, ReturnConfig, ReturnConfig1, ReturnConfig2, ReturnConfigResponse, Sitemap, ApplicationItemSeoAction, ApplicationItemSeoBreadcrumbs, ApplicationItemSeoMetaTagItem, ApplicationItemSeoMetaTags, Metatags, SizePromotionThreshold, SEOData, SearchKeywordResult, SearchableAttribute, SecondLevelChild, SellerPhoneNumber, SitemapDetail, SeoDetail, SetSize, SingleCategoryResponse, VariantTypesResponse, VariantTypeItem, SingleProductResponse, Size, SizeDistribution, SizeGuideResponse, Time, Timing, StoreItem, UserSchemaCustom, Manager, MobileNo, IntegrationType, Address, StoreDetail, StoreMeta, SuccessResponse, SuccessResponse1, TaxIdentifier, TaxSlab, TeaserTag, TemplateDetails, TemplateValidationData, TemplatesResponse, TemplatesValidationResponse, ThirdLevelChild, Trader, Trader1, Trader2, UpdateCollection, UpdateSearchConfigurationRequest, UpdateSearchConfigurationResponse, UpdatedResponse, UserCommon, UserDetail, UserDetail1, UserInfo, UserInfo1, UserSerializer, UserSerializer1, UserSerializer2, UserSerializer3, ValidateIdentifier, ValidateProduct, ValidateSizeGuide, VerifiedBy, WeightResponse, WeightResponse1, CreatedBy, ModifiedBy, Marketplaces, GetAllMarketplaces, CreateMarketplaceOptinRequest, UpdateMarketplaceOptinRequest, CreateMarketplaceOptinResponse, GetProductTemplateSlugItems, GetProductTemplateSlugResponse, UpdateMarketplaceOptinResponse, AutocompleteRequestSchema, AutocompleteUpsertResponseSchema, AutocompleteErrorResponseSchema, AutocompleteResponseSchema, ProductListingActionPage, ProductListingAction, AutocompleteItem, AutocompletePreviewResponseSchema, CreateAppPriceFactoryRequestSchema, CreateAppPriceFactoryResponse, ErrorDetails, AppPriceFactory, EditAppPriceFactoryRequestSchema, GetAppPriceFactoryResponse, CreateAppPriceFactoryProduct, PriceFactorySizes, CompanySizes, CreateAppPriceFactoryProductItem, CreatePriceFactoryProductRequest, CreateAppPriceFactoryProductResponse, UpdateAppPriceFactoryProductRequest, UpdateAppPriceFactoryProductResponse, CreateAppPriceFactoryProductRequest, FailedRecordsData, CreatePriceFactoryProductResponse, CreateAppPriceFactoryProductsResponse, CreateAppPriceFactoryProductBulkJobRequest, CreateAppPriceFactoryProductExportJobRequest, CreateAppPriceFactoryProductExportJobResponse, AppPriceFactoryProductExportPollJobResponse, CreateAppPriceFactoryProductExportJobPollResponse, CreateAppPriceFactoryProductBulkJobResponse, CreateAppPriceFactoryProductBulkJobValidateResponse, CreateAppPriceFactoryProductBulkJobPollResponse, SynonymListResponseSchema, SynonymResponseSchema, SynonymListErrorResponseSchema, SynonymCreateRequestSchema, SynonymCreateResponseSchema, SynonymUpdateResponseSchema, SynonymCreateErrorSchema, SynonymDeleteErrorSchema, SynonymDeleteResponseSchema, SynonymUploadRequestSchema, SynonymUploadResponseSchema, SynonymExportResponseSchema, SynonymUploadErrorSchema, SynonymBulkValidateRequestSchema, SynonymBulkValidateResponseSchema, SynonymBulkValidateErrorSchema, SynonymBulkProcessRequestSchema, SynonymBulkProcessResponseSchema, SynonymBulkProcessErrorSchema, SynonymBulkPollResponseSchema, SynonymBulkPollErrorSchema, PriceFactoryErrorSchema, PriceFactoryCreateErrorSchema, PriceGroupedByZone, AppPriceByIdResponse, ActionPage, PageType };
5084
5022
  }
5085
5023
  /** @returns {StoreTagsResponseSchema} */
5086
5024
  declare function StoreTagsResponseSchema(): StoreTagsResponseSchema;
@@ -6500,18 +6438,6 @@ type LocationValidation = {
6500
6438
  gst_required?: boolean;
6501
6439
  stage?: string;
6502
6440
  };
6503
- /** @returns {CategoryCreateResponse} */
6504
- declare function CategoryCreateResponse(): CategoryCreateResponse;
6505
- type CategoryCreateResponse = {
6506
- /**
6507
- * - It is the message of the response from the category.
6508
- */
6509
- message?: string;
6510
- /**
6511
- * - It is the unique identifier of the category.
6512
- */
6513
- uid?: number;
6514
- };
6515
6441
  /** @returns {CategoryItems} */
6516
6442
  declare function CategoryItems(): CategoryItems;
6517
6443
  type CategoryItems = {
@@ -6558,75 +6484,12 @@ type CategoryMappingValues = {
6558
6484
  */
6559
6485
  name: string;
6560
6486
  };
6561
- /** @returns {CategoryRequestBody} */
6562
- declare function CategoryRequestBody(): CategoryRequestBody;
6563
- type CategoryRequestBody = {
6564
- /**
6565
- * - It is the list of unique department the
6566
- * category belongs to.
6567
- */
6568
- departments: number[];
6569
- /**
6570
- * - It is the list of category hierarchies
6571
- * for each department of an L3 category.
6572
- */
6573
- hierarchy?: Hierarchy[];
6574
- /**
6575
- * - It is the flag indicating if the category is active.
6576
- */
6577
- is_active: boolean;
6578
- /**
6579
- * - It is the level of category
6580
- */
6581
- level: number;
6582
- /**
6583
- * - It is the mapping of the category in
6584
- * different marketplaces.
6585
- */
6586
- marketplaces?: any;
6587
- /**
6588
- * - It is the details of the media such as banner and logo..
6589
- */
6590
- media?: any;
6591
- /**
6592
- * - It is the name of the category
6593
- */
6594
- name: string;
6595
- /**
6596
- * - It is the priority of the category.
6597
- */
6598
- priority?: number;
6599
- /**
6600
- * - It is the slug of the category.
6601
- */
6602
- slug?: string;
6603
- /**
6604
- * - It is the list of synonyms.
6605
- */
6606
- synonyms?: string[];
6607
- /**
6608
- * - It is the list of tryouts.
6609
- */
6610
- tryouts?: string[];
6611
- };
6612
6487
  /** @returns {CategoryResponse} */
6613
6488
  declare function CategoryResponse(): CategoryResponse;
6614
6489
  type CategoryResponse = {
6615
6490
  items?: Category[];
6616
6491
  page?: Page;
6617
6492
  };
6618
- /** @returns {CategoryUpdateResponse} */
6619
- declare function CategoryUpdateResponse(): CategoryUpdateResponse;
6620
- type CategoryUpdateResponse = {
6621
- /**
6622
- * - It is the message of the response from the category.
6623
- */
6624
- message?: string;
6625
- /**
6626
- * - It is the flag indication the success response.
6627
- */
6628
- success?: boolean;
6629
- };
6630
6493
  /** @returns {Child} */
6631
6494
  declare function Child(): Child;
6632
6495
  type Child = {
@@ -7271,36 +7134,11 @@ declare function PollErrorResponse(): PollErrorResponse;
7271
7134
  type PollErrorResponse = {
7272
7135
  error?: any;
7273
7136
  };
7274
- /** @returns {DepartmentCreateErrorResponse} */
7275
- declare function DepartmentCreateErrorResponse(): DepartmentCreateErrorResponse;
7276
- type DepartmentCreateErrorResponse = {
7277
- error?: any;
7278
- };
7279
7137
  /** @returns {ProductBundleCreateErrorResponse} */
7280
7138
  declare function ProductBundleCreateErrorResponse(): ProductBundleCreateErrorResponse;
7281
7139
  type ProductBundleCreateErrorResponse = {
7282
7140
  error?: any;
7283
7141
  };
7284
- /** @returns {DepartmentCreateResponse} */
7285
- declare function DepartmentCreateResponse(): DepartmentCreateResponse;
7286
- type DepartmentCreateResponse = {
7287
- message: string;
7288
- uid: number;
7289
- };
7290
- /** @returns {DepartmentCreateUpdate} */
7291
- declare function DepartmentCreateUpdate(): DepartmentCreateUpdate;
7292
- type DepartmentCreateUpdate = {
7293
- _cls?: string;
7294
- _custom_json?: any;
7295
- is_active?: boolean;
7296
- logo: string;
7297
- name: string;
7298
- platforms?: any;
7299
- priority_order: number;
7300
- slug?: string;
7301
- tags?: string[];
7302
- uid?: number;
7303
- };
7304
7142
  /** @returns {DepartmentErrorResponse} */
7305
7143
  declare function DepartmentErrorResponse(): DepartmentErrorResponse;
7306
7144
  type DepartmentErrorResponse = {
@@ -7317,59 +7155,6 @@ type DepartmentIdentifier = {
7317
7155
  slug?: string;
7318
7156
  uid?: number;
7319
7157
  };
7320
- /** @returns {DepartmentModel} */
7321
- declare function DepartmentModel(): DepartmentModel;
7322
- type DepartmentModel = {
7323
- _cls?: string;
7324
- _custom_json?: any;
7325
- _id?: string;
7326
- /**
7327
- * - User details of the creator of the document
7328
- */
7329
- created_by?: any;
7330
- /**
7331
- * - Whether the department is currently active
7332
- */
7333
- is_active?: boolean;
7334
- /**
7335
- * - The URL of the department's logo
7336
- */
7337
- logo: string;
7338
- /**
7339
- * - User details of the last modifier of the document
7340
- */
7341
- modified_by?: any;
7342
- /**
7343
- * - The name of the department
7344
- */
7345
- name: string;
7346
- /**
7347
- * - The priority order of the department
7348
- */
7349
- priority_order: number;
7350
- /**
7351
- * - The unique slug identifier for the department
7352
- */
7353
- slug?: string;
7354
- /**
7355
- * - A list of synonyms for the department name
7356
- */
7357
- synonyms?: string[];
7358
- /**
7359
- * - The unique ID for the department
7360
- */
7361
- uid: number;
7362
- /**
7363
- * - User details of the verifier of the
7364
- * document, if applicable
7365
- */
7366
- verified_by?: any;
7367
- /**
7368
- * - Timestamp of when the document was
7369
- * verified, if applicable
7370
- */
7371
- verified_on?: string;
7372
- };
7373
7158
  /** @returns {DepartmentResponse} */
7374
7159
  declare function DepartmentResponse(): DepartmentResponse;
7375
7160
  type DepartmentResponse = {
@@ -7542,9 +7327,9 @@ type GTIN = {
7542
7327
  gtin_value: string;
7543
7328
  primary?: boolean;
7544
7329
  };
7545
- /** @returns {GenderDetail} */
7546
- declare function GenderDetail(): GenderDetail;
7547
- type GenderDetail = {
7330
+ /** @returns {AttributeDetail} */
7331
+ declare function AttributeDetail(): AttributeDetail;
7332
+ type AttributeDetail = {
7548
7333
  /**
7549
7334
  * - It is Date and time when the attribute was created.
7550
7335
  */
@@ -8999,9 +8784,17 @@ type InventoryPayload = {
8999
8784
  */
9000
8785
  tags?: string[];
9001
8786
  /**
9002
- * - The total quantity of the inventory item.
8787
+ * - The total quantity of the inventory
8788
+ * item. Any one quantity is allowed `sellable_quantity` or `total_quantity`,
8789
+ * the other one would be derived.
9003
8790
  */
9004
8791
  total_quantity?: number;
8792
+ /**
8793
+ * - The sellable quantity of the
8794
+ * inventory item. Any one quantity is allowed `sellable_quantity` or
8795
+ * `total_quantity`, the other one would be derived.
8796
+ */
8797
+ sellable_quantity?: number;
9005
8798
  /**
9006
8799
  * - The trace ID of the inventory payload.
9007
8800
  */
@@ -11774,6 +11567,7 @@ type AppPriceFactoryProductExportPollJobResponse = {
11774
11567
  total_records?: number;
11775
11568
  success_records?: number;
11776
11569
  failed_records?: number;
11570
+ job_type?: string;
11777
11571
  };
11778
11572
  /** @returns {CreateAppPriceFactoryProductExportJobPollResponse} */
11779
11573
  declare function CreateAppPriceFactoryProductExportJobPollResponse(): CreateAppPriceFactoryProductExportJobPollResponse;