@spaceinvoices/js-sdk 5.0.9 → 5.0.10

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.
@@ -22,7 +22,7 @@ export interface PlanLimits {
22
22
  */
23
23
  overage_price_cents: number | null;
24
24
  /**
25
- * Explicit yearly plan price in cents. Null falls back to computed yearly pricing.
25
+ * Explicit yearly plan price in cents. Null uses twelve monthly payments with a 20% yearly discount.
26
26
  * @nullable
27
27
  */
28
28
  annual_price_cents: number | null;
@@ -37,7 +37,7 @@ export interface PlanLimits {
37
37
  */
38
38
  extra_store_price_cents: number | null;
39
39
  /**
40
- * Yearly price in cents for each additional connected store.
40
+ * Explicit yearly price in cents for each additional connected store. Null uses twelve monthly payments with a 20% yearly discount.
41
41
  * @nullable
42
42
  */
43
43
  extra_store_annual_price_cents: number | null;
@@ -22,7 +22,7 @@ export interface PlanLimits {
22
22
  */
23
23
  overage_price_cents: number | null;
24
24
  /**
25
- * Explicit yearly plan price in cents. Null falls back to computed yearly pricing.
25
+ * Explicit yearly plan price in cents. Null uses twelve monthly payments with a 20% yearly discount.
26
26
  * @nullable
27
27
  */
28
28
  annual_price_cents: number | null;
@@ -37,7 +37,7 @@ export interface PlanLimits {
37
37
  */
38
38
  extra_store_price_cents: number | null;
39
39
  /**
40
- * Yearly price in cents for each additional connected store.
40
+ * Explicit yearly price in cents for each additional connected store. Null uses twelve monthly payments with a 20% yearly discount.
41
41
  * @nullable
42
42
  */
43
43
  extra_store_annual_price_cents: number | null;
@@ -12,6 +12,9 @@ export interface StoreBilling {
12
12
  invoices_included_from_extra_stores: number;
13
13
  /** @nullable */
14
14
  extra_store_price_cents_monthly: number | null;
15
- /** @nullable */
15
+ /**
16
+ * Effective yearly price in cents for each additional connected store, using the explicit yearly price or the 20% yearly fallback.
17
+ * @nullable
18
+ */
16
19
  extra_store_price_cents_yearly: number | null;
17
20
  }
@@ -12,6 +12,9 @@ export interface StoreBilling {
12
12
  invoices_included_from_extra_stores: number;
13
13
  /** @nullable */
14
14
  extra_store_price_cents_monthly: number | null;
15
- /** @nullable */
15
+ /**
16
+ * Effective yearly price in cents for each additional connected store, using the explicit yearly price or the 20% yearly fallback.
17
+ * @nullable
18
+ */
16
19
  extra_store_price_cents_yearly: number | null;
17
20
  }