@signskart/shared 1.3.22 → 1.3.24
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/dist/index.d.mts +60 -3
- package/dist/index.d.ts +60 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -114,10 +114,8 @@ interface IProduct {
|
|
|
114
114
|
category: ICategory;
|
|
115
115
|
productType: IProductType;
|
|
116
116
|
tags: ProductExclusiveTag[];
|
|
117
|
-
image: string[];
|
|
118
117
|
stock: number;
|
|
119
118
|
sales: number;
|
|
120
|
-
tag: string[];
|
|
121
119
|
variants: IVariant[];
|
|
122
120
|
hasVariant: boolean;
|
|
123
121
|
hasSize: boolean;
|
|
@@ -523,4 +521,63 @@ interface IAdmin {
|
|
|
523
521
|
[key: string]: unknown;
|
|
524
522
|
}
|
|
525
523
|
|
|
526
|
-
|
|
524
|
+
interface ICountry {
|
|
525
|
+
_id: string;
|
|
526
|
+
name: string;
|
|
527
|
+
slug: string;
|
|
528
|
+
isoCode: string;
|
|
529
|
+
isoCode3: string;
|
|
530
|
+
calling_code: string;
|
|
531
|
+
capital: string;
|
|
532
|
+
subContinent: string;
|
|
533
|
+
continent: string;
|
|
534
|
+
status: boolean;
|
|
535
|
+
updatedAt: string;
|
|
536
|
+
createdAt: string;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
interface IState {
|
|
540
|
+
_id: string;
|
|
541
|
+
counrty: ICountry;
|
|
542
|
+
name: string;
|
|
543
|
+
slug: string;
|
|
544
|
+
isoCode: string;
|
|
545
|
+
subdivision: string;
|
|
546
|
+
status: boolean;
|
|
547
|
+
updatedAt: string;
|
|
548
|
+
createdAt: string;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
interface IAddress {
|
|
552
|
+
_id: string;
|
|
553
|
+
addressLine1: string;
|
|
554
|
+
addressLine2: string;
|
|
555
|
+
city: string;
|
|
556
|
+
zipCode: string;
|
|
557
|
+
firstName: string;
|
|
558
|
+
lastName: string;
|
|
559
|
+
email: string;
|
|
560
|
+
phoneNumber: string;
|
|
561
|
+
defaultAddress: boolean;
|
|
562
|
+
state: IState;
|
|
563
|
+
country: ICountry;
|
|
564
|
+
customer: ICustomer;
|
|
565
|
+
createdAt: string;
|
|
566
|
+
updatedAt: string;
|
|
567
|
+
deletedAt: string;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
interface ICustomer {
|
|
571
|
+
_id: string;
|
|
572
|
+
firstName: string;
|
|
573
|
+
lastName: string;
|
|
574
|
+
profileImage: string;
|
|
575
|
+
address: IAddress;
|
|
576
|
+
email: string;
|
|
577
|
+
phoneNumber?: string;
|
|
578
|
+
password: string;
|
|
579
|
+
createdAt: string;
|
|
580
|
+
updatedAt: string;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
export { type AdminRole, type BannerLink, type BannerMedia, type BannerMediaType, type BannerVisibility, type CategoryQueryParams, type CategoryResponse, type CustomerPhotoStatus, type CustomerPhotosQueryParams, type IAddress, type IAdmin, type IBanner, type IBannerFormValues, type ICategory, type ICountry, type ICoupon, type ICreateStoreDTO, type ICurrency, type ICustomer, type ICustomerPhotos, type IDiscountType, type IFrameChartDocument, type IFrameChartFormProps, type IGlobalSetting, type IImages, type ILanguage, type ILocalizedString, type IPrices, type IPricingChartDocument, type IPricingChartFormProps, type IPricingData, type IPricingTier, type IProduct, type IProductQuery, type IProductResponse, type IProductType, type IProductUpdate, type IProductVariantQuery, type ISEOMetaData, type IShippingChartDocument, type IShippingChartFormProps, type IShippingData, type IShippingTier, type IState, type IStore, type IStoreSettings, type ISubscriber, type ISubscriberCampaign, type ISubscriberCampaignContent, type ISubscriberCampaignLog, type ISubscriberCampaignLogMeta, type ISubscriberCampaignLogMetaLocation, type ISubscriberEvent, type ISubscriberEventBase, type ISubscriberEventSubscribed, type ISubscriberEventUpdated, type ISubscriberList, type ISubscriberPreference, type ISubscriberSegment, type ISubscriberSegmentRules, type ISubscriberSubscription, type IVariant, type IVariantChart, type IVariantChartFormProps, type IVariantOption, type IVariantPrices, type LinkType, ProdductExclusiveTAGS, type ProductExclusiveTag, TAGS, type Tag };
|
package/dist/index.d.ts
CHANGED
|
@@ -114,10 +114,8 @@ interface IProduct {
|
|
|
114
114
|
category: ICategory;
|
|
115
115
|
productType: IProductType;
|
|
116
116
|
tags: ProductExclusiveTag[];
|
|
117
|
-
image: string[];
|
|
118
117
|
stock: number;
|
|
119
118
|
sales: number;
|
|
120
|
-
tag: string[];
|
|
121
119
|
variants: IVariant[];
|
|
122
120
|
hasVariant: boolean;
|
|
123
121
|
hasSize: boolean;
|
|
@@ -523,4 +521,63 @@ interface IAdmin {
|
|
|
523
521
|
[key: string]: unknown;
|
|
524
522
|
}
|
|
525
523
|
|
|
526
|
-
|
|
524
|
+
interface ICountry {
|
|
525
|
+
_id: string;
|
|
526
|
+
name: string;
|
|
527
|
+
slug: string;
|
|
528
|
+
isoCode: string;
|
|
529
|
+
isoCode3: string;
|
|
530
|
+
calling_code: string;
|
|
531
|
+
capital: string;
|
|
532
|
+
subContinent: string;
|
|
533
|
+
continent: string;
|
|
534
|
+
status: boolean;
|
|
535
|
+
updatedAt: string;
|
|
536
|
+
createdAt: string;
|
|
537
|
+
}
|
|
538
|
+
|
|
539
|
+
interface IState {
|
|
540
|
+
_id: string;
|
|
541
|
+
counrty: ICountry;
|
|
542
|
+
name: string;
|
|
543
|
+
slug: string;
|
|
544
|
+
isoCode: string;
|
|
545
|
+
subdivision: string;
|
|
546
|
+
status: boolean;
|
|
547
|
+
updatedAt: string;
|
|
548
|
+
createdAt: string;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
interface IAddress {
|
|
552
|
+
_id: string;
|
|
553
|
+
addressLine1: string;
|
|
554
|
+
addressLine2: string;
|
|
555
|
+
city: string;
|
|
556
|
+
zipCode: string;
|
|
557
|
+
firstName: string;
|
|
558
|
+
lastName: string;
|
|
559
|
+
email: string;
|
|
560
|
+
phoneNumber: string;
|
|
561
|
+
defaultAddress: boolean;
|
|
562
|
+
state: IState;
|
|
563
|
+
country: ICountry;
|
|
564
|
+
customer: ICustomer;
|
|
565
|
+
createdAt: string;
|
|
566
|
+
updatedAt: string;
|
|
567
|
+
deletedAt: string;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
interface ICustomer {
|
|
571
|
+
_id: string;
|
|
572
|
+
firstName: string;
|
|
573
|
+
lastName: string;
|
|
574
|
+
profileImage: string;
|
|
575
|
+
address: IAddress;
|
|
576
|
+
email: string;
|
|
577
|
+
phoneNumber?: string;
|
|
578
|
+
password: string;
|
|
579
|
+
createdAt: string;
|
|
580
|
+
updatedAt: string;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
export { type AdminRole, type BannerLink, type BannerMedia, type BannerMediaType, type BannerVisibility, type CategoryQueryParams, type CategoryResponse, type CustomerPhotoStatus, type CustomerPhotosQueryParams, type IAddress, type IAdmin, type IBanner, type IBannerFormValues, type ICategory, type ICountry, type ICoupon, type ICreateStoreDTO, type ICurrency, type ICustomer, type ICustomerPhotos, type IDiscountType, type IFrameChartDocument, type IFrameChartFormProps, type IGlobalSetting, type IImages, type ILanguage, type ILocalizedString, type IPrices, type IPricingChartDocument, type IPricingChartFormProps, type IPricingData, type IPricingTier, type IProduct, type IProductQuery, type IProductResponse, type IProductType, type IProductUpdate, type IProductVariantQuery, type ISEOMetaData, type IShippingChartDocument, type IShippingChartFormProps, type IShippingData, type IShippingTier, type IState, type IStore, type IStoreSettings, type ISubscriber, type ISubscriberCampaign, type ISubscriberCampaignContent, type ISubscriberCampaignLog, type ISubscriberCampaignLogMeta, type ISubscriberCampaignLogMetaLocation, type ISubscriberEvent, type ISubscriberEventBase, type ISubscriberEventSubscribed, type ISubscriberEventUpdated, type ISubscriberList, type ISubscriberPreference, type ISubscriberSegment, type ISubscriberSegmentRules, type ISubscriberSubscription, type IVariant, type IVariantChart, type IVariantChartFormProps, type IVariantOption, type IVariantPrices, type LinkType, ProdductExclusiveTAGS, type ProductExclusiveTag, TAGS, type Tag };
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts","../src/interfaces/category.ts","../src/interfaces/product.ts"],"sourcesContent":["export * from './interfaces';\n","import { ILocalizedString } from \"./common\";\nimport { ISEOMetaData } from \"./seo\";\nimport { IStore } from \"./store\";\n\nexport const TAGS = ['new', 'hot', 'sale', 'featured', 'exclusive'] as const;\n\nexport type Tag = typeof TAGS[number];\n\nexport interface ICategory {\n _id: string;\n name: ILocalizedString;\n description?: ILocalizedString;\n slug: string;\n parent?: string | null;\n parentName?: string;\n children?: string[];\n level?: number;\n status: boolean;\n store: IStore;\n skuInitial?: string;\n sortPosition?: number;\n tags: Tag[];\n\n images: {\n desktopBanner?: string;\n mobileBanner?: string;\n shopPageThumbnail?: string;\n categoryThumbnail?: string;\n };\n\n seoMetaData: ISEOMetaData;\n metaData: {\n\n };\n createdAt?: string;\n updatedAt?: string;\n productCount?: number;\n\n [key: string]: any; // Optional catch-all for dynamic properties\n}\n\nexport interface CategoryQueryParams {\n page?: number;\n limit?: number;\n name?: string;\n status?: string;\n minLevel?: string;\n maxLevel?: string;\n}\n\nexport interface CategoryResponse {\n categories: ICategory[];\n totalCategories: number;\n totalPages: number;\n currentPage: number;\n}\n","import { ICategory, ILocalizedString, IProductType, ISEOMetaData, IStore, IVariant } from \"./\";\n\nexport interface IPrices {\n originalPrice: number;\n price: number\n discount?: number;\n}\n\nexport interface IImages {\n productImage?: string;\n seoImage?: string;\n displayImage?: string;\n}\n\nexport const ProdductExclusiveTAGS = [\n \"new\",\n \"hot\",\n \"sale\",\n \"featured\",\n \"exclusive\",\n \"trending\",\n \"pack\",\n \"bundles\"\n] as const;\n\nexport type ProductExclusiveTag = typeof ProdductExclusiveTAGS[number];\n\nexport interface IProduct {\n _id: string;\n sku: string;\n barcode?: string;\n title: ILocalizedString;\n description: ILocalizedString;\n slug: string;\n categories: ICategory[];\n category: ICategory;\n productType: IProductType;\n tags: ProductExclusiveTag[];\n
|
|
1
|
+
{"version":3,"sources":["../src/index.ts","../src/interfaces/category.ts","../src/interfaces/product.ts"],"sourcesContent":["export * from './interfaces';\n","import { ILocalizedString } from \"./common\";\nimport { ISEOMetaData } from \"./seo\";\nimport { IStore } from \"./store\";\n\nexport const TAGS = ['new', 'hot', 'sale', 'featured', 'exclusive'] as const;\n\nexport type Tag = typeof TAGS[number];\n\nexport interface ICategory {\n _id: string;\n name: ILocalizedString;\n description?: ILocalizedString;\n slug: string;\n parent?: string | null;\n parentName?: string;\n children?: string[];\n level?: number;\n status: boolean;\n store: IStore;\n skuInitial?: string;\n sortPosition?: number;\n tags: Tag[];\n\n images: {\n desktopBanner?: string;\n mobileBanner?: string;\n shopPageThumbnail?: string;\n categoryThumbnail?: string;\n };\n\n seoMetaData: ISEOMetaData;\n metaData: {\n\n };\n createdAt?: string;\n updatedAt?: string;\n productCount?: number;\n\n [key: string]: any; // Optional catch-all for dynamic properties\n}\n\nexport interface CategoryQueryParams {\n page?: number;\n limit?: number;\n name?: string;\n status?: string;\n minLevel?: string;\n maxLevel?: string;\n}\n\nexport interface CategoryResponse {\n categories: ICategory[];\n totalCategories: number;\n totalPages: number;\n currentPage: number;\n}\n","import { ICategory, ILocalizedString, IProductType, ISEOMetaData, IStore, IVariant } from \"./\";\n\nexport interface IPrices {\n originalPrice: number;\n price: number\n discount?: number;\n}\n\nexport interface IImages {\n productImage?: string;\n seoImage?: string;\n displayImage?: string;\n}\n\nexport const ProdductExclusiveTAGS = [\n \"new\",\n \"hot\",\n \"sale\",\n \"featured\",\n \"exclusive\",\n \"trending\",\n \"pack\",\n \"bundles\"\n] as const;\n\nexport type ProductExclusiveTag = typeof ProdductExclusiveTAGS[number];\n\nexport interface IProduct {\n _id: string;\n sku: string;\n barcode?: string;\n title: ILocalizedString;\n description: ILocalizedString;\n slug: string;\n categories: ICategory[];\n category: ICategory;\n productType: IProductType;\n tags: ProductExclusiveTag[];\n stock: number;\n sales: number;\n variants: IVariant[];\n hasVariant: boolean;\n hasSize: boolean;\n prices: IPrices;\n status: boolean;\n store: IStore;\n images: IImages;\n seoMetaData: ISEOMetaData;\n metaData: {};\n createdAt?: Date;\n updatedAt?: Date;\n\n // Optional: virtual populate\n variantList?: IVariant[];\n\n [key: string]: any;\n}\n\nexport interface IProductQuery {\n page?: number;\n limit?: number;\n category?: string;\n categories?: string[];\n title?: string;\n price?: string;\n stockStatus?: string;\n published?: string;\n status?: boolean;\n minPrice?: string;\n maxPrice?: string;\n}\n\nexport interface IProductResponse {\n products: IProduct[];\n totalDoc: number;\n limits: number;\n pages: number;\n}\n\nexport interface IProductUpdate {\n ids: string[];\n [key: string]: any;\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACIO,IAAM,OAAO,CAAC,OAAO,OAAO,QAAQ,YAAY,WAAW;;;ACU3D,IAAM,wBAAwB;AAAA,EACnC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;","names":[]}
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/interfaces/category.ts","../src/interfaces/product.ts"],"sourcesContent":["import { ILocalizedString } from \"./common\";\nimport { ISEOMetaData } from \"./seo\";\nimport { IStore } from \"./store\";\n\nexport const TAGS = ['new', 'hot', 'sale', 'featured', 'exclusive'] as const;\n\nexport type Tag = typeof TAGS[number];\n\nexport interface ICategory {\n _id: string;\n name: ILocalizedString;\n description?: ILocalizedString;\n slug: string;\n parent?: string | null;\n parentName?: string;\n children?: string[];\n level?: number;\n status: boolean;\n store: IStore;\n skuInitial?: string;\n sortPosition?: number;\n tags: Tag[];\n\n images: {\n desktopBanner?: string;\n mobileBanner?: string;\n shopPageThumbnail?: string;\n categoryThumbnail?: string;\n };\n\n seoMetaData: ISEOMetaData;\n metaData: {\n\n };\n createdAt?: string;\n updatedAt?: string;\n productCount?: number;\n\n [key: string]: any; // Optional catch-all for dynamic properties\n}\n\nexport interface CategoryQueryParams {\n page?: number;\n limit?: number;\n name?: string;\n status?: string;\n minLevel?: string;\n maxLevel?: string;\n}\n\nexport interface CategoryResponse {\n categories: ICategory[];\n totalCategories: number;\n totalPages: number;\n currentPage: number;\n}\n","import { ICategory, ILocalizedString, IProductType, ISEOMetaData, IStore, IVariant } from \"./\";\n\nexport interface IPrices {\n originalPrice: number;\n price: number\n discount?: number;\n}\n\nexport interface IImages {\n productImage?: string;\n seoImage?: string;\n displayImage?: string;\n}\n\nexport const ProdductExclusiveTAGS = [\n \"new\",\n \"hot\",\n \"sale\",\n \"featured\",\n \"exclusive\",\n \"trending\",\n \"pack\",\n \"bundles\"\n] as const;\n\nexport type ProductExclusiveTag = typeof ProdductExclusiveTAGS[number];\n\nexport interface IProduct {\n _id: string;\n sku: string;\n barcode?: string;\n title: ILocalizedString;\n description: ILocalizedString;\n slug: string;\n categories: ICategory[];\n category: ICategory;\n productType: IProductType;\n tags: ProductExclusiveTag[];\n
|
|
1
|
+
{"version":3,"sources":["../src/interfaces/category.ts","../src/interfaces/product.ts"],"sourcesContent":["import { ILocalizedString } from \"./common\";\nimport { ISEOMetaData } from \"./seo\";\nimport { IStore } from \"./store\";\n\nexport const TAGS = ['new', 'hot', 'sale', 'featured', 'exclusive'] as const;\n\nexport type Tag = typeof TAGS[number];\n\nexport interface ICategory {\n _id: string;\n name: ILocalizedString;\n description?: ILocalizedString;\n slug: string;\n parent?: string | null;\n parentName?: string;\n children?: string[];\n level?: number;\n status: boolean;\n store: IStore;\n skuInitial?: string;\n sortPosition?: number;\n tags: Tag[];\n\n images: {\n desktopBanner?: string;\n mobileBanner?: string;\n shopPageThumbnail?: string;\n categoryThumbnail?: string;\n };\n\n seoMetaData: ISEOMetaData;\n metaData: {\n\n };\n createdAt?: string;\n updatedAt?: string;\n productCount?: number;\n\n [key: string]: any; // Optional catch-all for dynamic properties\n}\n\nexport interface CategoryQueryParams {\n page?: number;\n limit?: number;\n name?: string;\n status?: string;\n minLevel?: string;\n maxLevel?: string;\n}\n\nexport interface CategoryResponse {\n categories: ICategory[];\n totalCategories: number;\n totalPages: number;\n currentPage: number;\n}\n","import { ICategory, ILocalizedString, IProductType, ISEOMetaData, IStore, IVariant } from \"./\";\n\nexport interface IPrices {\n originalPrice: number;\n price: number\n discount?: number;\n}\n\nexport interface IImages {\n productImage?: string;\n seoImage?: string;\n displayImage?: string;\n}\n\nexport const ProdductExclusiveTAGS = [\n \"new\",\n \"hot\",\n \"sale\",\n \"featured\",\n \"exclusive\",\n \"trending\",\n \"pack\",\n \"bundles\"\n] as const;\n\nexport type ProductExclusiveTag = typeof ProdductExclusiveTAGS[number];\n\nexport interface IProduct {\n _id: string;\n sku: string;\n barcode?: string;\n title: ILocalizedString;\n description: ILocalizedString;\n slug: string;\n categories: ICategory[];\n category: ICategory;\n productType: IProductType;\n tags: ProductExclusiveTag[];\n stock: number;\n sales: number;\n variants: IVariant[];\n hasVariant: boolean;\n hasSize: boolean;\n prices: IPrices;\n status: boolean;\n store: IStore;\n images: IImages;\n seoMetaData: ISEOMetaData;\n metaData: {};\n createdAt?: Date;\n updatedAt?: Date;\n\n // Optional: virtual populate\n variantList?: IVariant[];\n\n [key: string]: any;\n}\n\nexport interface IProductQuery {\n page?: number;\n limit?: number;\n category?: string;\n categories?: string[];\n title?: string;\n price?: string;\n stockStatus?: string;\n published?: string;\n status?: boolean;\n minPrice?: string;\n maxPrice?: string;\n}\n\nexport interface IProductResponse {\n products: IProduct[];\n totalDoc: number;\n limits: number;\n pages: number;\n}\n\nexport interface IProductUpdate {\n ids: string[];\n [key: string]: any;\n}\n"],"mappings":";AAIO,IAAM,OAAO,CAAC,OAAO,OAAO,QAAQ,YAAY,WAAW;;;ACU3D,IAAM,wBAAwB;AAAA,EACnC;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AACF;","names":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signskart/shared",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.24",
|
|
4
4
|
"description": "Production-grade upload manager SDK with queue, progress tracking, retry logic, and multi-provider support (S3, Cloudinary).",
|
|
5
5
|
"author": "Signskart",
|
|
6
6
|
"license": "UNLICENSED",
|