@primocaredentgroup/convex-campaigns-component 0.3.13 → 0.3.15
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.
|
@@ -88,8 +88,11 @@ export const runTick: any = action({
|
|
|
88
88
|
args: {},
|
|
89
89
|
handler: async (ctx) => {
|
|
90
90
|
await assertAuthorized(ctx, ["System", "Admin", "Marketing"]);
|
|
91
|
-
// Path dalla struttura
|
|
92
|
-
//
|
|
93
|
-
return ctx.runMutation(
|
|
91
|
+
// Path dalla struttura: internal → functions → tickProcessor → runTickMutation
|
|
92
|
+
// Rinominato da internal.ts a tickProcessor.ts per evitare conflitto con namespace "internal"
|
|
93
|
+
return ctx.runMutation(
|
|
94
|
+
(internal as any).components.campaigns.functions.tickProcessor.runTickMutation,
|
|
95
|
+
{},
|
|
96
|
+
);
|
|
94
97
|
},
|
|
95
98
|
});
|
|
@@ -557,8 +557,8 @@ export const _runTickInternal = internalMutation({
|
|
|
557
557
|
});
|
|
558
558
|
|
|
559
559
|
/**
|
|
560
|
-
* Mutation pubblica per eseguire il tick.
|
|
561
|
-
*
|
|
560
|
+
* Mutation pubblica per eseguire il tick. Rinominato da internal.ts a tickProcessor.ts
|
|
561
|
+
* per evitare conflitto con il namespace "internal" riservato di Convex.
|
|
562
562
|
*/
|
|
563
563
|
export const runTickMutation = mutation({
|
|
564
564
|
args: {},
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as campaignsQueries from "./functions/queries";
|
|
2
2
|
export * as campaignsMutations from "./functions/mutations";
|
|
3
3
|
export * as campaignsActions from "./functions/actions";
|
|
4
|
-
export * as campaignsInternal from "./functions/
|
|
4
|
+
export * as campaignsInternal from "./functions/tickProcessor";
|
|
5
5
|
export * as campaignsPublic from "./functions/public";
|
|
6
6
|
export * as campaignsPlayground from "./functions/playground";
|
|
7
7
|
|