@artisan-commerce/types 0.14.0-canary.40 → 0.14.0-canary.41
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/bundle.d.ts +23 -1
- package/package.json +2 -2
package/dist/bundle.d.ts
CHANGED
|
@@ -300,6 +300,8 @@ interface Category<T extends AdditionalInfo = AdditionalInfo> {
|
|
|
300
300
|
subcategories: boolean;
|
|
301
301
|
/** Category additional info */
|
|
302
302
|
additionalInfo?: T;
|
|
303
|
+
/** Whether or not the category is featured */
|
|
304
|
+
featured: boolean;
|
|
303
305
|
}
|
|
304
306
|
/**
|
|
305
307
|
* Representation of a category which contains several base products.
|
|
@@ -811,6 +813,8 @@ interface BaseProduct<T extends AdditionalInfo = AdditionalInfo> {
|
|
|
811
813
|
status: ProductStatus;
|
|
812
814
|
/** Product additional info */
|
|
813
815
|
additionalInfo?: T;
|
|
816
|
+
/** Up-sell products related to the base product */
|
|
817
|
+
upSelling?: BaseProduct[];
|
|
814
818
|
}
|
|
815
819
|
/**
|
|
816
820
|
* Product prices attributes.
|
|
@@ -2080,6 +2084,8 @@ interface BaseUser<T extends AdditionalInfo = AdditionalInfo> {
|
|
|
2080
2084
|
active?: boolean;
|
|
2081
2085
|
/** User's additional info */
|
|
2082
2086
|
additionalInfo?: T;
|
|
2087
|
+
/** User's privacy accept date */
|
|
2088
|
+
privacyAcceptDate?: string | null;
|
|
2083
2089
|
}
|
|
2084
2090
|
/**
|
|
2085
2091
|
* Representation of a user saved on a database.
|
|
@@ -3198,6 +3204,22 @@ interface PaymentMethod extends BasePaymentMethod {
|
|
|
3198
3204
|
parent_id: string | null;
|
|
3199
3205
|
/** Payment method cards' allowed brands, see {@link ProvidersBrand} */
|
|
3200
3206
|
methods: PaymentProvider[];
|
|
3207
|
+
/** Payment method taxes */
|
|
3208
|
+
taxes?: Tax[];
|
|
3209
|
+
}
|
|
3210
|
+
/**
|
|
3211
|
+
* Representation of a Commerce Tax
|
|
3212
|
+
*
|
|
3213
|
+
* @interface Tax
|
|
3214
|
+
* @since 0.1.0
|
|
3215
|
+
*/
|
|
3216
|
+
interface Tax {
|
|
3217
|
+
/** Tax code */
|
|
3218
|
+
code: number;
|
|
3219
|
+
/** Tax name */
|
|
3220
|
+
name: string;
|
|
3221
|
+
/** Tax percentage */
|
|
3222
|
+
percentage: number;
|
|
3201
3223
|
}
|
|
3202
3224
|
/**
|
|
3203
3225
|
* Representation of a credit card brand.
|
|
@@ -3260,4 +3282,4 @@ interface CardInscription {
|
|
|
3260
3282
|
createdAt?: string;
|
|
3261
3283
|
}
|
|
3262
3284
|
|
|
3263
|
-
export { ARDocumentType, Account, AdditionalInfo, Alert, Allocation, ArtisnParams, ArtisnPlatform, ArtisnQuery, ArtisnRequest, ArtisnRequestBody, ArtisnRequestHeaders, ArtisnRequestMethod, Award, BODocumentType, BRDocumentType, Banner, BannerBenefits, BannerCoupon, BannerImage, BannerScope, BannerType, BaseBillingData, BaseField, BaseLivingPlace, BaseOrder, BasePaymentMethod, BaseProduct, BaseShippingAddress, BaseUser, BaseWeekDay, Benefit, BenefitData, BenefitTypes, BillTotal, BillTotalCategory, BillingData, CDNImage, CLDocumentType, CODocumentType, CardInscription, CardName, CartProduct, CartProductAnswer, CartProductQuestion, CartStore, CartTotals, Catalogue, Category, CategoryWithProducts, Code, CommonDocumentType, Country, CountryCode, CountryCurrency, CountrySummary, Coupon, CouponCategory, CouponType, CreditCardMapping, CurrencyCodes, DayOfWeek, Days, Delivery, DeliveryTimeUnit, Discount, DocumentType, ECDocumentType, Field, FieldRecord, Gender, GenericStoreLocation, Image, ImageFit, ImageManipulationConfig, ImageToFormat, Injection, InjectionDetail, IntegrationMessage, Issue, IssueAdditionalInfo, IssueHistory, LivingPlace, LivingPlaceToSave, MaritalStatus, Message, MetadataShipping, NewShippingAddress, Notification, NotificationAdditionalInfo, NotificationExtraData, NotificationListItem, NotificationPriority, NotificationStep, NotificationStore, NotificationUser, NotificationVendor, Objectify, OperatorInformation, Order, OrderBillProduct, OrderBillProductAdditionalInfo, OrderBillTotal, OrderCommonFields, OrderDetailShippingCost, OrderDetails, OrderPaymentMethod, OrderProduct, OrderProductAdditionalInfo, OrderProductAttributes, OrderProductBillTotal, OrderProductImage, OrderProductPriceCategory, OrderRetry, OrderRetryPaymentMethod, OrderShoppingCart, OrderStatus, OrderStep, OrderStepAdditionalInfo, OrderStepAdditionalInfoGroup, OrderStore, OrderStoreAdditionalInfo, OrderStoreDelivery, OrderUser, PEDocumentType, PYDocumentType, PaymentMethod, PaymentMethodByOrder, PaymentMethodName, PaymentProvider, PaymentStatus, Phone, PriceCategory, PriceCategoryTax, PriceCategoryType, Product, ProductAnswer, ProductAttributes, ProductCoupon, ProductDetails, ProductPrices, ProductQuestion, ProductStatus, ProductType, RandomImageConfig, ReadValue, Rule, Schedule, Service, Settings, ShippingAddress, ShippingCost, ShippingCostTax, ShoppingCart, ShoppingCartBenefits, Status, StepCategory, StepCode, StepNotification, StepWorkflow, StepWorkflowAdditionalInfo, StepWorkflowGroup, Store, StoreCoupon, StoreCouponDetail, StoreLocation, StorePolygons, Suborder, TaxCalculation, TaxCalculations, TaxType, Token, TransitionWorkflow, URLImage, USDocumentType, UYDocumentType, UpdatedShippingAddress, User, UserCountry, UserSettings, UserType, VEDocumentType, Vendor, Wallet, WebhookWorkflow, Workflow, ZipCodeField };
|
|
3285
|
+
export { ARDocumentType, Account, AdditionalInfo, Alert, Allocation, ArtisnParams, ArtisnPlatform, ArtisnQuery, ArtisnRequest, ArtisnRequestBody, ArtisnRequestHeaders, ArtisnRequestMethod, Award, BODocumentType, BRDocumentType, Banner, BannerBenefits, BannerCoupon, BannerImage, BannerScope, BannerType, BaseBillingData, BaseField, BaseLivingPlace, BaseOrder, BasePaymentMethod, BaseProduct, BaseShippingAddress, BaseUser, BaseWeekDay, Benefit, BenefitData, BenefitTypes, BillTotal, BillTotalCategory, BillingData, CDNImage, CLDocumentType, CODocumentType, CardInscription, CardName, CartProduct, CartProductAnswer, CartProductQuestion, CartStore, CartTotals, Catalogue, Category, CategoryWithProducts, Code, CommonDocumentType, Country, CountryCode, CountryCurrency, CountrySummary, Coupon, CouponCategory, CouponType, CreditCardMapping, CurrencyCodes, DayOfWeek, Days, Delivery, DeliveryTimeUnit, Discount, DocumentType, ECDocumentType, Field, FieldRecord, Gender, GenericStoreLocation, Image, ImageFit, ImageManipulationConfig, ImageToFormat, Injection, InjectionDetail, IntegrationMessage, Issue, IssueAdditionalInfo, IssueHistory, LivingPlace, LivingPlaceToSave, MaritalStatus, Message, MetadataShipping, NewShippingAddress, Notification, NotificationAdditionalInfo, NotificationExtraData, NotificationListItem, NotificationPriority, NotificationStep, NotificationStore, NotificationUser, NotificationVendor, Objectify, OperatorInformation, Order, OrderBillProduct, OrderBillProductAdditionalInfo, OrderBillTotal, OrderCommonFields, OrderDetailShippingCost, OrderDetails, OrderPaymentMethod, OrderProduct, OrderProductAdditionalInfo, OrderProductAttributes, OrderProductBillTotal, OrderProductImage, OrderProductPriceCategory, OrderRetry, OrderRetryPaymentMethod, OrderShoppingCart, OrderStatus, OrderStep, OrderStepAdditionalInfo, OrderStepAdditionalInfoGroup, OrderStore, OrderStoreAdditionalInfo, OrderStoreDelivery, OrderUser, PEDocumentType, PYDocumentType, PaymentMethod, PaymentMethodByOrder, PaymentMethodName, PaymentProvider, PaymentStatus, Phone, PriceCategory, PriceCategoryTax, PriceCategoryType, Product, ProductAnswer, ProductAttributes, ProductCoupon, ProductDetails, ProductPrices, ProductQuestion, ProductStatus, ProductType, RandomImageConfig, ReadValue, Rule, Schedule, Service, Settings, ShippingAddress, ShippingCost, ShippingCostTax, ShoppingCart, ShoppingCartBenefits, Status, StepCategory, StepCode, StepNotification, StepWorkflow, StepWorkflowAdditionalInfo, StepWorkflowGroup, Store, StoreCoupon, StoreCouponDetail, StoreLocation, StorePolygons, Suborder, Tax, TaxCalculation, TaxCalculations, TaxType, Token, TransitionWorkflow, URLImage, USDocumentType, UYDocumentType, UpdatedShippingAddress, User, UserCountry, UserSettings, UserType, VEDocumentType, Vendor, Wallet, WebhookWorkflow, Workflow, ZipCodeField };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@artisan-commerce/types",
|
|
3
3
|
"description": "Artisn's types and interfaces library",
|
|
4
|
-
"version": "0.14.0-canary.
|
|
4
|
+
"version": "0.14.0-canary.41",
|
|
5
5
|
"types": "./dist/bundle.d.ts",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
},
|
|
24
24
|
"author": "Luis Eduardo Andrade",
|
|
25
25
|
"license": "MIT",
|
|
26
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "e08dfcb9523f9ee21b02d66486893c79215935af",
|
|
27
27
|
"nx": {
|
|
28
28
|
"targets": {
|
|
29
29
|
"build": {
|