b23-lib 2.1.1 → 2.1.2

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 (65) hide show
  1. package/dist/Auth/index.js.map +1 -1
  2. package/dist/Auth/index.mjs +1 -1
  3. package/dist/Classes/Cart.js +2 -2
  4. package/dist/Classes/Cart.js.map +1 -1
  5. package/dist/Classes/Cart.mjs +1 -1
  6. package/dist/Classes/Coupon.js.map +1 -1
  7. package/dist/Classes/Coupon.mjs +1 -1
  8. package/dist/Classes/Error.d.mts +4 -1
  9. package/dist/Classes/Error.d.ts +4 -1
  10. package/dist/Classes/Error.js +1 -1
  11. package/dist/Classes/Error.js.map +1 -1
  12. package/dist/Classes/Error.mjs +1 -1
  13. package/dist/Classes/ImageInfo.js.map +1 -1
  14. package/dist/Classes/ImageInfo.mjs +1 -1
  15. package/dist/Classes/Inventory.js.map +1 -1
  16. package/dist/Classes/Inventory.mjs +1 -1
  17. package/dist/Classes/LineItem.d.mts +5 -0
  18. package/dist/Classes/LineItem.d.ts +5 -0
  19. package/dist/Classes/LineItem.js +2 -2
  20. package/dist/Classes/LineItem.js.map +1 -1
  21. package/dist/Classes/LineItem.mjs +1 -1
  22. package/dist/Classes/Order.js +2 -2
  23. package/dist/Classes/Order.js.map +1 -1
  24. package/dist/Classes/Order.mjs +1 -1
  25. package/dist/Classes/Price.js.map +1 -1
  26. package/dist/Classes/Price.mjs +1 -1
  27. package/dist/Classes/Product.js +1 -1
  28. package/dist/Classes/Product.js.map +1 -1
  29. package/dist/Classes/Product.mjs +1 -1
  30. package/dist/Classes/ShoppingContainer.js +2 -2
  31. package/dist/Classes/ShoppingContainer.js.map +1 -1
  32. package/dist/Classes/ShoppingContainer.mjs +1 -1
  33. package/dist/Classes/TaxRule.js.map +1 -1
  34. package/dist/Classes/TaxRule.mjs +1 -1
  35. package/dist/Classes/TieredPrice.js.map +1 -1
  36. package/dist/Classes/TieredPrice.mjs +1 -1
  37. package/dist/{chunk-TUT4BB3Z.mjs → chunk-ARMBZF3E.mjs} +3 -3
  38. package/dist/{chunk-TUT4BB3Z.mjs.map → chunk-ARMBZF3E.mjs.map} +1 -1
  39. package/dist/chunk-AWZ6KRLF.mjs +2 -0
  40. package/dist/{chunk-ZAHR3SJ2.mjs.map → chunk-AWZ6KRLF.mjs.map} +1 -1
  41. package/dist/chunk-DM2BJS2X.mjs +2 -0
  42. package/dist/chunk-DM2BJS2X.mjs.map +1 -0
  43. package/dist/{chunk-FGXEJC4J.mjs → chunk-E46AVR22.mjs} +2 -2
  44. package/dist/{chunk-FGXEJC4J.mjs.map → chunk-E46AVR22.mjs.map} +1 -1
  45. package/dist/chunk-JHELVQYY.mjs +2 -0
  46. package/dist/chunk-JHELVQYY.mjs.map +1 -0
  47. package/dist/chunk-SFUOYZ3L.mjs +2 -0
  48. package/dist/{chunk-ZVLJ5BAG.mjs.map → chunk-SFUOYZ3L.mjs.map} +1 -1
  49. package/dist/chunk-TJ7AZBND.mjs +2 -0
  50. package/dist/{chunk-R32ZSPV6.mjs.map → chunk-TJ7AZBND.mjs.map} +1 -1
  51. package/dist/chunk-WS7ZY5ZZ.mjs +2 -0
  52. package/dist/{chunk-GMGMQ2NX.mjs.map → chunk-WS7ZY5ZZ.mjs.map} +1 -1
  53. package/dist/{chunk-7LEGYAOJ.mjs → chunk-WSUPVXRZ.mjs} +2 -2
  54. package/dist/{chunk-7LEGYAOJ.mjs.map → chunk-WSUPVXRZ.mjs.map} +1 -1
  55. package/dist/index.js.map +1 -1
  56. package/dist/index.mjs +1 -1
  57. package/package.json +1 -1
  58. package/dist/chunk-7NLMXN4H.mjs +0 -2
  59. package/dist/chunk-7NLMXN4H.mjs.map +0 -1
  60. package/dist/chunk-DGFO2MH6.mjs +0 -2
  61. package/dist/chunk-DGFO2MH6.mjs.map +0 -1
  62. package/dist/chunk-GMGMQ2NX.mjs +0 -2
  63. package/dist/chunk-R32ZSPV6.mjs +0 -2
  64. package/dist/chunk-ZAHR3SJ2.mjs +0 -2
  65. package/dist/chunk-ZVLJ5BAG.mjs +0 -2
