@lunora/scheduler 1.0.0-alpha.4 → 1.0.0-alpha.41

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/LICENSE.md CHANGED
@@ -103,3 +103,9 @@ Unless required by applicable law or agreed to in writing, software distributed
103
103
  under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
104
104
  CONDITIONS OF ANY KIND, either express or implied. See the License for the
105
105
  specific language governing permissions and limitations under the License.
106
+
107
+ <!-- DEPENDENCIES -->
108
+ <!-- /DEPENDENCIES -->
109
+
110
+ <!-- TYPE_DEPENDENCIES -->
111
+ <!-- /TYPE_DEPENDENCIES -->
package/README.md CHANGED
@@ -98,12 +98,13 @@ import { internal } from "@/lunora/_generated/api";
98
98
  const crons = cronJobs();
99
99
 
100
100
  crons.interval("clear presence", { minutes: 30 }, internal.presence.clear, {});
101
+ crons.hourly("sweep sessions", { minuteUTC: 17 }, internal.presence.sweep, {});
101
102
  crons.daily("send digest", { hourUTC: 9, minuteUTC: 0 }, internal.email.digest, {});
102
103
 
103
104
  export default crons;
104
105
  ```
105
106
 
106
- > This README covers the basics. For the full API, options, and guides, see the **[documentation](https://lunora.sh/docs/addons/scheduler)**.
107
+ > This README covers the basics. For the full API, options, and guides, see the **[documentation](https://lunora.sh/docs/packages/scheduler)**.
107
108
 
108
109
  ## Related
109
110