@m5kdev/commons 0.1.4 → 0.1.5

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 (60) hide show
  1. package/dist/src/modules/ai/ai.constants.d.ts +0 -1
  2. package/dist/src/modules/ai/ai.utils.d.ts +0 -1
  3. package/dist/src/modules/auth/auth.schema.d.ts +0 -1
  4. package/dist/src/modules/base/base.schema.d.ts +0 -1
  5. package/dist/src/modules/billing/billing.schema.d.ts +0 -1
  6. package/dist/src/modules/billing/billing.types.d.ts +0 -1
  7. package/dist/src/modules/billing/billing.utils.d.ts +0 -1
  8. package/dist/src/modules/file/file.constants.d.ts +0 -1
  9. package/dist/src/modules/recurrence/recurrence.schema.d.ts +0 -1
  10. package/dist/src/modules/schemas/query.schema.d.ts +0 -1
  11. package/dist/src/modules/table/filter.types.d.ts +0 -1
  12. package/dist/src/modules/tag/tag.schema.d.ts +0 -1
  13. package/dist/src/modules/workflow/workflow.constants.d.ts +0 -1
  14. package/dist/src/modules/workflow/workflow.schema.d.ts +0 -1
  15. package/dist/src/utils/json.d.ts +0 -1
  16. package/dist/src/utils/timezones.d.ts +0 -1
  17. package/dist/src/utils/trpc.d.ts +0 -1
  18. package/dist/tsconfig.tsbuildinfo +1 -1
  19. package/package.json +5 -2
  20. package/.cursor/rules/commons.mdc +0 -27
  21. package/.turbo/turbo-build.log +0 -5
  22. package/.turbo/turbo-check-types.log +0 -5
  23. package/.turbo/turbo-lint$colon$fix.log +0 -6
  24. package/.turbo/turbo-lint.log +0 -61
  25. package/CHANGELOG.md +0 -25
  26. package/dist/src/modules/ai/ai.constants.d.ts.map +0 -1
  27. package/dist/src/modules/ai/ai.utils.d.ts.map +0 -1
  28. package/dist/src/modules/auth/auth.schema.d.ts.map +0 -1
  29. package/dist/src/modules/base/base.schema.d.ts.map +0 -1
  30. package/dist/src/modules/billing/billing.schema.d.ts.map +0 -1
  31. package/dist/src/modules/billing/billing.types.d.ts.map +0 -1
  32. package/dist/src/modules/billing/billing.utils.d.ts.map +0 -1
  33. package/dist/src/modules/file/file.constants.d.ts.map +0 -1
  34. package/dist/src/modules/recurrence/recurrence.schema.d.ts.map +0 -1
  35. package/dist/src/modules/schemas/query.schema.d.ts.map +0 -1
  36. package/dist/src/modules/table/filter.types.d.ts.map +0 -1
  37. package/dist/src/modules/tag/tag.schema.d.ts.map +0 -1
  38. package/dist/src/modules/workflow/workflow.constants.d.ts.map +0 -1
  39. package/dist/src/modules/workflow/workflow.schema.d.ts.map +0 -1
  40. package/dist/src/utils/json.d.ts.map +0 -1
  41. package/dist/src/utils/timezones.d.ts.map +0 -1
  42. package/dist/src/utils/trpc.d.ts.map +0 -1
  43. package/src/modules/ai/ai.constants.ts +0 -305
  44. package/src/modules/ai/ai.utils.ts +0 -14
  45. package/src/modules/auth/auth.schema.ts +0 -22
  46. package/src/modules/base/base.schema.ts +0 -27
  47. package/src/modules/billing/billing.schema.ts +0 -24
  48. package/src/modules/billing/billing.types.ts +0 -18
  49. package/src/modules/billing/billing.utils.ts +0 -13
  50. package/src/modules/file/file.constants.ts +0 -14
  51. package/src/modules/recurrence/recurrence.schema.ts +0 -78
  52. package/src/modules/schemas/query.schema.ts +0 -44
  53. package/src/modules/table/filter.types.ts +0 -39
  54. package/src/modules/tag/tag.schema.ts +0 -68
  55. package/src/modules/workflow/workflow.constants.ts +0 -2
  56. package/src/modules/workflow/workflow.schema.ts +0 -48
  57. package/src/utils/json.ts +0 -9
  58. package/src/utils/timezones.ts +0 -4380
  59. package/src/utils/trpc.ts +0 -6
  60. package/tsconfig.json +0 -10
@@ -52,4 +52,3 @@ export type AiModelRegistry = Record<AiModel, {
52
52
  tier: string;
53
53
  order: number;
54
54
  }>;
55
- //# sourceMappingURL=ai.constants.d.ts.map
@@ -1,2 +1 @@
1
1
  export declare function arrayToPseudoXML<T extends Record<string, unknown>>(array: readonly T[], keys: readonly (keyof T)[], name?: string): string;
2
- //# sourceMappingURL=ai.utils.d.ts.map
@@ -18,4 +18,3 @@ export declare const userSchema: z.ZodObject<{
18
18
  onboarding: z.ZodNullable<z.ZodBoolean>;
19
19
  }, z.core.$strip>;
