mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
* fix(auth): add subscription id safe guards on handlers * feat(domain-events): add subscription state events * feat(domain-events): add subscription state events * feat(auth): add handling of subscription state fetched events * feat(auth): add script for fixing subscriptions state
12 lines
325 B
JavaScript
12 lines
325 B
JavaScript
'use strict'
|
|
|
|
const path = require('path')
|
|
|
|
const pnp = require(path.normalize(path.resolve(__dirname, '../../..', '.pnp.cjs'))).setup()
|
|
|
|
const index = require(path.normalize(path.resolve(__dirname, '../dist/bin/fix_subscriptions.js')))
|
|
|
|
Object.defineProperty(exports, '__esModule', { value: true })
|
|
|
|
exports.default = index
|