@hocuspocus/extension-webhook
Advanced tools
Comparing version 1.0.0-alpha.22 to 1.0.0-alpha.23
@@ -6,2 +6,10 @@ # Change Log | ||
# [1.0.0-alpha.23](https://github.com/ueberdosis/hocuspocus/compare/@hocuspocus/extension-webhook@1.0.0-alpha.22...@hocuspocus/extension-webhook@1.0.0-alpha.23) (2021-06-23) | ||
**Note:** Version bump only for package @hocuspocus/extension-webhook | ||
# [1.0.0-alpha.22](https://github.com/ueberdosis/hocuspocus/compare/@hocuspocus/extension-webhook@1.0.0-alpha.21...@hocuspocus/extension-webhook@1.0.0-alpha.22) (2021-06-22) | ||
@@ -8,0 +16,0 @@ |
@@ -147,15 +147,10 @@ import { createHmac } from 'crypto'; | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onUpgrade(data) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onRequest(data) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onListen(data) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onDestroy(data) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onConfigure(data) { | ||
@@ -162,0 +157,0 @@ } |
@@ -13,3 +13,3 @@ import { RedisPersistence } from 'y-redis'; | ||
constructor(configuration?: Partial<Configuration>); | ||
onCreateDocument(data: onCreateDocumentPayload): Promise<void>; | ||
onCreateDocument(data: onCreateDocumentPayload): Promise<import("yjs").Doc | undefined>; | ||
onConnect(data: onConnectPayload): Promise<void>; | ||
@@ -16,0 +16,0 @@ onChange(data: onChangePayload): Promise<void>; |
{ | ||
"name": "@hocuspocus/extension-webhook", | ||
"version": "1.0.0-alpha.22", | ||
"version": "1.0.0-alpha.23", | ||
"description": "hocuspocus webhook extension", | ||
@@ -31,3 +31,3 @@ "homepage": "https://hocuspocus.dev", | ||
}, | ||
"gitHead": "5056505ff8ac1a82433c66e0fa42140aab0aace4" | ||
"gitHead": "2fbb1979df24a734dc4753ee102fa1e40fc98b07" | ||
} |
@@ -202,19 +202,14 @@ import { createHmac } from 'crypto' | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onUpgrade(data: onUpgradePayload) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onRequest(data: onRequestPayload) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onListen(data: onListenPayload) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onDestroy(data: onDestroyPayload) { | ||
} | ||
// eslint-disable-next-line @typescript-eslint/no-empty-function,no-empty-function | ||
async onConfigure(data: onConfigurePayload) { | ||
@@ -221,0 +216,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74307
1393