20
20
  export type UserSchema = z.infer<typeof userSchema>;
21
- //# sourceMappingURL=auth.schema.d.ts.map
@@ -23,4 +23,3 @@ export type ScheduleOutputSchema = z.infer<typeof scheduleOutputSchema>;
23
23
  export type ScheduleManyOutputSchema = z.infer<typeof scheduleManyOutputSchema>;
24
24
  export type DeleteOutputSchema = z.infer<typeof deleteOutputSchema>;
25
25
  export type DeleteManyInputSchema = z.infer<typeof deleteManyOutputSchema>;
26
- //# sourceMappingURL=base.schema.d.ts.map
@@ -20,4 +20,3 @@ export declare const billingSchema: z.ZodObject<{
20
20
  discounts: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString>>>;
21
21
  }, z.core.$strip>;
22
22
  export type BillingSchema = z.infer<typeof billingSchema>;
23
- //# sourceMappingURL=billing.schema.d.ts.map
@@ -15,4 +15,3 @@ export type StripePlansConfig = {
15
15
  sandbox: StripePlan[];
16
16
  trialPlanName?: string;
17
17
  };
18
- //# sourceMappingURL=billing.types.d.ts.map
@@ -3,4 +3,3 @@ export declare const getEnvironmentPlans: (plansConfig: StripePlansConfig, envir
3
3
  plans: StripePlan[];
4
4
  trial: StripePlan | undefined;
5
5
  };
6
- //# sourceMappingURL=billing.utils.d.ts.map
@@ -2,4 +2,3 @@ export declare const fileTypes: Record<string, {
2
2
  mimetypes: string[];
3
3
  extensions: string[];
4
4
  }>;
5
- //# sourceMappingURL=file.constants.d.ts.map
@@ -96,4 +96,3 @@ export type UpdateRecurrenceSchema = z.infer<typeof updateRecurrenceSchema>;
96
96
  export type UpdateRecurrenceRulesSchema = z.infer<typeof updateRecurrenceRulesSchema>;
97
97
  export type DeleteRecurrenceSchema = z.infer<typeof deleteRecurrenceSchema>;
98
98
  export type DeleteRecurrenceRulesSchema = z.infer<typeof deleteRecurrenceRulesSchema>;
99
- //# sourceMappingURL=recurrence.schema.d.ts.map
@@ -108,4 +108,3 @@ export type QueryListOutput<T> = {
108
108
  export type QueryInput = z.infer<typeof querySchema>;
109
109
  export type QueryFilter = z.infer<typeof filterSchema>;
110
110
  export type QueryFilters = z.infer<typeof filtersSchema>;
111
- //# sourceMappingURL=query.schema.d.ts.map
@@ -10,4 +10,3 @@ export type FilterMethod = {
10
10
  export type FilterMethods = {
11
11
  [key in ColumnDataType]: FilterMethod[];
12
12
  };
13
- //# sourceMappingURL=filter.types.d.ts.map
@@ -109,4 +109,3 @@ export type TagUpdateSchema = z.infer<typeof tagUpdateSchema>;
109
109
  export type TagLinkSchema = z.infer<typeof tagLinkSchema>;
110
110
  export type TagListOutputSchema = z.infer<typeof tagListOutputSchema>;
111
111
  export type TagListInputSchema = z.infer<typeof tagListInputSchema>;
112
- //# sourceMappingURL=tag.schema.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export declare const WORFLOW_STATUSES: readonly ["queued", "running", "completed", "failed"];
2
2
  export type WorkflowStatus = (typeof WORFLOW_STATUSES)[number];
3
- //# sourceMappingURL=workflow.constants.d.ts.map
@@ -90,4 +90,3 @@ export type WorkflowReadOutputSchema = z.infer<typeof workflowReadOutputSchema>;
90
90
  export type WorkflowListOutputSchema = z.infer<typeof workflowListOutputSchema>;
91
91
  export type WorkflowTriggerOutputSchema = z.infer<typeof workflowTriggerOutputSchema>;
92
92
  export type WorkflowTriggerManyOutputSchema = z.infer<typeof workflowTriggerManyOutputSchema>;
93
- //# sourceMappingURL=workflow.schema.d.ts.map
@@ -1,3 +1,2 @@
1
1
  export declare function safeParseJson<T>(json: string, fallback: T): T;
2
2
  export declare function safeParseJson<T>(json: string): T | undefined;
3
- //# sourceMappingURL=json.d.ts.map
@@ -12,4 +12,3 @@ export type Timezone = {
12
12
  rawFormat: string;
13
13
  };
14
14
  export declare const timezones: Timezone[];
15
- //# sourceMappingURL=timezones.d.ts.map
@@ -2,4 +2,3 @@ export declare const transformer: {
2
2
  deserialize: (object: any) => any;
3
3
  serialize: (object: any) => string;
4
4
  };
5
- //# sourceMappingURL=trpc.d.ts.map