@@ -0,0 +1,2 @@
1
+ import {i,h}from'./chunk-72DR3HF2.mjs';import {q,r,s,t}from'./chunk-JHELVQYY.mjs';var d=class t$1{#e;amount;currency;constructor(e){if(this.#e="PriceModel",e.amount<0)throw new q("Amount cannot be negative.");if(!e.currency)throw new r("Currency code is required.");this.amount=e.amount,this.currency=e.currency;}get kind(){return this.#e}static isPriceModel(e){return typeof e=="object"&&e!==null&&e.kind==="PriceModel"}getCurrency(){return this.currency}getAmount(){return this.amount}getDetails(){return {amount:this.amount,currency:this.currency}}compareTo(e){if(t$1.isPriceModel(e)){if(this.currency!==e.getCurrency())throw new s("Cannot compare prices in different currencies.")}else throw new t("Must be a PriceModel instance.");return this.amount-e.getAmount()}add(e){if(t$1.isPriceModel(e)){if(this.currency!==e.getCurrency())throw new s("Cannot add prices in different currencies.")}else throw new t("Must be a PriceModel instance.");return new t$1({amount:this.amount+e.getAmount(),currency:this.currency})}subtract(e){if(t$1.isPriceModel(e)){if(this.currency!==e.getCurrency())throw new s("Cannot subtract prices in different currencies.")}else throw new t("Must be a PriceModel instance.");return new t$1({amount:this.amount-e.getAmount(),currency:this.currency})}multiply(e){if(t$1.isPriceModel(e)){if(this.currency!==e.getCurrency())throw new s("Cannot multiply prices in different currencies.");return new t$1({amount:this.amount*e.getAmount(),currency:this.currency})}else if(typeof e=="number"&&e>=0)return new t$1({amount:this.amount*e,currency:this.currency});throw new t("Must be a non-negative number.")}divide(e){if(t$1.isPriceModel(e)){if(this.currency!==e.getCurrency())throw new s("Cannot divide prices in different currencies.");return new t$1({amount:this.amount/e.getAmount(),currency:this.currency})}else if(typeof e=="number"&&e>0)return new t$1({amount:this.amount/e,currency:this.currency});throw new t("Must be a positive number.")}min(...e){if(e.length===0)throw new t("Must provide at least one PriceModel.");return e.reduce((r,n)=>{if(t$1.isPriceModel(n)){if(r.getCurrency()!==n.getCurrency())throw new s("Cannot compare prices in different currencies.")}else throw new t("Must be a PriceModel instance.");return r.compareTo(n)<0?r:n})}max(...e){if(e.length===0)throw new t("Must provide at least one PriceModel.");return e.reduce((r,n)=>{if(t$1.isPriceModel(n)){if(r.getCurrency()!==n.getCurrency())throw new s("Cannot compare prices in different currencies.")}else throw new t("Must be a PriceModel instance.");return r.compareTo(n)>0?r:n})}zero(){return new t$1({currency:this.currency,amount:0})}isZero(){return this.amount===0}round(){return new t$1({currency:this.currency,amount:this.getRoundedAmount()})}getRoundedAmount(){return t$1.getRoundedAmount(this.amount,this.currency)}getFormattedString(){return t$1.getFormattedString(this.amount,this.currency)}toString(){return this.getFormattedString()}static getFormattedString(e,r$1,n={displayAsInteger:!1,style:"currency",currencyDisplay:"symbol"}){let c=i[r$1];if(!r$1||!c)throw new r("Invalid currency code for formatting.");let o=e,s=n.displayAsInteger?0:t$1.getDecimalPlaces(r$1),h$1={style:n.style??"currency",currency:r$1,signDisplay:"never",currencyDisplay:n.currencyDisplay,minimumFractionDigits:s,maximumFractionDigits:s};n.displayAsInteger&&(o=Math.ceil(o));try{return new Intl.NumberFormat(c,h$1).format(o)}catch(g){return console.error(`Error formatting price for currency "${r$1}" and locale "${c}":`,g),`${h[r$1]??r$1} ${t$1.addThousandSeparators(o.toFixed(s))}`}}static getDecimalPlaces(e){switch(e){case"INR":default:return 2}}static addThousandSeparators(e){let r=e.split("."),n=r[0],c=r.length>1?"."+r[1]:"";return n.replace(/\B(?=(\d{3})+(?!\d))/g,",")+c}static getRoundedAmount(e,r$1){if(e<0)throw new q("Amount cannot be negative for rounding.");if(r$1===void 0)throw new r("Invalid currency code for rounding.");let n=t$1.getDecimalPlaces(r$1),c=Math.pow(10,n);return Math.round(e*c)/c}};export{d as a};//# sourceMappingURL=chunk-TJ7AZBND.mjs.map
2
+ //# sourceMappingURL=chunk-TJ7AZBND.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/Classes/Price.ts"],"names":["PriceModel","_PriceModel","#kind","data","InvalidPriceAmountError","InvalidCurrencyCodeError","obj","priceModel","CurrencyMismatchError","InvalidArgumentError","factor","divisor","priceModels","minPrice","currentPrice","maxPrice","amount","currency","options","locale","CurrencyLocaleMap","valueToFormat","fractionDigits","formattingOptions","error","CurrencySymbolMap","numStr","parts","integerPart","decimalPart","decimalPlaces","multiplier"],"mappings":"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","file":"chunk-R32ZSPV6.mjs","sourcesContent":["import { CurrencyCode } from \"./Common\";\r\nimport { CurrencyLocaleMap, CurrencySymbolMap, OperationalCountryCurrency } from \"./Enum\";\r\nimport {\r\n InvalidPriceAmountError,\r\n InvalidCurrencyCodeError,\r\n CurrencyMismatchError,\r\n InvalidArgumentError\r\n} from \"./Error\";\r\n\r\nexport type PriceAttributes = {\r\n amount: number;\r\n currency: CurrencyCode;\r\n}\r\n\r\nexport type PriceData = PriceAttributes;\r\n\r\nexport default class PriceModel {\r\n #kind: string;\r\n protected amount: number;\r\n protected currency: CurrencyCode;\r\n\r\n /**\r\n * Creates an instance of PriceModel, storing the currency-correct rounded price.\r\n * @param amount - The initial price value.\r\n * @param currency - The currency code used for rounding and determining the currency symbol.\r\n * @throws {Error} If price is negative or country/currency mapping is missing.\r\n */\r\n constructor(data: PriceAttributes) {\r\n this.#kind = \"PriceModel\";\r\n if (data.amount < 0) {\r\n throw new InvalidPriceAmountError(\"Amount cannot be negative.\");\r\n }\r\n\r\n if (!data.currency) {\r\n throw new InvalidCurrencyCodeError(\"Currency code is required.\");\r\n }\r\n\r\n this.amount = data.amount;\r\n this.currency = data.currency;\r\n }\r\n\r\n get kind() {\r\n return this.#kind;\r\n }\r\n\r\n static isPriceModel(obj: unknown): obj is PriceModel {\r\n return typeof obj === \"object\" &&\r\n obj !== null &&\r\n (obj as any).kind === \"PriceModel\";\r\n }\r\n\r\n /**\r\n * Gets the currency associated with this price instance.\r\n * @returns The CurrencyCode enum value.\r\n */\r\n public getCurrency(): CurrencyCode {\r\n return this.currency;\r\n }\r\n\r\n /**\r\n * Returns the raw numeric price value.\r\n */\r\n public getAmount(): number {\r\n return this.amount;\r\n }\r\n\r\n /**\r\n *\r\n * @returns PriceData\r\n */\r\n public getDetails(): PriceData {\r\n return {\r\n amount: this.amount,\r\n currency: this.currency\r\n }\r\n }\r\n\r\n /**\r\n * Compares this price with another {@link PriceModel} instance.\r\n *\r\n * The comparison is performed using the numeric price value and is only valid\r\n * when both prices are expressed in the same currency.\r\n *\r\n * ### Comparison result:\r\n * - Returns a **negative number** if this price is **less than** `priceModel`\r\n * - Returns **zero** if both prices are **equal**\r\n * - Returns a **positive number** if this price is **greater than** `priceModel`\r\n *\r\n * @param priceModel - The {@link PriceModel} instance to compare against.\r\n *\r\n * @returns\r\n * A signed number representing the comparison result:\r\n * - `< 0` → this price is lower\r\n * - `0` → prices are equal\r\n * - `> 0` → this price is higher\r\n *\r\n * @throws {Error}\r\n * Throws an error if:\r\n * - `priceModel` is not an instance of {@link PriceModel}\r\n * - The currencies of the two prices do not match\r\n *\r\n * @example\r\n * ```ts\r\n * const a = new PriceModel(\"USD\", 100);\r\n * const b = new PriceModel(\"USD\", 150);\r\n *\r\n * a.compareTo(b); // -50\r\n * b.compareTo(a); // 50\r\n * a.compareTo(a); // 0\r\n * ```\r\n */\r\n public compareTo(priceModel: PriceModel): number {\r\n if (!PriceModel.isPriceModel(priceModel)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (this.currency !== priceModel.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot compare prices in different currencies.\");\r\n }\r\n\r\n return this.amount - priceModel.getAmount();\r\n }\r\n\r\n public add(priceModel: PriceModel): PriceModel {\r\n if (!PriceModel.isPriceModel(priceModel)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (this.currency !== priceModel.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot add prices in different currencies.\");\r\n }\r\n\r\n return new PriceModel({\r\n amount: this.amount + priceModel.getAmount(),\r\n currency: this.currency\r\n });\r\n }\r\n\r\n public subtract(priceModel: PriceModel): PriceModel {\r\n if (!PriceModel.isPriceModel(priceModel)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (this.currency !== priceModel.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot subtract prices in different currencies.\");\r\n }\r\n\r\n return new PriceModel({\r\n amount: this.amount - priceModel.getAmount(),\r\n currency: this.currency\r\n });\r\n }\r\n\r\n public multiply(factor: number | PriceModel): PriceModel {\r\n if (PriceModel.isPriceModel(factor)) {\r\n if (this.currency !== factor.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot multiply prices in different currencies.\");\r\n }\r\n return new PriceModel({\r\n amount: this.amount * factor.getAmount(),\r\n currency: this.currency\r\n });\r\n } else if (typeof factor === \"number\" && factor >= 0) {\r\n return new PriceModel({\r\n amount: this.amount * factor,\r\n currency: this.currency\r\n });\r\n }\r\n\r\n throw new InvalidArgumentError(\"Must be a non-negative number.\");\r\n }\r\n\r\n public divide(divisor: number | PriceModel): PriceModel {\r\n if (PriceModel.isPriceModel(divisor)) {\r\n if (this.currency !== divisor.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot divide prices in different currencies.\");\r\n }\r\n return new PriceModel({\r\n amount: this.amount / divisor.getAmount(),\r\n currency: this.currency\r\n });\r\n } else if (typeof divisor === \"number\" && divisor > 0) {\r\n return new PriceModel({\r\n amount: this.amount / divisor,\r\n currency: this.currency\r\n });\r\n }\r\n\r\n throw new InvalidArgumentError(\"Must be a positive number.\");\r\n }\r\n\r\n public min(...priceModels: PriceModel[]): PriceModel {\r\n if (priceModels.length === 0) {\r\n throw new InvalidArgumentError(\"Must provide at least one PriceModel.\");\r\n }\r\n\r\n return priceModels.reduce((minPrice, currentPrice) => {\r\n if (!PriceModel.isPriceModel(currentPrice)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (minPrice.getCurrency() !== currentPrice.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot compare prices in different currencies.\");\r\n }\r\n\r\n return minPrice.compareTo(currentPrice) < 0 ? minPrice : currentPrice;\r\n });\r\n }\r\n\r\n public max(...priceModels: PriceModel[]): PriceModel {\r\n if (priceModels.length === 0) {\r\n throw new InvalidArgumentError(\"Must provide at least one PriceModel.\");\r\n }\r\n\r\n return priceModels.reduce((maxPrice, currentPrice) => {\r\n if (!PriceModel.isPriceModel(currentPrice)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (maxPrice.getCurrency() !== currentPrice.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot compare prices in different currencies.\");\r\n }\r\n\r\n return maxPrice.compareTo(currentPrice) > 0 ? maxPrice : currentPrice;\r\n });\r\n }\r\n\r\n /**\r\n * Gets a zero value PriceModel for the same currency.\r\n * @returns A PriceModel instance representing zero in the same currency.\r\n */\r\n public zero(): PriceModel {\r\n return new PriceModel({\r\n currency: this.currency,\r\n amount: 0\r\n });\r\n }\r\n\r\n /**\r\n * Checks if the price is zero.\r\n * @returns True if the price is zero, false otherwise.\r\n */\r\n public isZero(): boolean {\r\n return this.amount === 0;\r\n }\r\n\r\n\r\n public round(): PriceModel {\r\n return new PriceModel({\r\n currency: this.currency,\r\n amount: this.getRoundedAmount()\r\n });\r\n }\r\n /**\r\n * Gets the rounded price value based on standard currency rules.\r\n * @returns The numeric price, rounded according to its currency's typical decimal places.\r\n */\r\n public getRoundedAmount(): number {\r\n return PriceModel.getRoundedAmount(this.amount, this.currency);\r\n }\r\n\r\n /**\r\n * Gets a locale-aware formatted display string for the price stored in this instance.\r\n * Uses the static `PriceModel.getFormattedString` method for the actual formatting.\r\n * @returns The formatted price string according to locale rules.\r\n */\r\n public getFormattedString() {\r\n return PriceModel.getFormattedString(this.amount, this.currency);\r\n }\r\n\r\n /**\r\n * Uses the static `PriceModel.getFormattedString` method for the actual formatting.\r\n * @returns The formatted price string according to locale rules.\r\n */\r\n toString() {\r\n return this.getFormattedString();\r\n }\r\n\r\n\r\n /**\r\n * Gets a locale-aware formatted display string for the amount.\r\n * Uses Intl.NumberFormat for accurate formatting based on locale and currency.\r\n * @param amount - The initial amount value.\r\n * @param currency - The currency code for formatting.\r\n * @param options - Configuration options for formatting.\r\n * @param options.displayAsInteger - If true, the formatted string will show the amount rounded to the next nearest integer (no decimals). Defaults to false.\r\n * @param options.style - The style of formatting, either 'currency' or 'decimal'. Defaults to 'currency'.\r\n * @param options.currencyDisplay - The display format for the currency symbol. Options are 'symbol', 'narrowSymbol', 'code', or 'name'. Defaults to 'symbol'.\r\n * @returns The formatted price string according to locale rules.\r\n * @throws {Error} If currency code is invalid.\r\n */\r\n static getFormattedString(amount: number, currency: CurrencyCode, options: {\r\n displayAsInteger?: boolean,\r\n style?: 'currency' | 'decimal',\r\n currencyDisplay?: 'symbol' | 'narrowSymbol' | 'code' | 'name'\r\n } = {\r\n displayAsInteger: false,\r\n style: 'currency',\r\n currencyDisplay: 'symbol'\r\n }): string {\r\n\r\n const locale = CurrencyLocaleMap[currency];\r\n if (!currency || !locale) {\r\n throw new InvalidCurrencyCodeError('Invalid currency code for formatting.');\r\n }\r\n\r\n let valueToFormat = amount;\r\n const fractionDigits = options.displayAsInteger ? 0 : PriceModel.getDecimalPlaces(currency);\r\n\r\n let formattingOptions: Intl.NumberFormatOptions = {\r\n style: options.style ?? 'currency',\r\n currency: currency,\r\n signDisplay: 'never',\r\n currencyDisplay: options.currencyDisplay,\r\n minimumFractionDigits: fractionDigits,\r\n maximumFractionDigits: fractionDigits,\r\n };\r\n\r\n if (options.displayAsInteger) {\r\n valueToFormat = Math.ceil(valueToFormat);\r\n }\r\n\r\n try {\r\n return new Intl.NumberFormat(locale, formattingOptions).format(valueToFormat);\r\n } catch (error) {\r\n console.error(`Error formatting price for currency \"${currency}\" and locale \"${locale}\":`, error);\r\n // Basic fallback without symbol if Intl fails completely\r\n return `${CurrencySymbolMap[currency] ?? currency} ${PriceModel.addThousandSeparators(valueToFormat.toFixed(fractionDigits))}`;\r\n }\r\n }\r\n\r\n /**\r\n * Helper method to determine standard decimal places for a currency.\r\n * @param currency - The currency code.\r\n * @returns The number of decimal places (0, 2, or 3 based on common rules).\r\n */\r\n private static getDecimalPlaces(currency: CurrencyCode): number {\r\n switch (currency) {\r\n case OperationalCountryCurrency.INR:\r\n default:\r\n return 2;\r\n }\r\n }\r\n\r\n /**\r\n * Adds basic thousand separators (commas) to a number string.\r\n * Does not handle different locale separators (e.g., periods, spaces).\r\n * @param numStr - The number string (potentially with decimals).\r\n * @returns The number string with commas added.\r\n */\r\n private static addThousandSeparators(numStr: string): string {\r\n const parts = numStr.split('.');\r\n const integerPart = parts[0];\r\n const decimalPart = parts.length > 1 ? '.' + parts[1] : '';\r\n\r\n const formattedInteger = integerPart.replace(/\\B(?=(\\d{3})+(?!\\d))/g, ',');\r\n return formattedInteger + decimalPart;\r\n }\r\n\r\n /**\r\n * Rounds a price value according to the standard decimal places\r\n * for the currency associated with the given country.\r\n *\r\n * @param price - The price value to round. Must be a non-negative number.\r\n * @param currency - The currency code to determine the rounding rules.\r\n * @returns The rounded price as a number.\r\n * @throws {Error} If the price is negative or currency is invalid.\r\n */\r\n static getRoundedAmount(amount: number, currency: CurrencyCode): number {\r\n if (amount < 0) {\r\n throw new InvalidPriceAmountError(\"Amount cannot be negative for rounding.\");\r\n }\r\n\r\n if (currency === undefined) {\r\n throw new InvalidCurrencyCodeError('Invalid currency code for rounding.');\r\n }\r\n\r\n const decimalPlaces = PriceModel.getDecimalPlaces(currency);\r\n const multiplier = Math.pow(10, decimalPlaces);\r\n const roundedValue = Math.round(amount * multiplier) / multiplier;\r\n\r\n return roundedValue;\r\n }\r\n}"]}
1
+ {"version":3,"sources":["../src/Classes/Price.ts"],"names":["PriceModel","_PriceModel","#kind","data","InvalidPriceAmountError","InvalidCurrencyCodeError","obj","priceModel","CurrencyMismatchError","InvalidArgumentError","factor","divisor","priceModels","minPrice","currentPrice","maxPrice","amount","currency","options","locale","CurrencyLocaleMap","valueToFormat","fractionDigits","formattingOptions","error","CurrencySymbolMap","numStr","parts","integerPart","decimalPart","decimalPlaces","multiplier"],"mappings":"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","file":"chunk-TJ7AZBND.mjs","sourcesContent":["import { CurrencyCode } from \"./Common\";\r\nimport { CurrencyLocaleMap, CurrencySymbolMap, OperationalCountryCurrency } from \"./Enum\";\r\nimport {\r\n InvalidPriceAmountError,\r\n InvalidCurrencyCodeError,\r\n CurrencyMismatchError,\r\n InvalidArgumentError\r\n} from \"./Error\";\r\n\r\nexport type PriceAttributes = {\r\n amount: number;\r\n currency: CurrencyCode;\r\n}\r\n\r\nexport type PriceData = PriceAttributes;\r\n\r\nexport default class PriceModel {\r\n #kind: string;\r\n protected amount: number;\r\n protected currency: CurrencyCode;\r\n\r\n /**\r\n * Creates an instance of PriceModel, storing the currency-correct rounded price.\r\n * @param amount - The initial price value.\r\n * @param currency - The currency code used for rounding and determining the currency symbol.\r\n * @throws {Error} If price is negative or country/currency mapping is missing.\r\n */\r\n constructor(data: PriceAttributes) {\r\n this.#kind = \"PriceModel\";\r\n if (data.amount < 0) {\r\n throw new InvalidPriceAmountError(\"Amount cannot be negative.\");\r\n }\r\n\r\n if (!data.currency) {\r\n throw new InvalidCurrencyCodeError(\"Currency code is required.\");\r\n }\r\n\r\n this.amount = data.amount;\r\n this.currency = data.currency;\r\n }\r\n\r\n get kind() {\r\n return this.#kind;\r\n }\r\n\r\n static isPriceModel(obj: unknown): obj is PriceModel {\r\n return typeof obj === \"object\" &&\r\n obj !== null &&\r\n (obj as any).kind === \"PriceModel\";\r\n }\r\n\r\n /**\r\n * Gets the currency associated with this price instance.\r\n * @returns The CurrencyCode enum value.\r\n */\r\n public getCurrency(): CurrencyCode {\r\n return this.currency;\r\n }\r\n\r\n /**\r\n * Returns the raw numeric price value.\r\n */\r\n public getAmount(): number {\r\n return this.amount;\r\n }\r\n\r\n /**\r\n *\r\n * @returns PriceData\r\n */\r\n public getDetails(): PriceData {\r\n return {\r\n amount: this.amount,\r\n currency: this.currency\r\n }\r\n }\r\n\r\n /**\r\n * Compares this price with another {@link PriceModel} instance.\r\n *\r\n * The comparison is performed using the numeric price value and is only valid\r\n * when both prices are expressed in the same currency.\r\n *\r\n * ### Comparison result:\r\n * - Returns a **negative number** if this price is **less than** `priceModel`\r\n * - Returns **zero** if both prices are **equal**\r\n * - Returns a **positive number** if this price is **greater than** `priceModel`\r\n *\r\n * @param priceModel - The {@link PriceModel} instance to compare against.\r\n *\r\n * @returns\r\n * A signed number representing the comparison result:\r\n * - `< 0` → this price is lower\r\n * - `0` → prices are equal\r\n * - `> 0` → this price is higher\r\n *\r\n * @throws {Error}\r\n * Throws an error if:\r\n * - `priceModel` is not an instance of {@link PriceModel}\r\n * - The currencies of the two prices do not match\r\n *\r\n * @example\r\n * ```ts\r\n * const a = new PriceModel(\"USD\", 100);\r\n * const b = new PriceModel(\"USD\", 150);\r\n *\r\n * a.compareTo(b); // -50\r\n * b.compareTo(a); // 50\r\n * a.compareTo(a); // 0\r\n * ```\r\n */\r\n public compareTo(priceModel: PriceModel): number {\r\n if (!PriceModel.isPriceModel(priceModel)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (this.currency !== priceModel.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot compare prices in different currencies.\");\r\n }\r\n\r\n return this.amount - priceModel.getAmount();\r\n }\r\n\r\n public add(priceModel: PriceModel): PriceModel {\r\n if (!PriceModel.isPriceModel(priceModel)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (this.currency !== priceModel.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot add prices in different currencies.\");\r\n }\r\n\r\n return new PriceModel({\r\n amount: this.amount + priceModel.getAmount(),\r\n currency: this.currency\r\n });\r\n }\r\n\r\n public subtract(priceModel: PriceModel): PriceModel {\r\n if (!PriceModel.isPriceModel(priceModel)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (this.currency !== priceModel.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot subtract prices in different currencies.\");\r\n }\r\n\r\n return new PriceModel({\r\n amount: this.amount - priceModel.getAmount(),\r\n currency: this.currency\r\n });\r\n }\r\n\r\n public multiply(factor: number | PriceModel): PriceModel {\r\n if (PriceModel.isPriceModel(factor)) {\r\n if (this.currency !== factor.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot multiply prices in different currencies.\");\r\n }\r\n return new PriceModel({\r\n amount: this.amount * factor.getAmount(),\r\n currency: this.currency\r\n });\r\n } else if (typeof factor === \"number\" && factor >= 0) {\r\n return new PriceModel({\r\n amount: this.amount * factor,\r\n currency: this.currency\r\n });\r\n }\r\n\r\n throw new InvalidArgumentError(\"Must be a non-negative number.\");\r\n }\r\n\r\n public divide(divisor: number | PriceModel): PriceModel {\r\n if (PriceModel.isPriceModel(divisor)) {\r\n if (this.currency !== divisor.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot divide prices in different currencies.\");\r\n }\r\n return new PriceModel({\r\n amount: this.amount / divisor.getAmount(),\r\n currency: this.currency\r\n });\r\n } else if (typeof divisor === \"number\" && divisor > 0) {\r\n return new PriceModel({\r\n amount: this.amount / divisor,\r\n currency: this.currency\r\n });\r\n }\r\n\r\n throw new InvalidArgumentError(\"Must be a positive number.\");\r\n }\r\n\r\n public min(...priceModels: PriceModel[]): PriceModel {\r\n if (priceModels.length === 0) {\r\n throw new InvalidArgumentError(\"Must provide at least one PriceModel.\");\r\n }\r\n\r\n return priceModels.reduce((minPrice, currentPrice) => {\r\n if (!PriceModel.isPriceModel(currentPrice)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (minPrice.getCurrency() !== currentPrice.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot compare prices in different currencies.\");\r\n }\r\n\r\n return minPrice.compareTo(currentPrice) < 0 ? minPrice : currentPrice;\r\n });\r\n }\r\n\r\n public max(...priceModels: PriceModel[]): PriceModel {\r\n if (priceModels.length === 0) {\r\n throw new InvalidArgumentError(\"Must provide at least one PriceModel.\");\r\n }\r\n\r\n return priceModels.reduce((maxPrice, currentPrice) => {\r\n if (!PriceModel.isPriceModel(currentPrice)) {\r\n throw new InvalidArgumentError(\"Must be a PriceModel instance.\");\r\n } else if (maxPrice.getCurrency() !== currentPrice.getCurrency()) {\r\n throw new CurrencyMismatchError(\"Cannot compare prices in different currencies.\");\r\n }\r\n\r\n return maxPrice.compareTo(currentPrice) > 0 ? maxPrice : currentPrice;\r\n });\r\n }\r\n\r\n /**\r\n * Gets a zero value PriceModel for the same currency.\r\n * @returns A PriceModel instance representing zero in the same currency.\r\n */\r\n public zero(): PriceModel {\r\n return new PriceModel({\r\n currency: this.currency,\r\n amount: 0\r\n });\r\n }\r\n\r\n /**\r\n * Checks if the price is zero.\r\n * @returns True if the price is zero, false otherwise.\r\n */\r\n public isZero(): boolean {\r\n return this.amount === 0;\r\n }\r\n\r\n\r\n public round(): PriceModel {\r\n return new PriceModel({\r\n currency: this.currency,\r\n amount: this.getRoundedAmount()\r\n });\r\n }\r\n /**\r\n * Gets the rounded price value based on standard currency rules.\r\n * @returns The numeric price, rounded according to its currency's typical decimal places.\r\n */\r\n public getRoundedAmount(): number {\r\n return PriceModel.getRoundedAmount(this.amount, this.currency);\r\n }\r\n\r\n /**\r\n * Gets a locale-aware formatted display string for the price stored in this instance.\r\n * Uses the static `PriceModel.getFormattedString` method for the actual formatting.\r\n * @returns The formatted price string according to locale rules.\r\n */\r\n public getFormattedString() {\r\n return PriceModel.getFormattedString(this.amount, this.currency);\r\n }\r\n\r\n /**\r\n * Uses the static `PriceModel.getFormattedString` method for the actual formatting.\r\n * @returns The formatted price string according to locale rules.\r\n */\r\n toString() {\r\n return this.getFormattedString();\r\n }\r\n\r\n\r\n /**\r\n * Gets a locale-aware formatted display string for the amount.\r\n * Uses Intl.NumberFormat for accurate formatting based on locale and currency.\r\n * @param amount - The initial amount value.\r\n * @param currency - The currency code for formatting.\r\n * @param options - Configuration options for formatting.\r\n * @param options.displayAsInteger - If true, the formatted string will show the amount rounded to the next nearest integer (no decimals). Defaults to false.\r\n * @param options.style - The style of formatting, either 'currency' or 'decimal'. Defaults to 'currency'.\r\n * @param options.currencyDisplay - The display format for the currency symbol. Options are 'symbol', 'narrowSymbol', 'code', or 'name'. Defaults to 'symbol'.\r\n * @returns The formatted price string according to locale rules.\r\n * @throws {Error} If currency code is invalid.\r\n */\r\n static getFormattedString(amount: number, currency: CurrencyCode, options: {\r\n displayAsInteger?: boolean,\r\n style?: 'currency' | 'decimal',\r\n currencyDisplay?: 'symbol' | 'narrowSymbol' | 'code' | 'name'\r\n } = {\r\n displayAsInteger: false,\r\n style: 'currency',\r\n currencyDisplay: 'symbol'\r\n }): string {\r\n\r\n const locale = CurrencyLocaleMap[currency];\r\n if (!currency || !locale) {\r\n throw new InvalidCurrencyCodeError('Invalid currency code for formatting.');\r\n }\r\n\r\n let valueToFormat = amount;\r\n const fractionDigits = options.displayAsInteger ? 0 : PriceModel.getDecimalPlaces(currency);\r\n\r\n let formattingOptions: Intl.NumberFormatOptions = {\r\n style: options.style ?? 'currency',\r\n currency: currency,\r\n signDisplay: 'never',\r\n currencyDisplay: options.currencyDisplay,\r\n minimumFractionDigits: fractionDigits,\r\n maximumFractionDigits: fractionDigits,\r\n };\r\n\r\n if (options.displayAsInteger) {\r\n valueToFormat = Math.ceil(valueToFormat);\r\n }\r\n\r\n try {\r\n return new Intl.NumberFormat(locale, formattingOptions).format(valueToFormat);\r\n } catch (error) {\r\n console.error(`Error formatting price for currency \"${currency}\" and locale \"${locale}\":`, error);\r\n // Basic fallback without symbol if Intl fails completely\r\n return `${CurrencySymbolMap[currency] ?? currency} ${PriceModel.addThousandSeparators(valueToFormat.toFixed(fractionDigits))}`;\r\n }\r\n }\r\n\r\n /**\r\n * Helper method to determine standard decimal places for a currency.\r\n * @param currency - The currency code.\r\n * @returns The number of decimal places (0, 2, or 3 based on common rules).\r\n */\r\n private static getDecimalPlaces(currency: CurrencyCode): number {\r\n switch (currency) {\r\n case OperationalCountryCurrency.INR:\r\n default:\r\n return 2;\r\n }\r\n }\r\n\r\n /**\r\n * Adds basic thousand separators (commas) to a number string.\r\n * Does not handle different locale separators (e.g., periods, spaces).\r\n * @param numStr - The number string (potentially with decimals).\r\n * @returns The number string with commas added.\r\n */\r\n private static addThousandSeparators(numStr: string): string {\r\n const parts = numStr.split('.');\r\n const integerPart = parts[0];\r\n const decimalPart = parts.length > 1 ? '.' + parts[1] : '';\r\n\r\n const formattedInteger = integerPart.replace(/\\B(?=(\\d{3})+(?!\\d))/g, ',');\r\n return formattedInteger + decimalPart;\r\n }\r\n\r\n /**\r\n * Rounds a price value according to the standard decimal places\r\n * for the currency associated with the given country.\r\n *\r\n * @param price - The price value to round. Must be a non-negative number.\r\n * @param currency - The currency code to determine the rounding rules.\r\n * @returns The rounded price as a number.\r\n * @throws {Error} If the price is negative or currency is invalid.\r\n */\r\n static getRoundedAmount(amount: number, currency: CurrencyCode): number {\r\n if (amount < 0) {\r\n throw new InvalidPriceAmountError(\"Amount cannot be negative for rounding.\");\r\n }\r\n\r\n if (currency === undefined) {\r\n throw new InvalidCurrencyCodeError('Invalid currency code for rounding.');\r\n }\r\n\r\n const decimalPlaces = PriceModel.getDecimalPlaces(currency);\r\n const multiplier = Math.pow(10, decimalPlaces);\r\n const roundedValue = Math.round(amount * multiplier) / multiplier;\r\n\r\n return roundedValue;\r\n }\r\n}"]}
@@ -0,0 +1,2 @@
1
+ import {a}from'./chunk-AWZ6KRLF.mjs';import {a as a$1}from'./chunk-TJ7AZBND.mjs';import {e}from'./chunk-72DR3HF2.mjs';import {t}from'./chunk-JHELVQYY.mjs';import {b as b$1}from'./chunk-6KCJVEZD.mjs';var y=(t=>(t.COUPON="coupon",t.AUTOMATIC="automatic",t))(y||{}),M=(t=>(t.FLAT="flat",t.PERCENTAGE="percentage",t))(M||{}),b=(t=>(t.SHIPPING="SHIPPING",t.CUSTOMER="CUSTOMER",t))(b||{}),P=(t=>(t.ALL="all",t.FTB="ftb",t))(P||{}),p=class extends b$1{couponCode;name;description;type;customerId;validFrom;validTo;minCartValue;maxCartDiscount;discountMethod;percentageValue;applicableTo;category;constructor(e,t$1=new Date){if(super(e,t$1),this.couponCode=e.couponCode,this.name=a.deepClone(e.name),this.description=a.deepClone(e.description),this.type=e.type,this.customerId=e.customerId,this.validFrom=e.validFrom&&Date.parse(e.validFrom)?new Date(e.validFrom).toISOString():t$1.toISOString(),this.validTo=e.validTo&&Date.parse(e.validTo)?new Date(e.validTo).toISOString():t$1.toISOString(),this.minCartValue=Object.keys(e.minCartValue).reduce((o,i)=>{let r=e.minCartValue[i];return r&&(o[i]=new a$1(r)),o},{}),this.maxCartDiscount=Object.keys(e.maxCartDiscount).reduce((o,i)=>{let r=e.maxCartDiscount[i];return r&&(o[i]=new a$1(r)),o},{}),this.discountMethod=e.discountMethod,this.percentageValue=e.percentageValue??0,this.percentageValue>100)throw new t("Percentage value cannot be greater than 100");this.applicableTo=e.applicableTo,this.category=e.category;}getCode(){return this.couponCode}getName(e$1){return e$1?this.name[e$1]??this.name[e[e$1]]??this.name.en:{...this.name}}getDescription(e$1){return e$1?this.description[e$1]??this.description[e[e$1]]??this.description.en:{...this.description}}getType(){return this.type}getCustomerId(){return this.customerId??""}getValidFrom(){return this.validFrom}getValidTo(){return this.validTo}getMinCartValue(e){return e?this.minCartValue[e]:this.minCartValue}getMaxCartDiscount(e){return e?this.maxCartDiscount[e]:this.maxCartDiscount}getDiscountMethod(){return this.discountMethod}getPercentageValue(){return this.percentageValue}getApplicableTo(){return this.applicableTo}getCategory(){return this.category}getDetails(){return {...super.getDetails(),couponCode:this.getCode(),name:this.getName(),description:this.getDescription(),type:this.getType(),customerId:this.getCustomerId(),validFrom:this.getValidFrom(),validTo:this.getValidTo(),minCartValue:Object.keys(this.getMinCartValue()).reduce((e,t)=>{let o=this.getMinCartValue(t);return o&&(e[t]=o.getDetails()),e},{}),maxCartDiscount:Object.keys(this.getMaxCartDiscount()).reduce((e,t)=>{let o=this.getMaxCartDiscount(t);return o&&(e[t]=o.getDetails()),e},{}),discountMethod:this.getDiscountMethod(),percentageValue:this.getPercentageValue(),applicableTo:this.getApplicableTo(),category:this.getCategory()}}isActive(){return new Date(this.validFrom)<=new Date&&new Date(this.validTo)>=new Date}isApplicableTo(e){return this.applicableTo==="all"||this.applicableTo==="ftb"&&e}calculateApplicableCouponDiscount(e,t,o,i,r=!0){let n=new a$1({amount:0,currency:i}),s;if(r&&!this.isActive())return n;let C=this.getMinCartValue(o),c=this.getMaxCartDiscount(o);if(!C||C.compareTo(e)>0||!c)return n;let h=this.getCategory(),D=this.getDiscountMethod(),u=h==="SHIPPING"?t:e;if(u.getAmount()<=0)return n;switch(D){case"flat":let T=c;s=u.min(T);break;case"percentage":s=u.multiply(this.getPercentageValue()/100).round();break;default:return n}return s.min(c)}};export{y as a,M as b,b as c,P as d,p as e};//# sourceMappingURL=chunk-WS7ZY5ZZ.mjs.map
2
+ //# sourceMappingURL=chunk-WS7ZY5ZZ.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/Classes/Coupon.ts"],"names":["CouponType","CouponDiscountMethod","CouponCategory","ApplicableTo","CouponModel","BaseModel","data","date","Utils_default","acc","country","priceData","PriceModel","InvalidArgumentError","locale","LocaleLanguageMap","priceModel","ftbCustomer","cartValue","shippingCost","currency","checkExpiry","zeroDiscount","potentialDiscount","minCartValueReq","maxCartDiscountCap","couponCategory","discountMethod","targetValue","flatAmount"],"mappings":"uMAOO,IAAKA,CACVA,CAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAA,MAAS,CAAA,QAAA,CACTA,EAAA,SAAY,CAAA,WAAA,CAFFA,CAAA,CAAA,EAAA,CAAA,EAAA,EAAA,CAAA,CAKAC,CACVA,CAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAA,IAAO,CAAA,MAAA,CACPA,EAAA,UAAa,CAAA,YAAA,CAFHA,CAAA,CAAA,EAAA,CAAA,EAAA,EAAA,CAAA,CAKAC,CACVA,CAAAA,CAAAA,CAAAA,GAAAA,CAAAA,CAAA,QAAW,CAAA,UAAA,CACXA,EAAA,QAAW,CAAA,UAAA,CAFDA,CAAA,CAAA,EAAA,CAAA,EAAA,EAAA,CAAA,CAKAC,OACVA,CAAA,CAAA,GAAA,CAAM,KACNA,CAAAA,CAAAA,CAAA,IAAM,KAFIA,CAAAA,CAAAA,CAAAA,EAAAA,CAAAA,EAAA,EA0BSC,CAAAA,CAAAA,CAAAA,CAArB,cAAyCC,GAAU,CACvC,UAAA,CACA,KACA,WACA,CAAA,IAAA,CACA,UACA,CAAA,SAAA,CACA,QACA,YAGA,CAAA,eAAA,CAGA,cACA,CAAA,eAAA,CACA,aACA,QAOV,CAAA,WAAA,CAAYC,CAAuBC,CAAAA,CAAAA,CAAa,IAAI,IAAA,CAAQ,CA0B1D,GAzBA,MAAMD,CAAMC,CAAAA,CAAI,CAEhB,CAAA,IAAA,CAAK,WAAaD,CAAK,CAAA,UAAA,CACvB,IAAK,CAAA,IAAA,CAAOE,EAAM,SAAUF,CAAAA,CAAAA,CAAK,IAAI,CAAA,CACrC,IAAK,CAAA,WAAA,CAAcE,CAAM,CAAA,SAAA,CAAUF,EAAK,WAAW,CAAA,CACnD,IAAK,CAAA,IAAA,CAAOA,CAAK,CAAA,IAAA,CACjB,IAAK,CAAA,UAAA,CAAaA,EAAK,UACvB,CAAA,IAAA,CAAK,SAAYA,CAAAA,CAAAA,CAAK,SAAa,EAAA,IAAA,CAAK,KAAMA,CAAAA,CAAAA,CAAK,SAAS,CAAI,CAAA,IAAI,IAAKA,CAAAA,CAAAA,CAAK,SAAS,CAAE,CAAA,WAAA,EAAgBC,CAAAA,CAAAA,CAAK,aAC9G,CAAA,IAAA,CAAK,OAAUD,CAAAA,CAAAA,CAAK,OAAW,EAAA,IAAA,CAAK,KAAMA,CAAAA,CAAAA,CAAK,OAAO,CAAI,CAAA,IAAI,IAAKA,CAAAA,CAAAA,CAAK,OAAO,CAAE,CAAA,WAAA,EAAgBC,CAAAA,CAAAA,CAAK,aACtG,CAAA,IAAA,CAAK,YAAgB,CAAA,MAAA,CAAO,IAAKD,CAAAA,CAAAA,CAAK,YAAY,CAAA,CAAoB,OAAO,CAACG,CAAAA,CAAKC,CAAY,GAAA,CAC7F,IAAMC,CAAYL,CAAAA,CAAAA,CAAK,YAAaI,CAAAA,CAAO,EAC3C,OAAIC,CAAAA,GACFF,CAAIC,CAAAA,CAAO,CAAI,CAAA,IAAIE,GAAWD,CAAAA,CAAS,GAElCF,CACT,CAAA,CAAG,EAA+C,CAClD,CAAA,IAAA,CAAK,eAAmB,CAAA,MAAA,CAAO,KAAKH,CAAK,CAAA,eAAe,CAAoB,CAAA,MAAA,CAAO,CAACG,CAAAA,CAAKC,CAAY,GAAA,CACnG,IAAMC,CAAYL,CAAAA,CAAAA,CAAK,eAAgBI,CAAAA,CAAO,EAC9C,OAAIC,CAAAA,GACFF,CAAIC,CAAAA,CAAO,EAAI,IAAIE,GAAAA,CAAWD,CAAS,CAAA,CAAA,CAElCF,CACT,CAAA,CAAG,EAA+C,EAClD,IAAK,CAAA,cAAA,CAAiBH,CAAK,CAAA,cAAA,CAC3B,KAAK,eAAkBA,CAAAA,CAAAA,CAAK,eAAmB,EAAA,CAAA,CAC3C,KAAK,eAAkB,CAAA,GAAA,CACzB,MAAM,IAAIO,CAAqB,CAAA,6CAA6C,CAG9E,CAAA,IAAA,CAAK,aAAeP,CAAK,CAAA,YAAA,CACzB,IAAK,CAAA,QAAA,CAAWA,EAAK,SACvB,CAGA,OAAkB,EAAA,CAChB,OAAO,IAAK,CAAA,UACd,CAaA,OAAA,CAAQQ,GAA+C,CAAA,CACrD,OAAIA,GAAAA,CACK,KAAK,IAAKA,CAAAA,GAAM,CAAK,EAAA,IAAA,CAAK,KAAKC,CAAkBD,CAAAA,GAAM,CAAC,CAAA,EAAK,KAAK,IAAK,CAAA,EAAA,CAEvE,CAAE,GAAG,IAAK,CAAA,IAAK,CAE1B,CAaA,eAAeA,GAA+C,CAAA,CAC5D,OAAIA,GAAAA,CACK,KAAK,WAAYA,CAAAA,GAAM,CAAK,EAAA,IAAA,CAAK,YAAYC,CAAkBD,CAAAA,GAAM,CAAC,CAAA,EAAK,IAAK,CAAA,WAAA,CAAY,EAE5F,CAAA,CAAE,GAAG,IAAK,CAAA,WAAY,CAEjC,CAGA,SAAsB,CACpB,OAAO,IAAK,CAAA,IACd,CAGA,aAAwB,EAAA,CACtB,OAAO,IAAA,CAAK,UAAc,EAAA,EAC5B,CAGA,YAAA,EAA+B,CAC7B,OAAO,IAAA,CAAK,SACd,CAGA,YAA6B,CAC3B,OAAO,IAAK,CAAA,OACd,CAeA,eAAgBJ,CAAAA,CAAAA,CAAuB,CACrC,OAAIA,CACK,CAAA,IAAA,CAAK,YAAaA,CAAAA,CAAO,EAE3B,IAAK,CAAA,YACd,CAcA,kBAAA,CAAmBA,CAAuB,CAAA,CACxC,OAAIA,CAAAA,CACK,KAAK,eAAgBA,CAAAA,CAAO,CAE9B,CAAA,IAAA,CAAK,eACd,CAGA,iBAA0C,EAAA,CACxC,OAAO,IAAK,CAAA,cACd,CAGA,kBAAA,EAA6B,CAC3B,OAAO,IAAA,CAAK,eACd,CAGA,iBAAgC,CAC9B,OAAO,IAAK,CAAA,YACd,CAGA,WAAA,EAA8B,CAC5B,OAAO,KAAK,QACd,CAMA,UAAyB,EAAA,CACvB,OAAO,CACL,GAAG,KAAM,CAAA,UAAA,GACT,UAAY,CAAA,IAAA,CAAK,OAAQ,EAAA,CACzB,IAAM,CAAA,IAAA,CAAK,OAAQ,EAAA,CACnB,YAAa,IAAK,CAAA,cAAA,EAClB,CAAA,IAAA,CAAM,KAAK,OAAQ,EAAA,CACnB,UAAY,CAAA,IAAA,CAAK,eACjB,CAAA,SAAA,CAAW,IAAK,CAAA,YAAA,EAChB,CAAA,OAAA,CAAS,IAAK,CAAA,UAAA,GACd,YAAe,CAAA,MAAA,CAAO,IAAK,CAAA,IAAA,CAAK,iBAAiB,CAAA,CAAoB,MAAO,CAAA,CAACD,EAAKC,CAAY,GAAA,CAC5F,IAAMM,CAAAA,CAAa,IAAK,CAAA,eAAA,CAAgBN,CAAO,CAAA,CAC/C,OAAIM,CACFP,GAAAA,CAAAA,CAAIC,CAAO,CAAA,CAAIM,EAAW,UAAW,EAAA,CAAA,CAEhCP,CACT,CAAA,CAAG,EAAmB,CAAA,CACtB,eAAkB,CAAA,MAAA,CAAO,IAAK,CAAA,IAAA,CAAK,kBAAmB,EAAC,EAAoB,MAAO,CAAA,CAACA,CAAKC,CAAAA,CAAAA,GAAY,CAClG,IAAMM,CAAAA,CAAa,IAAK,CAAA,kBAAA,CAAmBN,CAAO,CAClD,CAAA,OAAIM,CACFP,GAAAA,CAAAA,CAAIC,CAAO,CAAA,CAAIM,CAAW,CAAA,UAAA,IAErBP,CACT,CAAA,CAAG,EAAmB,EACtB,cAAgB,CAAA,IAAA,CAAK,iBAAkB,EAAA,CACvC,gBAAiB,IAAK,CAAA,kBAAA,EACtB,CAAA,YAAA,CAAc,IAAK,CAAA,eAAA,EACnB,CAAA,QAAA,CAAU,KAAK,WAAY,EAC7B,CACF,CAMA,QAAoB,EAAA,CAClB,OAAO,IAAI,KAAK,IAAK,CAAA,SAAS,CAAK,EAAA,IAAI,IAAU,EAAA,IAAI,IAAK,CAAA,IAAA,CAAK,OAAO,CAAK,EAAA,IAAI,IACjF,CAQA,eAAeQ,CAA+B,CAAA,CAC5C,OAAO,IAAA,CAAK,eAAiB,KAAqB,EAAA,IAAA,CAAK,YAAiB,GAAA,KAAA,EAAoBA,CAC9F,CAWO,iCAAkCC,CAAAA,CAAAA,CAAuBC,EAA0BT,CAAsBU,CAAAA,CAAAA,CAAwBC,CAAuB,CAAA,CAAA,CAAA,CAAkB,CAC/K,IAAIC,CAAAA,CAA2B,IAAIV,GAAAA,CAAW,CAAE,MAAQ,CAAA,CAAA,CAAG,QAAAQ,CAAAA,CAAS,CAAC,CAAA,CACjEG,CAGJ,CAAA,GAAIF,GAAe,CAAC,IAAA,CAAK,QAAS,EAAA,CAChC,OAAOC,CAIT,CAAA,IAAME,CAAkB,CAAA,IAAA,CAAK,gBAAgBd,CAAO,CAAA,CAC9Ce,CAAqB,CAAA,IAAA,CAAK,kBAAmBf,CAAAA,CAAO,CAQ1D,CAAA,GALI,CAACc,CAAmBA,EAAAA,CAAAA,CAAgB,SAAUN,CAAAA,CAAS,EAAI,CAK3D,EAAA,CAACO,CACH,CAAA,OAAOH,EAIT,IAAMI,CAAAA,CAAiB,IAAK,CAAA,WAAA,EACtBC,CAAAA,CAAAA,CAAiB,IAAK,CAAA,iBAAA,GAEtBC,CAAcF,CAAAA,CAAAA,GAAmB,UAA0BP,CAAAA,CAAAA,CAAeD,EAGhF,GAAIU,CAAAA,CAAY,SAAU,EAAA,EAAK,EAAG,OAAON,CAAAA,CAEzC,OAAQK,CAAAA,EACN,IAAK,MAEH,CAAA,IAAME,EAAaJ,CACnBF,CAAAA,CAAAA,CAAoBK,CAAY,CAAA,GAAA,CAAIC,CAAU,CAC9C,CAAA,MACF,IAAK,YAAA,CAEHN,EAAoBK,CAAY,CAAA,QAAA,CAAS,IAAK,CAAA,kBAAA,EAAuB,CAAA,GAAG,CAAE,CAAA,KAAA,GAC1E,MACF,QAEE,OAAON,CACX,CAKA,OAFsBC,CAAAA,CAAkB,GAAIE,CAAAA,CAAkB,CAGhE,CACF","file":"chunk-GMGMQ2NX.mjs","sourcesContent":["import Utils from \"../Utils\";\r\nimport BaseModel, { BaseAttributes } from \"./Base\";\r\nimport { CountryCode, CurrencyCode, ISODateTimeUTC, LocaleCode, LocalizedString, RegionalPrice } from \"./Common\";\r\nimport { LocaleLanguageMap } from \"./Enum\";\r\nimport { InvalidArgumentError } from \"./Error\";\r\nimport PriceModel, { PriceData } from \"./Price\";\r\n\r\nexport enum CouponType {\r\n COUPON = \"coupon\",\r\n AUTOMATIC = \"automatic\",\r\n}\r\n\r\nexport enum CouponDiscountMethod {\r\n FLAT = \"flat\",\r\n PERCENTAGE = \"percentage\",\r\n}\r\n\r\nexport enum CouponCategory {\r\n SHIPPING = \"SHIPPING\",\r\n CUSTOMER = \"CUSTOMER\",\r\n}\r\n\r\nexport enum ApplicableTo {\r\n ALL = \"all\",\r\n FTB = \"ftb\",\r\n}\r\n\r\nexport type CouponAttribute = BaseAttributes & {\r\n couponCode: string;\r\n name: LocalizedString;\r\n description: LocalizedString;\r\n type: CouponType;\r\n customerId?: string;\r\n validFrom: ISODateTimeUTC;\r\n validTo: ISODateTimeUTC;\r\n minCartValue: RegionalPrice;\r\n maxCartDiscount: RegionalPrice;\r\n discountMethod: CouponDiscountMethod;\r\n percentageValue?: number;\r\n applicableTo: ApplicableTo;\r\n category: CouponCategory;\r\n};\r\n\r\nexport type CouponData = Required<CouponAttribute>\r\n\r\n/**\r\n * Represents a discount coupon, extending BaseModel.\r\n */\r\nexport default class CouponModel extends BaseModel {\r\n protected couponCode: string;\r\n protected name: LocalizedString;\r\n protected description: LocalizedString;\r\n protected type: CouponType;\r\n protected customerId?: string;\r\n protected validFrom: ISODateTimeUTC;\r\n protected validTo: ISODateTimeUTC;\r\n protected minCartValue: {\r\n [country in CountryCode]?: PriceModel;\r\n };\r\n protected maxCartDiscount: {\r\n [country in CountryCode]?: PriceModel;\r\n };\r\n protected discountMethod: CouponDiscountMethod;\r\n protected percentageValue: number;\r\n protected applicableTo: ApplicableTo;\r\n protected category: CouponCategory;\r\n\r\n /**\r\n * Creates an instance of CouponModel.\r\n * @param data - The initial coupon attributes.\r\n * @param date - Optional date for setting creation/modification times (defaults to now).\r\n */\r\n constructor(data: CouponAttribute, date: Date = new Date()) {\r\n super(data, date);\r\n\r\n this.couponCode = data.couponCode;\r\n this.name = Utils.deepClone(data.name);\r\n this.description = Utils.deepClone(data.description);\r\n this.type = data.type;\r\n this.customerId = data.customerId;\r\n this.validFrom = data.validFrom && Date.parse(data.validFrom) ? new Date(data.validFrom).toISOString() : date.toISOString();\r\n this.validTo = data.validTo && Date.parse(data.validTo) ? new Date(data.validTo).toISOString() : date.toISOString();\r\n this.minCartValue = (Object.keys(data.minCartValue) as CountryCode[]).reduce((acc, country) => {\r\n const priceData = data.minCartValue[country] as PriceData;\r\n if (priceData) {\r\n acc[country] = new PriceModel(priceData);\r\n }\r\n return acc;\r\n }, {} as { [country in CountryCode]?: PriceModel });\r\n this.maxCartDiscount = (Object.keys(data.maxCartDiscount) as CountryCode[]).reduce((acc, country) => {\r\n const priceData = data.maxCartDiscount[country] as PriceData;\r\n if (priceData) {\r\n acc[country] = new PriceModel(priceData);\r\n }\r\n return acc;\r\n }, {} as { [country in CountryCode]?: PriceModel });\r\n this.discountMethod = data.discountMethod;\r\n this.percentageValue = data.percentageValue ?? 0;\r\n if (this.percentageValue > 100) {\r\n throw new InvalidArgumentError('Percentage value cannot be greater than 100');\r\n }\r\n\r\n this.applicableTo = data.applicableTo;\r\n this.category = data.category;\r\n }\r\n\r\n /** Gets the unique coupon code. */\r\n getCode(): string {\r\n return this.couponCode;\r\n }\r\n\r\n /**\r\n * Gets the full localized coupon name object.\r\n * @returns A copy of the LocalizedString object for the name.\r\n */\r\n getName(): LocalizedString\r\n /**\r\n * Gets the coupon name for a specific locale, falling back to English ('en').\r\n * @param locale - The desired locale code.\r\n * @returns The name string for the specified locale.\r\n */\r\n getName(locale: LocaleCode): string\r\n getName(locale?: LocaleCode): LocalizedString | string {\r\n if (locale) {\r\n return this.name[locale] ?? this.name[LocaleLanguageMap[locale]] ?? this.name.en;\r\n } else {\r\n return { ...this.name };\r\n }\r\n }\r\n\r\n /**\r\n * Gets the full localized coupon description object.\r\n * @returns A copy of the LocalizedString object for the description, or undefined.\r\n */\r\n getDescription(): LocalizedString\r\n /**\r\n * Gets the coupon description for a specific locale, falling back to English ('en').\r\n * @param locale - The desired locale code.\r\n * @returns The description string for the specified locale.\r\n */\r\n getDescription(locale: LocaleCode): string\r\n getDescription(locale?: LocaleCode): LocalizedString | string {\r\n if (locale) {\r\n return this.description[locale] ?? this.description[LocaleLanguageMap[locale]] ?? this.description.en;\r\n } else {\r\n return { ...this.description };\r\n }\r\n }\r\n\r\n /** Gets the type of coupon (COUPON or AUTOMATIC). */\r\n getType(): CouponType {\r\n return this.type;\r\n }\r\n\r\n /** Gets the specific customer ID this coupon is limited to, if any. */\r\n getCustomerId(): string {\r\n return this.customerId ?? '';\r\n }\r\n\r\n /** Gets the ISO date string from when the coupon is valid. */\r\n getValidFrom(): ISODateTimeUTC {\r\n return this.validFrom;\r\n }\r\n\r\n /** Gets the ISO date string until when the coupon is valid. */\r\n getValidTo(): ISODateTimeUTC {\r\n return this.validTo;\r\n }\r\n\r\n /**\r\n * Gets the list of minimum cart values required for the coupon across different regions.\r\n * Returns copies of the price objects.\r\n * @returns The full list of regional minimum cart values.\r\n */\r\n getMinCartValue(): { [country in CountryCode]?: PriceModel }\r\n\r\n /**\r\n * Gets the minimum cart value required for the coupon for a specific country.\r\n * @param country - The country code to filter the minimum value for.\r\n * @returns The regional minimum cart value for the specified country, or undefined if not set for that country.\r\n */\r\n getMinCartValue(country: CountryCode): PriceModel | undefined\r\n getMinCartValue(country?: CountryCode) {\r\n if (country) {\r\n return this.minCartValue[country];\r\n }\r\n return this.minCartValue;\r\n }\r\n\r\n /**\r\n * Gets the list of maximum discount amounts allowed for the coupon across different regions.\r\n * Returns copies of the price objects.\r\n * @returns The full list of regional maximum discount caps.\r\n */\r\n getMaxCartDiscount(): { [country in CountryCode]?: PriceModel }\r\n /**\r\n * Gets the maximum discount amount allowed for the coupon for a specific country.\r\n * @param country - The country code to filter the maximum discount for.\r\n * @returns The regional maximum discount cap for the specified country, or undefined if not set for that country.\r\n */\r\n getMaxCartDiscount(country: CountryCode): PriceModel | undefined\r\n getMaxCartDiscount(country?: CountryCode) {\r\n if (country) {\r\n return this.maxCartDiscount[country];\r\n }\r\n return this.maxCartDiscount;\r\n }\r\n\r\n /** Gets the discount method (FLAT or PERCENTAGE). */\r\n getDiscountMethod(): CouponDiscountMethod {\r\n return this.discountMethod;\r\n }\r\n\r\n /** Gets the percentage discount value (0-100). */\r\n getPercentageValue(): number {\r\n return this.percentageValue;\r\n }\r\n\r\n /** Gets the customer applicability rule (ALL or FTB). */\r\n getApplicableTo(): ApplicableTo {\r\n return this.applicableTo;\r\n }\r\n\r\n /** Gets the category of the coupon (SHIPPING or CUSTOMER). */\r\n getCategory(): CouponCategory {\r\n return this.category;\r\n }\r\n\r\n /**\r\n * Gets a plain data object representing the coupon's details.\r\n * @returns A CouponData object.\r\n */\r\n getDetails(): CouponData {\r\n return {\r\n ...super.getDetails(),\r\n couponCode: this.getCode(),\r\n name: this.getName(),\r\n description: this.getDescription(),\r\n type: this.getType(),\r\n customerId: this.getCustomerId(),\r\n validFrom: this.getValidFrom(),\r\n validTo: this.getValidTo(),\r\n minCartValue: (Object.keys(this.getMinCartValue()) as CountryCode[]).reduce((acc, country) => {\r\n const priceModel = this.getMinCartValue(country);\r\n if (priceModel) {\r\n acc[country] = priceModel.getDetails();\r\n }\r\n return acc;\r\n }, {} as RegionalPrice),\r\n maxCartDiscount: (Object.keys(this.getMaxCartDiscount()) as CountryCode[]).reduce((acc, country) => {\r\n const priceModel = this.getMaxCartDiscount(country);\r\n if (priceModel) {\r\n acc[country] = priceModel.getDetails();\r\n }\r\n return acc;\r\n }, {} as RegionalPrice),\r\n discountMethod: this.getDiscountMethod(),\r\n percentageValue: this.getPercentageValue(),\r\n applicableTo: this.getApplicableTo(),\r\n category: this.getCategory(),\r\n };\r\n }\r\n\r\n /**\r\n * Checks if the coupon is currently active based on its validity dates.\r\n * @returns True if the coupon is currently within its validity period, false otherwise.\r\n */\r\n isActive(): boolean {\r\n return new Date(this.validFrom) <= new Date() && new Date(this.validTo) >= new Date();\r\n }\r\n\r\n\r\n /**\r\n * Checks if the coupon is applicable to a customer based on their status (e.g., first-time buyer).\r\n * @param ftbCustomer - A boolean indicating whether the customer is a first-time buyer.\r\n * @returns True if the coupon's applicability rule matches the customer's status, false otherwise.\r\n */\r\n isApplicableTo(ftbCustomer: boolean): boolean {\r\n return this.applicableTo === ApplicableTo.ALL || (this.applicableTo === ApplicableTo.FTB && ftbCustomer);\r\n }\r\n\r\n /**\r\n * Calculates the discount value for a given coupon based on the current container state.\r\n * Returns 0 if the coupon is invalid, expired, or not applicable based on cart value or target category.\r\n * @param cartValue - The cart subtotal as a PriceModel.\r\n * @param shippingCost - The cart shipping cost.\r\n * @param country - The country code.\r\n * @param currency - The currency code.\r\n * @returns The calculated discount amount (rounded according to country rules).\r\n */\r\n public calculateApplicableCouponDiscount(cartValue: PriceModel, shippingCost: PriceModel, country: CountryCode, currency: CurrencyCode, checkExpiry: boolean = true): PriceModel {\r\n let zeroDiscount: PriceModel = new PriceModel({ amount: 0, currency });\r\n let potentialDiscount: PriceModel;\r\n\r\n // 1. Basic validation (active)\r\n if (checkExpiry && !this.isActive()) {\r\n return zeroDiscount;\r\n }\r\n\r\n // 2. Check regional requirements (min cart value, max discount)\r\n const minCartValueReq = this.getMinCartValue(country);\r\n const maxCartDiscountCap = this.getMaxCartDiscount(country);\r\n\r\n // Ensure minCartValueReq exists and subtotal meets the requirement\r\n if (!minCartValueReq || minCartValueReq.compareTo(cartValue) > 0) {\r\n return zeroDiscount;\r\n }\r\n\r\n // Ensure maxCartDiscountCap exists and is non-negative (price-model throws error when amount < 0)\r\n if (!maxCartDiscountCap) {\r\n return zeroDiscount;\r\n }\r\n\r\n // 3. Calculate potential discount based on method and category\r\n const couponCategory = this.getCategory();\r\n const discountMethod = this.getDiscountMethod();\r\n // Determine the value the coupon applies to (shipping cost or subtotal)\r\n const targetValue = couponCategory === CouponCategory.SHIPPING ? shippingCost : cartValue;\r\n\r\n // No discount if the target value is zero or less\r\n if (targetValue.getAmount() <= 0) return zeroDiscount;\r\n\r\n switch (discountMethod) {\r\n case CouponDiscountMethod.FLAT:\r\n // Flat discount is capped by the target value itself and the max discount cap\r\n const flatAmount = maxCartDiscountCap; // Use cap as the flat amount source? Or coupon.value? Needs clarification. Assuming cap IS the flat amount here.\r\n potentialDiscount = targetValue.min(flatAmount);\r\n break;\r\n case CouponDiscountMethod.PERCENTAGE:\r\n // Calculate percentage discount based on the target value\r\n potentialDiscount = targetValue.multiply(this.getPercentageValue() / 100).round();\r\n break;\r\n default:\r\n // Unknown discount method\r\n return zeroDiscount;\r\n }\r\n\r\n // 4. Apply maximum discount cap to the calculated potential discount\r\n const finalDiscount = potentialDiscount.min(maxCartDiscountCap);\r\n\r\n return finalDiscount;\r\n }\r\n}"]}
1
+ {"version":3,"sources":["../src/Classes/Coupon.ts"],"names":["CouponType","CouponDiscountMethod","CouponCategory","ApplicableTo","CouponModel","BaseModel","data","date","Utils_default","acc","country","priceData","PriceModel","InvalidArgumentError","locale","LocaleLanguageMap","priceModel","ftbCustomer","cartValue","shippingCost","currency","checkExpiry","zeroDiscount","potentialDiscount","minCartValueReq","maxCartDiscountCap","couponCategory","discountMethod","targetValue","flatAmount"],"mappings":"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","file":"chunk-WS7ZY5ZZ.mjs","sourcesContent":["import Utils from \"../Utils\";\r\nimport BaseModel, { BaseAttributes } from \"./Base\";\r\nimport { CountryCode, CurrencyCode, ISODateTimeUTC, LocaleCode, LocalizedString, RegionalPrice } from \"./Common\";\r\nimport { LocaleLanguageMap } from \"./Enum\";\r\nimport { InvalidArgumentError } from \"./Error\";\r\nimport PriceModel, { PriceData } from \"./Price\";\r\n\r\nexport enum CouponType {\r\n COUPON = \"coupon\",\r\n AUTOMATIC = \"automatic\",\r\n}\r\n\r\nexport enum CouponDiscountMethod {\r\n FLAT = \"flat\",\r\n PERCENTAGE = \"percentage\",\r\n}\r\n\r\nexport enum CouponCategory {\r\n SHIPPING = \"SHIPPING\",\r\n CUSTOMER = \"CUSTOMER\",\r\n}\r\n\r\nexport enum ApplicableTo {\r\n ALL = \"all\",\r\n FTB = \"ftb\",\r\n}\r\n\r\nexport type CouponAttribute = BaseAttributes & {\r\n couponCode: string;\r\n name: LocalizedString;\r\n description: LocalizedString;\r\n type: CouponType;\r\n customerId?: string;\r\n validFrom: ISODateTimeUTC;\r\n validTo: ISODateTimeUTC;\r\n minCartValue: RegionalPrice;\r\n maxCartDiscount: RegionalPrice;\r\n discountMethod: CouponDiscountMethod;\r\n percentageValue?: number;\r\n applicableTo: ApplicableTo;\r\n category: CouponCategory;\r\n};\r\n\r\nexport type CouponData = Required<CouponAttribute>\r\n\r\n/**\r\n * Represents a discount coupon, extending BaseModel.\r\n */\r\nexport default class CouponModel extends BaseModel {\r\n protected couponCode: string;\r\n protected name: LocalizedString;\r\n protected description: LocalizedString;\r\n protected type: CouponType;\r\n protected customerId?: string;\r\n protected validFrom: ISODateTimeUTC;\r\n protected validTo: ISODateTimeUTC;\r\n protected minCartValue: {\r\n [country in CountryCode]?: PriceModel;\r\n };\r\n protected maxCartDiscount: {\r\n [country in CountryCode]?: PriceModel;\r\n };\r\n protected discountMethod: CouponDiscountMethod;\r\n protected percentageValue: number;\r\n protected applicableTo: ApplicableTo;\r\n protected category: CouponCategory;\r\n\r\n /**\r\n * Creates an instance of CouponModel.\r\n * @param data - The initial coupon attributes.\r\n * @param date - Optional date for setting creation/modification times (defaults to now).\r\n */\r\n constructor(data: CouponAttribute, date: Date = new Date()) {\r\n super(data, date);\r\n\r\n this.couponCode = data.couponCode;\r\n this.name = Utils.deepClone(data.name);\r\n this.description = Utils.deepClone(data.description);\r\n this.type = data.type;\r\n this.customerId = data.customerId;\r\n this.validFrom = data.validFrom && Date.parse(data.validFrom) ? new Date(data.validFrom).toISOString() : date.toISOString();\r\n this.validTo = data.validTo && Date.parse(data.validTo) ? new Date(data.validTo).toISOString() : date.toISOString();\r\n this.minCartValue = (Object.keys(data.minCartValue) as CountryCode[]).reduce((acc, country) => {\r\n const priceData = data.minCartValue[country] as PriceData;\r\n if (priceData) {\r\n acc[country] = new PriceModel(priceData);\r\n }\r\n return acc;\r\n }, {} as { [country in CountryCode]?: PriceModel });\r\n this.maxCartDiscount = (Object.keys(data.maxCartDiscount) as CountryCode[]).reduce((acc, country) => {\r\n const priceData = data.maxCartDiscount[country] as PriceData;\r\n if (priceData) {\r\n acc[country] = new PriceModel(priceData);\r\n }\r\n return acc;\r\n }, {} as { [country in CountryCode]?: PriceModel });\r\n this.discountMethod = data.discountMethod;\r\n this.percentageValue = data.percentageValue ?? 0;\r\n if (this.percentageValue > 100) {\r\n throw new InvalidArgumentError('Percentage value cannot be greater than 100');\r\n }\r\n\r\n this.applicableTo = data.applicableTo;\r\n this.category = data.category;\r\n }\r\n\r\n /** Gets the unique coupon code. */\r\n getCode(): string {\r\n return this.couponCode;\r\n }\r\n\r\n /**\r\n * Gets the full localized coupon name object.\r\n * @returns A copy of the LocalizedString object for the name.\r\n */\r\n getName(): LocalizedString\r\n /**\r\n * Gets the coupon name for a specific locale, falling back to English ('en').\r\n * @param locale - The desired locale code.\r\n * @returns The name string for the specified locale.\r\n */\r\n getName(locale: LocaleCode): string\r\n getName(locale?: LocaleCode): LocalizedString | string {\r\n if (locale) {\r\n return this.name[locale] ?? this.name[LocaleLanguageMap[locale]] ?? this.name.en;\r\n } else {\r\n return { ...this.name };\r\n }\r\n }\r\n\r\n /**\r\n * Gets the full localized coupon description object.\r\n * @returns A copy of the LocalizedString object for the description, or undefined.\r\n */\r\n getDescription(): LocalizedString\r\n /**\r\n * Gets the coupon description for a specific locale, falling back to English ('en').\r\n * @param locale - The desired locale code.\r\n * @returns The description string for the specified locale.\r\n */\r\n getDescription(locale: LocaleCode): string\r\n getDescription(locale?: LocaleCode): LocalizedString | string {\r\n if (locale) {\r\n return this.description[locale] ?? this.description[LocaleLanguageMap[locale]] ?? this.description.en;\r\n } else {\r\n return { ...this.description };\r\n }\r\n }\r\n\r\n /** Gets the type of coupon (COUPON or AUTOMATIC). */\r\n getType(): CouponType {\r\n return this.type;\r\n }\r\n\r\n /** Gets the specific customer ID this coupon is limited to, if any. */\r\n getCustomerId(): string {\r\n return this.customerId ?? '';\r\n }\r\n\r\n /** Gets the ISO date string from when the coupon is valid. */\r\n getValidFrom(): ISODateTimeUTC {\r\n return this.validFrom;\r\n }\r\n\r\n /** Gets the ISO date string until when the coupon is valid. */\r\n getValidTo(): ISODateTimeUTC {\r\n return this.validTo;\r\n }\r\n\r\n /**\r\n * Gets the list of minimum cart values required for the coupon across different regions.\r\n * Returns copies of the price objects.\r\n * @returns The full list of regional minimum cart values.\r\n */\r\n getMinCartValue(): { [country in CountryCode]?: PriceModel }\r\n\r\n /**\r\n * Gets the minimum cart value required for the coupon for a specific country.\r\n * @param country - The country code to filter the minimum value for.\r\n * @returns The regional minimum cart value for the specified country, or undefined if not set for that country.\r\n */\r\n getMinCartValue(country: CountryCode): PriceModel | undefined\r\n getMinCartValue(country?: CountryCode) {\r\n if (country) {\r\n return this.minCartValue[country];\r\n }\r\n return this.minCartValue;\r\n }\r\n\r\n /**\r\n * Gets the list of maximum discount amounts allowed for the coupon across different regions.\r\n * Returns copies of the price objects.\r\n * @returns The full list of regional maximum discount caps.\r\n */\r\n getMaxCartDiscount(): { [country in CountryCode]?: PriceModel }\r\n /**\r\n * Gets the maximum discount amount allowed for the coupon for a specific country.\r\n * @param country - The country code to filter the maximum discount for.\r\n * @returns The regional maximum discount cap for the specified country, or undefined if not set for that country.\r\n */\r\n getMaxCartDiscount(country: CountryCode): PriceModel | undefined\r\n getMaxCartDiscount(country?: CountryCode) {\r\n if (country) {\r\n return this.maxCartDiscount[country];\r\n }\r\n return this.maxCartDiscount;\r\n }\r\n\r\n /** Gets the discount method (FLAT or PERCENTAGE). */\r\n getDiscountMethod(): CouponDiscountMethod {\r\n return this.discountMethod;\r\n }\r\n\r\n /** Gets the percentage discount value (0-100). */\r\n getPercentageValue(): number {\r\n return this.percentageValue;\r\n }\r\n\r\n /** Gets the customer applicability rule (ALL or FTB). */\r\n getApplicableTo(): ApplicableTo {\r\n return this.applicableTo;\r\n }\r\n\r\n /** Gets the category of the coupon (SHIPPING or CUSTOMER). */\r\n getCategory(): CouponCategory {\r\n return this.category;\r\n }\r\n\r\n /**\r\n * Gets a plain data object representing the coupon's details.\r\n * @returns A CouponData object.\r\n */\r\n getDetails(): CouponData {\r\n return {\r\n ...super.getDetails(),\r\n couponCode: this.getCode(),\r\n name: this.getName(),\r\n description: this.getDescription(),\r\n type: this.getType(),\r\n customerId: this.getCustomerId(),\r\n validFrom: this.getValidFrom(),\r\n validTo: this.getValidTo(),\r\n minCartValue: (Object.keys(this.getMinCartValue()) as CountryCode[]).reduce((acc, country) => {\r\n const priceModel = this.getMinCartValue(country);\r\n if (priceModel) {\r\n acc[country] = priceModel.getDetails();\r\n }\r\n return acc;\r\n }, {} as RegionalPrice),\r\n maxCartDiscount: (Object.keys(this.getMaxCartDiscount()) as CountryCode[]).reduce((acc, country) => {\r\n const priceModel = this.getMaxCartDiscount(country);\r\n if (priceModel) {\r\n acc[country] = priceModel.getDetails();\r\n }\r\n return acc;\r\n }, {} as RegionalPrice),\r\n discountMethod: this.getDiscountMethod(),\r\n percentageValue: this.getPercentageValue(),\r\n applicableTo: this.getApplicableTo(),\r\n category: this.getCategory(),\r\n };\r\n }\r\n\r\n /**\r\n * Checks if the coupon is currently active based on its validity dates.\r\n * @returns True if the coupon is currently within its validity period, false otherwise.\r\n */\r\n isActive(): boolean {\r\n return new Date(this.validFrom) <= new Date() && new Date(this.validTo) >= new Date();\r\n }\r\n\r\n\r\n /**\r\n * Checks if the coupon is applicable to a customer based on their status (e.g., first-time buyer).\r\n * @param ftbCustomer - A boolean indicating whether the customer is a first-time buyer.\r\n * @returns True if the coupon's applicability rule matches the customer's status, false otherwise.\r\n */\r\n isApplicableTo(ftbCustomer: boolean): boolean {\r\n return this.applicableTo === ApplicableTo.ALL || (this.applicableTo === ApplicableTo.FTB && ftbCustomer);\r\n }\r\n\r\n /**\r\n * Calculates the discount value for a given coupon based on the current container state.\r\n * Returns 0 if the coupon is invalid, expired, or not applicable based on cart value or target category.\r\n * @param cartValue - The cart subtotal as a PriceModel.\r\n * @param shippingCost - The cart shipping cost.\r\n * @param country - The country code.\r\n * @param currency - The currency code.\r\n * @returns The calculated discount amount (rounded according to country rules).\r\n */\r\n public calculateApplicableCouponDiscount(cartValue: PriceModel, shippingCost: PriceModel, country: CountryCode, currency: CurrencyCode, checkExpiry: boolean = true): PriceModel {\r\n let zeroDiscount: PriceModel = new PriceModel({ amount: 0, currency });\r\n let potentialDiscount: PriceModel;\r\n\r\n // 1. Basic validation (active)\r\n if (checkExpiry && !this.isActive()) {\r\n return zeroDiscount;\r\n }\r\n\r\n // 2. Check regional requirements (min cart value, max discount)\r\n const minCartValueReq = this.getMinCartValue(country);\r\n const maxCartDiscountCap = this.getMaxCartDiscount(country);\r\n\r\n // Ensure minCartValueReq exists and subtotal meets the requirement\r\n if (!minCartValueReq || minCartValueReq.compareTo(cartValue) > 0) {\r\n return zeroDiscount;\r\n }\r\n\r\n // Ensure maxCartDiscountCap exists and is non-negative (price-model throws error when amount < 0)\r\n if (!maxCartDiscountCap) {\r\n return zeroDiscount;\r\n }\r\n\r\n // 3. Calculate potential discount based on method and category\r\n const couponCategory = this.getCategory();\r\n const discountMethod = this.getDiscountMethod();\r\n // Determine the value the coupon applies to (shipping cost or subtotal)\r\n const targetValue = couponCategory === CouponCategory.SHIPPING ? shippingCost : cartValue;\r\n\r\n // No discount if the target value is zero or less\r\n if (targetValue.getAmount() <= 0) return zeroDiscount;\r\n\r\n switch (discountMethod) {\r\n case CouponDiscountMethod.FLAT:\r\n // Flat discount is capped by the target value itself and the max discount cap\r\n const flatAmount = maxCartDiscountCap; // Use cap as the flat amount source? Or coupon.value? Needs clarification. Assuming cap IS the flat amount here.\r\n potentialDiscount = targetValue.min(flatAmount);\r\n break;\r\n case CouponDiscountMethod.PERCENTAGE:\r\n // Calculate percentage discount based on the target value\r\n potentialDiscount = targetValue.multiply(this.getPercentageValue() / 100).round();\r\n break;\r\n default:\r\n // Unknown discount method\r\n return zeroDiscount;\r\n }\r\n\r\n // 4. Apply maximum discount cap to the calculated potential discount\r\n const finalDiscount = potentialDiscount.min(maxCartDiscountCap);\r\n\r\n return finalDiscount;\r\n }\r\n}"]}
@@ -1,2 +1,2 @@
1
- import {t}from'./chunk-DGFO2MH6.mjs';var n=(t=>(t.THUMBNAIL="thumbnail",t.SMALL="small",t.MEDIUM="medium",t.LARGE="large",t.ORIGINAL="original",t))(n||{}),i=class{sources;alt;order;label;constructor(e){if(this.sources={...e.sources},this.alt=e.alt,this.order=e.order,this.label=e.label,!this.sources.original)throw new t("ImageInfoModel cannot be created without an 'original' source URL.")}getSources(){return {...this.sources}}getSource(e){return this.sources[e]||this.sources.original}getAlt(){return this.alt}getOrder(){return this.order}getLabel(){return this.label}setAlt(e){this.alt=e;}setOrder(e){this.order=e;}setLabel(e){this.label=e;}setSource(e,s){if(s===void 0){if(e==="original")throw new t("Cannot remove the 'original' image source.");delete this.sources[e];}else this.sources[e]=s;}getDetails(){return {sources:this.getSources(),alt:this.getAlt(),order:this.getOrder(),label:this.getLabel()}}};export{n as a,i as b};//# sourceMappingURL=chunk-7LEGYAOJ.mjs.map
2
- //# sourceMappingURL=chunk-7LEGYAOJ.mjs.map
1
+ import {u}from'./chunk-JHELVQYY.mjs';var n=(t=>(t.THUMBNAIL="thumbnail",t.SMALL="small",t.MEDIUM="medium",t.LARGE="large",t.ORIGINAL="original",t))(n||{}),i=class{sources;alt;order;label;constructor(e){if(this.sources={...e.sources},this.alt=e.alt,this.order=e.order,this.label=e.label,!this.sources.original)throw new u("ImageInfoModel cannot be created without an 'original' source URL.")}getSources(){return {...this.sources}}getSource(e){return this.sources[e]||this.sources.original}getAlt(){return this.alt}getOrder(){return this.order}getLabel(){return this.label}setAlt(e){this.alt=e;}setOrder(e){this.order=e;}setLabel(e){this.label=e;}setSource(e,s){if(s===void 0){if(e==="original")throw new u("Cannot remove the 'original' image source.");delete this.sources[e];}else this.sources[e]=s;}getDetails(){return {sources:this.getSources(),alt:this.getAlt(),order:this.getOrder(),label:this.getLabel()}}};export{n as a,i as b};//# sourceMappingURL=chunk-WSUPVXRZ.mjs.map
2
+ //# sourceMappingURL=chunk-WSUPVXRZ.mjs.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/Classes/ImageInfo.ts"],"names":["ImageResolution","ImageInfoModel","data","InvalidImageSourceError","resolutionKey","altText","order","label","url"],"mappings":"qCAAO,IAAKA,OACVA,CAAA,CAAA,SAAA,CAAY,WACZA,CAAAA,CAAAA,CAAA,MAAQ,OACRA,CAAAA,CAAAA,CAAA,MAAS,CAAA,QAAA,CACTA,EAAA,KAAQ,CAAA,OAAA,CACRA,EAAA,QAAW,CAAA,UAAA,CALDA,OAAA,EAsBSC,CAAAA,CAAAA,CAAAA,CAArB,KAAoC,CACxB,QACA,GACA,CAAA,KAAA,CACA,KAMV,CAAA,WAAA,CAAYC,EAA0B,CAMpC,GALA,IAAK,CAAA,OAAA,CAAU,CAAE,GAAGA,CAAAA,CAAK,OAAQ,CACjC,CAAA,IAAA,CAAK,IAAMA,CAAK,CAAA,GAAA,CAChB,IAAK,CAAA,KAAA,CAAQA,EAAK,KAClB,CAAA,IAAA,CAAK,KAAQA,CAAAA,CAAAA,CAAK,MAEd,CAAC,IAAA,CAAK,OAAQ,CAAA,QAAA,CAChB,MAAM,IAAIC,CAAAA,CAAwB,oEAAoE,CAE1G,CAMA,YAAa,CACX,OAAO,CAAE,GAAG,KAAK,OAAQ,CAC3B,CAOA,SAAUC,CAAAA,CAAAA,CAAwC,CAChD,OAAO,IAAA,CAAK,OAAQA,CAAAA,CAAa,GAAK,IAAK,CAAA,OAAA,CAAQ,QACrD,CAKA,MAAA,EAA6B,CAC3B,OAAO,IAAA,CAAK,GACd,CAKA,UAA+B,CAC7B,OAAO,IAAK,CAAA,KACd,CAKA,QAA+B,EAAA,CAC7B,OAAO,IAAA,CAAK,KACd,CAMA,MAAA,CAAOC,EAAmC,CACxC,IAAA,CAAK,IAAMA,EAEb,CAMA,QAASC,CAAAA,CAAAA,CAAiC,CACxC,IAAK,CAAA,KAAA,CAAQA,EACf,CAMA,QAAA,CAASC,EAAiC,CACxC,IAAA,CAAK,KAAQA,CAAAA,EACf,CAOA,SAAUH,CAAAA,CAAAA,CAAgCI,EAA+B,CACvE,GAAIA,IAAQ,KAAW,CAAA,CAAA,CAErB,GAAIJ,CAAAA,GAAkB,WACpB,MAAM,IAAID,CAAwB,CAAA,4CAA4C,EAEhF,OAAO,IAAA,CAAK,OAAQC,CAAAA,CAAa,EACnC,CACE,KAAA,IAAA,CAAK,QAAQA,CAAa,CAAA,CAAII,EAElC,CAKA,UAAA,EAA4B,CAC1B,OAAO,CACL,OAAS,CAAA,IAAA,CAAK,YACd,CAAA,GAAA,CAAK,KAAK,MAAO,EAAA,CACjB,KAAO,CAAA,IAAA,CAAK,UACZ,CAAA,KAAA,CAAO,KAAK,QAAS,EACvB,CACF,CACF","file":"chunk-7LEGYAOJ.mjs","sourcesContent":["export enum ImageResolution {\r\n THUMBNAIL = 'thumbnail',\r\n SMALL = 'small',\r\n MEDIUM = 'medium',\r\n LARGE = 'large',\r\n ORIGINAL = 'original',\r\n}\r\n\r\nimport { InvalidImageSourceError } from \"./Error\";\r\n\r\nexport type ImageInfoAttribute = {\r\n sources: { [key in ImageResolution]?: string } & { original: string };\r\n alt?: string;\r\n order?: number;\r\n label?: string;\r\n};\r\n\r\nexport type ImageInfoData = ImageInfoAttribute;\r\n\r\n/**\r\n * Represents and manages structured image data, including multiple resolutions.\r\n */\r\nexport default class ImageInfoModel {\r\n protected sources: { [key in ImageResolution]?: string } & { original: string };\r\n protected alt?: string;\r\n protected order?: number;\r\n protected label?: string;\r\n\r\n /**\r\n * Creates an instance of ImageInfoModel.\r\n * @param data - The initial image data.\r\n */\r\n constructor(data: ImageInfoAttribute) {\r\n this.sources = { ...data.sources };\r\n this.alt = data.alt;\r\n this.order = data.order;\r\n this.label = data.label;\r\n\r\n if (!this.sources.original) {\r\n throw new InvalidImageSourceError(\"ImageInfoModel cannot be created without an 'original' source URL.\");\r\n }\r\n }\r\n\r\n /**\r\n * Gets the sources object containing URLs for different resolutions.\r\n * Returns a copy to prevent external modification.\r\n */\r\n getSources() {\r\n return { ...this.sources };\r\n }\r\n\r\n /**\r\n * Gets the URL for a specific resolution key.\r\n * @param resolutionKey - The key of the desired resolution (e.g., 'thumbnail', 'medium').\r\n * @returns The URL string if the key doesn't exist, otherwise original image URL will be returned.\r\n */\r\n getSource(resolutionKey: ImageResolution): string {\r\n return this.sources[resolutionKey] || this.sources.original;\r\n }\r\n\r\n /**\r\n * Gets the alternative text for the image.\r\n */\r\n getAlt(): string | undefined {\r\n return this.alt;\r\n }\r\n\r\n /**\r\n * Gets the display order number for the image.\r\n */\r\n getOrder(): number | undefined {\r\n return this.order;\r\n }\r\n\r\n /**\r\n * Gets the display label or caption for the image.\r\n */\r\n getLabel(): string | undefined {\r\n return this.label;\r\n }\r\n\r\n /**\r\n * Sets the alternative text for the image.\r\n * @param altText - The new alt text.\r\n */\r\n setAlt(altText: string | undefined): void {\r\n this.alt = altText;\r\n // Potentially add logic here to trigger updates if needed\r\n }\r\n\r\n /**\r\n * Sets the display order for the image.\r\n * @param order - The new order number.\r\n */\r\n setOrder(order: number | undefined): void {\r\n this.order = order;\r\n }\r\n\r\n /**\r\n * Sets the display label for the image.\r\n * @param label - The new label text.\r\n */\r\n setLabel(label: string | undefined): void {\r\n this.label = label;\r\n }\r\n\r\n /**\r\n * Updates or adds a URL for a specific resolution.\r\n * @param resolutionKey - The key of the resolution to update/add.\r\n * @param url - The URL for the resolution. Set to undefined to remove.\r\n */\r\n setSource(resolutionKey: ImageResolution, url: string | undefined): void {\r\n if (url === undefined) {\r\n // Prevent deleting the 'original' key if it's required\r\n if (resolutionKey === 'original') {\r\n throw new InvalidImageSourceError(\"Cannot remove the 'original' image source.\");\r\n }\r\n delete this.sources[resolutionKey];\r\n } else {\r\n this.sources[resolutionKey] = url;\r\n }\r\n }\r\n\r\n /**\r\n * Returns a plain JavaScript object representation of the image info.\r\n */\r\n getDetails(): ImageInfoData {\r\n return {\r\n sources: this.getSources(),\r\n alt: this.getAlt(),\r\n order: this.getOrder(),\r\n label: this.getLabel(),\r\n };\r\n }\r\n}"]}
1
+ {"version":3,"sources":["../src/Classes/ImageInfo.ts"],"names":["ImageResolution","ImageInfoModel","data","InvalidImageSourceError","resolutionKey","altText","order","label","url"],"mappings":"qCAAO,IAAKA,OACVA,CAAA,CAAA,SAAA,CAAY,WACZA,CAAAA,CAAAA,CAAA,MAAQ,OACRA,CAAAA,CAAAA,CAAA,MAAS,CAAA,QAAA,CACTA,EAAA,KAAQ,CAAA,OAAA,CACRA,EAAA,QAAW,CAAA,UAAA,CALDA,OAAA,EAsBSC,CAAAA,CAAAA,CAAAA,CAArB,KAAoC,CACxB,QACA,GACA,CAAA,KAAA,CACA,KAMV,CAAA,WAAA,CAAYC,EAA0B,CAMpC,GALA,IAAK,CAAA,OAAA,CAAU,CAAE,GAAGA,CAAAA,CAAK,OAAQ,CACjC,CAAA,IAAA,CAAK,IAAMA,CAAK,CAAA,GAAA,CAChB,IAAK,CAAA,KAAA,CAAQA,EAAK,KAClB,CAAA,IAAA,CAAK,KAAQA,CAAAA,CAAAA,CAAK,MAEd,CAAC,IAAA,CAAK,OAAQ,CAAA,QAAA,CAChB,MAAM,IAAIC,CAAAA,CAAwB,oEAAoE,CAE1G,CAMA,YAAa,CACX,OAAO,CAAE,GAAG,KAAK,OAAQ,CAC3B,CAOA,SAAUC,CAAAA,CAAAA,CAAwC,CAChD,OAAO,IAAA,CAAK,OAAQA,CAAAA,CAAa,GAAK,IAAK,CAAA,OAAA,CAAQ,QACrD,CAKA,MAAA,EAA6B,CAC3B,OAAO,IAAA,CAAK,GACd,CAKA,UAA+B,CAC7B,OAAO,IAAK,CAAA,KACd,CAKA,QAA+B,EAAA,CAC7B,OAAO,IAAA,CAAK,KACd,CAMA,MAAA,CAAOC,EAAmC,CACxC,IAAA,CAAK,IAAMA,EAEb,CAMA,QAASC,CAAAA,CAAAA,CAAiC,CACxC,IAAK,CAAA,KAAA,CAAQA,EACf,CAMA,QAAA,CAASC,EAAiC,CACxC,IAAA,CAAK,KAAQA,CAAAA,EACf,CAOA,SAAUH,CAAAA,CAAAA,CAAgCI,EAA+B,CACvE,GAAIA,IAAQ,KAAW,CAAA,CAAA,CAErB,GAAIJ,CAAAA,GAAkB,WACpB,MAAM,IAAID,CAAwB,CAAA,4CAA4C,EAEhF,OAAO,IAAA,CAAK,OAAQC,CAAAA,CAAa,EACnC,CACE,KAAA,IAAA,CAAK,QAAQA,CAAa,CAAA,CAAII,EAElC,CAKA,UAAA,EAA4B,CAC1B,OAAO,CACL,OAAS,CAAA,IAAA,CAAK,YACd,CAAA,GAAA,CAAK,KAAK,MAAO,EAAA,CACjB,KAAO,CAAA,IAAA,CAAK,UACZ,CAAA,KAAA,CAAO,KAAK,QAAS,EACvB,CACF,CACF","file":"chunk-WSUPVXRZ.mjs","sourcesContent":["export enum ImageResolution {\r\n THUMBNAIL = 'thumbnail',\r\n SMALL = 'small',\r\n MEDIUM = 'medium',\r\n LARGE = 'large',\r\n ORIGINAL = 'original',\r\n}\r\n\r\nimport { InvalidImageSourceError } from \"./Error\";\r\n\r\nexport type ImageInfoAttribute = {\r\n sources: { [key in ImageResolution]?: string } & { original: string };\r\n alt?: string;\r\n order?: number;\r\n label?: string;\r\n};\r\n\r\nexport type ImageInfoData = ImageInfoAttribute;\r\n\r\n/**\r\n * Represents and manages structured image data, including multiple resolutions.\r\n */\r\nexport default class ImageInfoModel {\r\n protected sources: { [key in ImageResolution]?: string } & { original: string };\r\n protected alt?: string;\r\n protected order?: number;\r\n protected label?: string;\r\n\r\n /**\r\n * Creates an instance of ImageInfoModel.\r\n * @param data - The initial image data.\r\n */\r\n constructor(data: ImageInfoAttribute) {\r\n this.sources = { ...data.sources };\r\n this.alt = data.alt;\r\n this.order = data.order;\r\n this.label = data.label;\r\n\r\n if (!this.sources.original) {\r\n throw new InvalidImageSourceError(\"ImageInfoModel cannot be created without an 'original' source URL.\");\r\n }\r\n }\r\n\r\n /**\r\n * Gets the sources object containing URLs for different resolutions.\r\n * Returns a copy to prevent external modification.\r\n */\r\n getSources() {\r\n return { ...this.sources };\r\n }\r\n\r\n /**\r\n * Gets the URL for a specific resolution key.\r\n * @param resolutionKey - The key of the desired resolution (e.g., 'thumbnail', 'medium').\r\n * @returns The URL string if the key doesn't exist, otherwise original image URL will be returned.\r\n */\r\n getSource(resolutionKey: ImageResolution): string {\r\n return this.sources[resolutionKey] || this.sources.original;\r\n }\r\n\r\n /**\r\n * Gets the alternative text for the image.\r\n */\r\n getAlt(): string | undefined {\r\n return this.alt;\r\n }\r\n\r\n /**\r\n * Gets the display order number for the image.\r\n */\r\n getOrder(): number | undefined {\r\n return this.order;\r\n }\r\n\r\n /**\r\n * Gets the display label or caption for the image.\r\n */\r\n getLabel(): string | undefined {\r\n return this.label;\r\n }\r\n\r\n /**\r\n * Sets the alternative text for the image.\r\n * @param altText - The new alt text.\r\n */\r\n setAlt(altText: string | undefined): void {\r\n this.alt = altText;\r\n // Potentially add logic here to trigger updates if needed\r\n }\r\n\r\n /**\r\n * Sets the display order for the image.\r\n * @param order - The new order number.\r\n */\r\n setOrder(order: number | undefined): void {\r\n this.order = order;\r\n }\r\n\r\n /**\r\n * Sets the display label for the image.\r\n * @param label - The new label text.\r\n */\r\n setLabel(label: string | undefined): void {\r\n this.label = label;\r\n }\r\n\r\n /**\r\n * Updates or adds a URL for a specific resolution.\r\n * @param resolutionKey - The key of the resolution to update/add.\r\n * @param url - The URL for the resolution. Set to undefined to remove.\r\n */\r\n setSource(resolutionKey: ImageResolution, url: string | undefined): void {\r\n if (url === undefined) {\r\n // Prevent deleting the 'original' key if it's required\r\n if (resolutionKey === 'original') {\r\n throw new InvalidImageSourceError(\"Cannot remove the 'original' image source.\");\r\n }\r\n delete this.sources[resolutionKey];\r\n } else {\r\n this.sources[resolutionKey] = url;\r\n }\r\n }\r\n\r\n /**\r\n * Returns a plain JavaScript object representation of the image info.\r\n */\r\n getDetails(): ImageInfoData {\r\n return {\r\n sources: this.getSources(),\r\n alt: this.getAlt(),\r\n order: this.getOrder(),\r\n label: this.getLabel(),\r\n };\r\n }\r\n}"]}