@marketrix.ai/widget 4.0.105 → 4.0.107

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.
@@ -6,6 +6,27 @@ export declare const WorkspacePackageSchema: z.ZodEnum<{
6
6
  enterprise: "enterprise";
7
7
  }>;
8
8
  export type PlanTier = z.infer<typeof WorkspacePackageSchema>;
9
+ /** The plan a Billing Cycle was opened on. `legacy_unknown` is pre-ledger history, which no plan sells. */
10
+ export declare const PlanSnapshotSchema: z.ZodEnum<{
11
+ free: "free";
12
+ startup: "startup";
13
+ growth: "growth";
14
+ enterprise: "enterprise";
15
+ legacy_unknown: "legacy_unknown";
16
+ }>;
17
+ export type PlanSnapshot = z.infer<typeof PlanSnapshotSchema>;
18
+ export declare const AllowanceStatusSchema: z.ZodEnum<{
19
+ unknown: "unknown";
20
+ known: "known";
21
+ unlimited: "unlimited";
22
+ }>;
23
+ export type AllowanceStatus = z.infer<typeof AllowanceStatusSchema>;
24
+ export declare const RevenueStatusSchema: z.ZodEnum<{
25
+ unknown: "unknown";
26
+ known: "known";
27
+ zero: "zero";
28
+ }>;
29
+ export type RevenueStatus = z.infer<typeof RevenueStatusSchema>;
9
30
  export declare const ApplicationTypeSchema: z.ZodEnum<{
10
31
  app: "app";
11
32
  website: "website";
@@ -58,8 +79,6 @@ export declare const UserEntitySchema: z.ZodObject<{
58
79
  }, z.core.$strip>;
59
80
  export declare const UserSummarySchema: z.ZodObject<{
60
81
  id: z.ZodNumber;
61
- created_at: z.ZodCoercedDate<unknown>;
62
- updated_at: z.ZodCoercedDate<unknown>;
63
82
  is_super: z.ZodBoolean;
64
83
  status: z.ZodEnum<{
65
84
  created: "created";
@@ -78,6 +97,7 @@ export declare const UserSummarySchema: z.ZodObject<{
78
97
  member: "member";
79
98
  }>>>;
80
99
  }, z.core.$strip>;
100
+ export type UserSummary = z.infer<typeof UserSummarySchema>;
81
101
  export type UserData = z.infer<typeof UserEntitySchema>;
82
102
  export declare const WorkspaceEntitySchema: z.ZodObject<{
83
103
  id: z.ZodNumber;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marketrix.ai/widget",
3
- "version": "4.0.105",
3
+ "version": "4.0.107",
4
4
  "type": "module",
5
5
  "packageManager": "bun@1.4.2",
6
6
  "sideEffects": false,