@umituz/web-dashboard 3.1.10 → 3.1.11
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/web-dashboard",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.11",
|
|
4
4
|
"description": "Dashboard Layout System - Comprehensive analytics, calendar, customizable layouts, and config-based architecture",
|
|
5
5
|
"main": "./src/index.ts",
|
|
6
6
|
"types": "./src/index.ts",
|
|
@@ -23,9 +23,9 @@ export type SubscriptionStatus = typeof SUBSCRIPTION_STATUS[keyof typeof SUBSCRI
|
|
|
23
23
|
export type InvoiceStatus = typeof INVOICE_STATUS[keyof typeof INVOICE_STATUS];
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
|
-
* Plan type
|
|
26
|
+
* Plan type - dynamic string from product provider
|
|
27
27
|
*/
|
|
28
|
-
export type PlanType =
|
|
28
|
+
export type PlanType = string;
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
31
|
* Currency
|
|
@@ -38,8 +38,8 @@ export type Currency = typeof CURRENCY[keyof typeof CURRENCY];
|
|
|
38
38
|
export interface PlanTier {
|
|
39
39
|
/** Plan ID */
|
|
40
40
|
id: string;
|
|
41
|
-
/** Plan type */
|
|
42
|
-
type
|
|
41
|
+
/** Plan type - optional, from product metadata */
|
|
42
|
+
type?: PlanType;
|
|
43
43
|
/** Plan name */
|
|
44
44
|
name: string;
|
|
45
45
|
/** Plan description */
|